/* ============================================================
   LiteOPS Pro — Premium SaaS CSS
   Brand: #0a1f14 / #c9a84c / #ffffff
   Font: Inter (Google Fonts)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography Scale ─────────────────────────────────────── */
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1.1; }
.text-6xl  { font-size: 3.75rem;  line-height: 1; }

.font-normal    { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.bg-alt        { background: #f8fafc; }
.bg-green-tint { background: #f0f7f3; }

.section-label {
  display: inline-block;
  background: #c9a84c;
  color: #0a1f14;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #c9a84c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b8973d, #c9a84c);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}

.btn-brand {
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  color: #ffffff;
  border: 1.5px solid rgba(201,168,76,0.25);
}

.btn-brand:hover {
  background: linear-gradient(135deg, #1a3a25, #22502e);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-1px);
}

.btn-brand-outline {
  background: transparent;
  color: #0c281b;
  border: 1.5px solid #0c281b;
}

.btn-brand-outline:hover {
  background: #0c281b;
  color: #ffffff;
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-sm   { padding: 8px 18px; font-size: 0.875rem; border-radius: 6px; }
.btn-lg   { padding: 16px 32px; font-size: 1.0625rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 15px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #b8973d, #c9a84c);
  box-shadow: 0 8px 32px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(201,168,76,0.3);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary-sm:hover {
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}

.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 9px 16px;
  border-radius: 8px;
  transition: color 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost-sm:hover { color: #ffffff; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.header-logo,
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header-logo img,
.logo img { height: 36px; width: auto; }

.header-nav,
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s ease;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: #c9a84c;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

.nav-link:hover { color: #ffffff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: #ffffff; }
.nav-link.active::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s ease;
  margin-left: auto;
}

.hamburger:hover { background: rgba(255,255,255,0.12); }

.hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.mobile-menu,
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: rgba(10,31,20,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.open,
.mobile-nav.open {
  display: flex;
}

.mobile-link,
.mobile-menu a,
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s ease;
  text-decoration: none;
}

.mobile-link:hover,
.mobile-menu a:hover,
.mobile-nav a:hover { color: #c9a84c; }

.mobile-menu .btn-gold,
.mobile-menu .btn-primary-sm,
.mobile-nav .btn-primary-sm {
  display: inline-flex !important;
  border-bottom: none;
  margin-top: 8px;
  width: auto;
}

main { padding-top: 68px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a1f14 0%, #0c281b 60%, #112e1f 100%);
  overflow: hidden;
  padding-top: 88px;
  padding-bottom: 96px;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: #e0b96a;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-text h1,
.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-logo-wrap { text-align: center; margin-bottom: 20px; }

.hero-sub,
.hero-subhead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions,
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-trust span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── App Mockup ───────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.app-mockup {
  background: #1a2f20;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.mockup-chrome {
  background: #152519;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dots { display: flex; gap: 4px; }

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28c940; }

.mockup-url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex: 1;
  text-align: center;
}

.mockup-body { display: flex; height: 320px; }

.mockup-sidebar {
  width: 52px;
  background: #0f1f14;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sidebar-logo {
  width: 28px;
  height: 28px;
  background: #c9a84c;
  border-radius: 8px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.sidebar-item {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  flex-shrink: 0;
}

.sidebar-item.active {
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.4);
}

.mockup-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-title {
  width: 120px;
  height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

.topbar-actions { display: flex; gap: 6px; }

.topbar-actions span {
  width: 60px;
  height: 24px;
  border-radius: 6px;
  background: rgba(201,168,76,0.2);
}

.mockup-stats-row { display: flex; gap: 8px; }

.stat-chip {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
}

.stat-num {
  height: 14px;
  background: rgba(201,168,76,0.4);
  border-radius: 4px;
  margin-bottom: 4px;
  width: 50%;
}

.stat-lbl {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  width: 80%;
}

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #c9a84c 0%, rgba(201,168,76,0.3) 100%);
  border-radius: 4px 4px 0 0;
}

.mockup-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.table-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.table-row span {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  flex: 1;
}

.table-row span:first-child { flex: 2; }
.header-row span { background: rgba(255,255,255,0.05); }

.status-badge {
  width: 40px;
  height: 16px;
  border-radius: 20px;
  flex-shrink: 0;
}

.status-badge.green { background: rgba(34,197,94,0.25); }
.status-badge.gold  { background: rgba(201,168,76,0.3); }

/* ── Floating Cards ───────────────────────────────────────── */
.float-card {
  position: absolute;
  background: rgba(15,31,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 10;
  animation: floatAnim 3s ease-in-out infinite;
}

.float-top-right    { top: 8%;  right: -24px; animation-delay: 0s; }
.float-bottom-left  { bottom: 8%; left: -24px; animation-delay: 1s; }

.float-mid-right {
  top: 50%;
  right: -18px;
  animation: floatAnimMid 3s ease-in-out 0.5s infinite;
}

.float-icon { font-size: 20px; flex-shrink: 0; }

.float-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.float-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

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

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

/* ── Stats Band ───────────────────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, #0c281b 0%, #1a3a25 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  display: block;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Legacy social proof bubbles */
.social-proof-section { text-align: center; }

.proof-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-bubble { text-align: center; }

.stat-bubble .stat-number {
  color: #c9a84c;
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
}

.stat-bubble .stat-desc { color: #64748b; font-size: 0.9375rem; }

/* ── Features Grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #c9a84c;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
}

/* ── Feature Detail (alternating) ────────────────────────── */
.feature-detail-section { overflow: hidden; }

.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-detail--reverse { direction: rtl; }
.feature-detail--reverse > * { direction: ltr; }

.feature-detail-icon {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.feature-detail-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  border-radius: inherit;
  pointer-events: none;
}

.feature-detail-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-detail-lead {
  font-size: 1.0625rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.feature-detail-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.feature-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.6;
  list-style: none;
}

.feature-detail-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%230a1f14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-detail-list li strong { color: #0f172a; }

.section-divider {
  height: 1px;
  background: #e2e8f0;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── How It Works ─────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #c9a84c;
  background: #ffffff;
  color: #c9a84c;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.08);
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.65;
}

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #c9a84c 0,
    #c9a84c 6px,
    transparent 6px,
    transparent 14px
  );
  margin-top: 27px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: #f0f7f3; }

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

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 0.8;
  color: #c9a84c;
  opacity: 0.12;
  font-family: Georgia, serif;
  margin-bottom: -16px;
  display: block;
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.author-info span { font-size: 0.8125rem; color: #64748b; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.toggle-label.active { color: #0f172a; }

.annual-badge {
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.pricing-toggle {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: #e2e8f0;
  position: relative;
  transition: background 0.25s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}

.pricing-toggle[aria-checked="true"] {
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle[aria-checked="true"] .toggle-knob {
  transform: translateX(22px);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-cards--full { align-items: stretch; }

.pricing-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card--featured {
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  border-color: #c9a84c;
  box-shadow: 0 24px 48px rgba(12,40,27,0.3);
}

.pricing-card--featured:hover {
  box-shadow: 0 32px 64px rgba(12,40,27,0.4);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  margin-top: 8px;
}

.pricing-card--featured .plan-name { color: #ffffff; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.pricing-card--featured .price-amount { color: #c9a84c; }

.price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-card--featured .price-period { color: rgba(255,255,255,0.6); }

.plan-billed-note {
  font-size: 0.8125rem;
  color: rgba(201,168,76,0.85);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-card--featured .plan-desc { color: rgba(255,255,255,0.65); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding: 0;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.4;
  list-style: none;
}

.pricing-card--featured .plan-features li { color: rgba(255,255,255,0.85); }

.plan-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 4.5' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
  flex-shrink: 0;
}

.plan-trial-note {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
}

.pricing-card--featured .plan-trial-note { color: rgba(255,255,255,0.4); }

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover { border-color: #c9a84c; }
.faq-item.open  { border-color: #c9a84c; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover { color: #0c281b; }
.faq-item.open .faq-question { color: #0c281b; }

.faq-arrow {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: #c9a84c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0a1f14 0%, #0c281b 60%, #1a3a25 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1), transparent 70%);
  pointer-events: none;
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-band h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Page Hero (sub-pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0a1f14 0%, #0c281b 60%, #112e1f 100%);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.required { color: #ef4444; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-privacy {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 4px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 88px;
}

.why-demo {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e2e8f0;
}

.why-demo h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  list-style: none;
}

.why-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #e0b96a);
  color: #0a1f14;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.why-list li div strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 3px;
}

.why-list li div p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.contact-info-box {
  background: linear-gradient(135deg, #0c281b, #1a3a25);
  border-radius: 16px;
  padding: 28px;
  color: #ffffff;
}

.contact-info-box h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-box p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.contact-info-box a { color: #c9a84c; }
.contact-info-box a:hover { color: #e0b96a; }

.contact-hours {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px !important;
}

.alert {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9375rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #15803d;
}

.alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: #dc2626;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0a1f14;
  color: #ffffff;
  padding-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 280px;
}

.footer-contact-email a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-contact-email a:hover { color: #c9a84c; }

.footer-links,
.footer-contact,
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading,
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-col { gap: 10px; }

.footer-links ul li a,
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
  line-height: 1.4;
  text-decoration: none;
}

.footer-links ul li a:hover,
.footer-col a:hover { color: #c9a84c; }

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-cta { display: inline-flex; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span,
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: #c9a84c; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-text h1  { font-size: 2.75rem; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand  { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .header-nav, .main-nav { display: none; }
  .header-cta             { display: none; }
  .hamburger              { display: flex; }

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

  .hero-text    { max-width: 100%; }
  .hero-sub, .hero-subhead { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .hero-visual  { justify-content: center; }

  .float-top-right   { right: 0; }
  .float-bottom-left { left: 0; }
  .float-mid-right   { right: 0; }

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

  .feature-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-detail--reverse { direction: ltr; }

  .steps { flex-direction: column; align-items: center; }
  .step  { max-width: 400px; }

  .step-connector {
    width: 2px;
    height: 40px;
    flex: 0 0 40px;
    background: repeating-linear-gradient(
      to bottom,
      #c9a84c 0,
      #c9a84c 6px,
      transparent 6px,
      transparent 14px
    );
    margin-top: 0;
  }

  .pricing-cards     { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-layout    { grid-template-columns: 1fr; }
  .contact-side      { position: static; }
}

@media (max-width: 768px) {
  .section        { padding-top: 64px; padding-bottom: 64px; }
  .hero           { padding-top: 64px; padding-bottom: 72px; }
  .hero-text h1, .hero-headline { font-size: 2.25rem; }
  .hero-sub, .hero-subhead      { font-size: 1rem; }
  .section-header h2 { font-size: 1.875rem; }
  .page-hero         { padding: 56px 0 48px; }
  .page-hero h1      { font-size: 2.125rem; }
  .cta-band h2       { font-size: 1.875rem; }
  .features-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand      { grid-column: auto; }
  .app-mockup        { max-width: 100%; }
  .float-top-right   { top: 4%; right: 4px; }
  .float-bottom-left { bottom: 4%; left: 4px; }
  .float-mid-right   { display: none; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number       { font-size: 2rem; }
}

@media (max-width: 480px) {
  .container   { padding-left: 16px; padding-right: 16px; }
  .hero-text h1, .hero-headline { font-size: 1.875rem; }
  .hero-actions, .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost,
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }
  .pricing-cards { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-badge  { font-size: 0.75rem; padding: 5px 12px; }
}

/* ── Real Screenshot Mockup (hero) ──────────────────────────── */
.mockup-screenshot {
  overflow: hidden;
  line-height: 0;
  max-height: 340px;
}
.mockup-screenshot img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
  border-radius: 0 0 14px 14px;
}

/* ── Feature Screenshot Panel ───────────────────────────────── */
.feature-screenshot-panel {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(0,0,0,0.06);
  background: #152519;
  flex-shrink: 0;
}
.feature-screenshot-chrome {
  background: #0f1f14;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.feature-screenshot-img {
  width: 100%;
  display: block;
  max-height: 320px;
  object-fit: cover;
  object-position: top left;
}

/* Feature detail grid uses screenshot panel as the visual column */
.feature-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-detail--reverse { direction: rtl; }
.feature-detail--reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .feature-detail { grid-template-columns: 1fr; gap: 32px; }
  .feature-detail--reverse { direction: ltr; }
  .feature-screenshot-panel { order: -1; }
}
