﻿/* ===== Ticarify Landing Page - Modern SaaS Design ===== */

/* --- CSS Variables --- */
:root {
  --brand: #0A2540;
  --brand-dark: #061B2E;
  --accent: #FF6B35;
  --accent-soft: #FFF0EA;
  --accent-hover: #E55A2B;
  --blue: #0066FF;
  --blue-soft: #EBF3FF;
  --cream: #F8FAFC;
  --ivory: #FFFFFF;
  --ink: #0f172a;
  --muted: #64748B;
  --card: #FFFFFF;
  --stroke: #E2E8F0;
  --success: #10B981;
}

/* --- Base --- */
body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

h1,
h2,
h3,
.section-title,
.page-hero h1,
.hero h1,
.cta-section h2,
.footer-title,
.plan-card h3,
.feature-card h3,
.step-card h3 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* --- Navbar --- */
.navbar {
  background: transparent;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar-logo {
  height: 38px;
  width: auto;
  display: block;
}

.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.navbar .nav-link:hover {
  color: var(--brand);
  background: var(--cream);
}

.navbar .nav-link.active {
  color: var(--brand);
  font-weight: 700;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-panel-login {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn-panel-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.navbar.scrolled .btn-panel-login {
  border-color: var(--stroke);
  background: #fff;
  color: var(--brand);
}

.navbar.scrolled .btn-panel-login:hover {
  background: var(--cream);
  color: var(--brand);
  border-color: #cbd5e1;
}

/* --- Mega Dropdown --- */
.mega-dropdown {
  width: 640px;
  padding: 0;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  background: #fff;
  overflow: hidden;
  margin-top: 8px;
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.mega-col {
  padding: 24px;
}

.mega-col-secondary {
  background: var(--cream);
  border-left: 1px solid var(--stroke);
}

.mega-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.mega-col-title i {
  font-size: 16px;
  color: var(--accent);
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mega-grid-compact {
  grid-template-columns: 1fr;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mega-item:hover {
  background: var(--blue-soft);
  color: var(--brand);
  text-decoration: none;
}

.mega-item i {
  font-size: 16px;
  flex-shrink: 0;
}

.mega-highlight {
  padding: 14px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.mega-highlight-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mega-highlight-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--brand);
  text-decoration: none;
}

.mega-highlight-link:hover {
  color: var(--accent);
}

.mega-highlight-desc {
  color: var(--muted);
  font-size: 12px;
}

.mega-footer {
  padding: 12px 24px;
  border-top: 1px solid var(--stroke);
  background: var(--cream);
}

.mega-footer-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mega-footer-link:hover {
  color: var(--accent);
}

/* Hero on dark bg - make navbar text white */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar:not(.scrolled) .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.navbar:not(.scrolled) .nav-link.active {
  color: #fff;
  font-weight: 700;
}

.navbar:not(.scrolled) .navbar-toggler-icon {
  filter: invert(1);
}

/* --- Hero Section --- */
.hero {
  background:
    radial-gradient(circle at top right, rgba(0, 102, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #071a2d 0%, #0A2540 40%, #0D3B66 100%);
  padding: 140px 0 100px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 85%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.15);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-sub {
  color: #CBD5E1;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-note-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 600;
}

.hero-note i {
  color: #FDBA74;
}

.hero-trust {
  color: #64748B;
  font-size: 13px;
  margin-top: 16px;
}

.hero-trust span {
  color: #94A3B8;
  font-weight: 500;
}

/* Hero buttons */
.btn-hero-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Mock Dashboard Card */
.mock-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.mock-top {
  height: 36px;
  border-radius: 10px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.orange { background: var(--accent); }
.dot.blue { background: var(--blue); }
.dot.green { background: var(--success); }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mock-stat {
  background: var(--blue-soft);
  border-radius: 12px;
  padding: 14px;
}

.mock-stat small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 2px;
}

.mock-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
}

.mock-chart {
  height: 100px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, #F0F4FF 100%);
  padding: 14px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  align-items: flex-end;
}

.mock-panel-title {
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mock-activity {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #F8FAFC;
}

.mock-label {
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.mock-pill.is-blue {
  background: #DBEAFE;
  color: #1D4ED8;
}

.mock-pill.is-dark {
  background: #E2E8F0;
  color: #0F172A;
}

/* --- Stats Strip --- */
.stats-strip {
  background: #fff;
  padding: 48px 0;
  border-bottom: 1px solid var(--stroke);
}

.insight-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.insight-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.insight-card h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.insight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
}

.stat-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* --- Sections --- */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--cream);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 560px;
}

.section-sub.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Feature Cards --- */
.feature-card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--stroke);
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.feature-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.feature-card .icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.use-case-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.use-case-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 18px;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 28px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.list-check li + li {
  margin-top: 10px;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* --- Workflow / Steps --- */
.step-card {
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* --- Logo / Integration Cards --- */
.logo-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  padding: 24px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--brand);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
}

.logo-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.logo-card i {
  font-size: 24px;
}

.section-link {
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
}

.section-link:hover {
  color: var(--accent);
}

.logo-card.coming-soon {
  opacity: 0.5;
  background: var(--cream);
}

.coming-soon-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 999px;
}

/* --- Trial Hero (Pricing page + hero banner) --- */
.section-trial-hero {
  padding-top: 48px;
  padding-bottom: 12px;
}

.trial-hero-card {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 55%);
  border: 2px dashed var(--accent);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.08);
}

.trial-hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.trial-hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.trial-hero-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.trial-hero-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 18px;
}

.trial-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  max-width: 620px;
  text-align: left;
}

.trial-hero-list li {
  color: var(--ink);
  font-size: 15px;
}

.trial-hero-list i {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 576px) {
  .trial-hero-card { padding: 24px 20px; }
  .trial-hero-title { font-size: 22px; }
  .trial-hero-list { grid-template-columns: 1fr; }
}

/* --- Plan Cards --- */
.plan-card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.plan-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
  border: 2px solid var(--accent);
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
}

.plan-card.featured:hover {
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand);
  margin: 12px 0 4px;
}

.plan-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}

.plan-store-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stroke);
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.plan-list li {
  padding: 6px 0;
  font-size: 14px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-list li i {
  color: var(--success);
  font-size: 16px;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  margin-top: auto;
}

.plan-cta-primary {
  background: var(--accent);
  color: #fff;
}

.plan-cta-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.plan-cta-secondary {
  background: var(--brand);
  color: #fff;
}

.plan-cta-secondary:hover {
  background: #0D3B66;
  color: #fff;
  transform: translateY(-1px);
}

.plan-cta-outline {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--stroke);
}

.plan-cta-outline:hover {
  background: var(--cream);
  color: var(--brand);
}

/* --- Comparison Table --- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table thead th {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
}

.compare-table thead th:first-child {
  text-align: left;
  border-radius: 12px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 12px 0 0;
}

.compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--stroke);
  text-align: center;
  color: #475569;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
}

.compare-table tbody tr:hover {
  background: var(--cream);
}

.compare-table .bi-check-circle-fill {
  color: var(--success);
  font-size: 18px;
}

.compare-table .bi-x-circle {
  color: #CBD5E1;
  font-size: 18px;
}

/* --- FAQ Accordion --- */
.accordion-item {
  border: 1px solid var(--stroke);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  padding: 18px 24px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--brand);
}

.accordion-button::after {
  background-size: 16px;
}

.accordion-body {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #E55A2B 100%);
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 28px;
}

.btn-cta-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta-white:hover {
  color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* --- Footer --- */
.site-footer {
  background: var(--brand-dark);
  color: #94A3B8;
  padding: 64px 0 32px;
}

.footer-logo {
  height: 34px;
  width: auto;
  display: block;
}

.footer-title {
  font-weight: 700;
  color: #E2E8F0;
  font-size: 14px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 13px;
  font-weight: 700;
}

.footer-quick-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 32px 0 24px;
  opacity: 1;
}

.footer-bottom {
  color: #64748B;
  font-size: 13px;
}

/* --- Contact Cards --- */
.contact-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--stroke);
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s;
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

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

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #0A2540 0%, #0D3B66 100%);
  padding: 140px 0 64px;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: #94A3B8;
  font-size: 17px;
  line-height: 1.6;
  max-width: 560px;
}

.page-hero .hero-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #E2E8F0;
}

.page-hero .hero-note i {
  color: #FDBA74;
}

.inline-link {
  color: var(--blue);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--brand);
}

/* --- Utility Colors --- */
.text-accent { color: var(--accent) !important; }
.text-blue { color: var(--blue) !important; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .hero {
    padding: 120px 0 60px;
  }

  .page-hero {
    padding: 120px 0 48px;
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse .nav-link {
    color: #374151 !important;
  }

  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: var(--brand) !important;
    background: var(--cream) !important;
  }

  .navbar-collapse .btn-accent {
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .navbar-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    width: 100%;
    margin-top: 12px;
  }

  .navbar-actions .btn-panel-login,
  .navbar-actions .btn-accent {
    width: 100%;
    text-align: center;
  }

  .navbar-collapse .btn-panel-login {
    color: var(--brand);
    border-color: var(--stroke);
    background: #fff;
  }

  .navbar-collapse .btn-panel-login:hover {
    color: var(--brand);
    background: var(--cream);
  }

  .navbar-collapse .mega-dropdown {
    display: none !important;
  }

  .navbar-collapse .dropdown-toggle::after {
    display: none;
  }

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

  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: 32px;
  }

  .insight-card h2 {
    font-size: 22px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .stat-item strong {
    font-size: 26px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

/* --- Landing Refresh --- */
.channel-strip {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.channel-group {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.channel-label {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.channel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-pills span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

.ecosystem-card {
  height: 100%;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.ecosystem-card-secondary {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.ecosystem-head {
  margin-bottom: 20px;
}

.ecosystem-head h3,
.ecosystem-head .section-title {
  margin-bottom: 0;
}

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

.ecosystem-grid-compact {
  grid-template-columns: 1fr;
}

.pricing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pricing-toggle-note,
.plan-period-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.mini-info-card {
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.mini-info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.mini-info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.blog-card h2,
.blog-card h3 {
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
}

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

.blog-card-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
}

.blog-card-link {
  color: var(--brand);
  font-weight: 700;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-hero-blog p,
.page-hero-blog-detail p {
  max-width: 860px;
}

.blog-detail-shell {
  max-width: 900px;
}

.blog-spot {
  font-size: 20px;
  color: #e2e8f0;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 32px;
}

.blog-detail-content,
.blog-side-card,
.checkout-summary-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.blog-detail-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-lead {
  font-size: 19px;
  line-height: 1.8;
  color: #334155;
  margin: 0;
}

.blog-section h2 {
  margin-bottom: 14px;
}

.blog-section p:last-child {
  margin-bottom: 0;
}

.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.source-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.source-list a {
  color: var(--brand);
  font-weight: 700;
}

.source-list span,
.checkout-summary-note {
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary-card {
  position: sticky;
  top: 110px;
}

.checkout-summary-card h2 {
  margin: 12px 0 8px;
}

.checkout-summary-price {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

@media (max-width: 991.98px) {
  .blog-grid,
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .ecosystem-card,
  .blog-card,
  .blog-detail-content,
  .blog-side-card,
  .checkout-summary-card,
  .mini-info-card {
    padding: 22px;
    border-radius: 20px;
  }

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

  .blog-card h2,
  .blog-card h3 {
    font-size: 22px;
  }

  .checkout-summary-price {
    font-size: 28px;
  }
}

/* --- Pricing Toggle (yearly discount UX) --- */
.section-pricing-toggle {
  padding-top: 32px;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .section-pricing-toggle {
    padding-top: 48px;
  }
}

.pricing-toggle-save {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.btn-check:checked + .btn .pricing-toggle-save,
.btn-check:not(:checked) + .btn .pricing-toggle-save {
  /* Keep pill readable in both button states */
  background: rgba(34, 197, 94, 0.18);
  color: #15803d;
}

.btn-check:checked + .btn[for="pricingPeriodYearly"] .pricing-toggle-save {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* --- Plan price block with strike-through yearly list price --- */
.plan-price-block {
  margin: 12px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 74px;
}

.plan-price-block .plan-price {
  margin: 0;
}

.plan-price-old {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.7);
  text-decoration-thickness: 2px;
  line-height: 1.2;
}

.plan-price-save {
  display: none;
  align-self: flex-start;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
}

.plan-price-block.is-yearly .plan-price-old,
.plan-price-block.is-yearly .plan-price-save {
  display: inline-block;
}

/* --- Feature card highlight (yeni etiketli kartlar) --- */
.feature-card-highlight {
  position: relative;
  border: 1.5px solid var(--accent);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12);
}

.feature-card-highlight .icon-pill {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent);
}

.feature-card-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Entegrasyon geliştirme aşaması — "Yakında" göstergeleri */
.logo-card-yakinda {
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(0.25);
  position: relative;
}
.mega-item-yakinda {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}
.channel-pills .pill-yakinda {
  opacity: 0.6;
}
.badge-yakinda {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: 6px;
  letter-spacing: 0.3px;
  vertical-align: middle;
  text-transform: uppercase;
}

/* =====================================================
   Landing hero (Index.cshtml) — redesigned dashboard preview
   All classes scoped under .landing-hero-section
   ===================================================== */
.landing-hero-section {
  position: relative;
  z-index: 1;
  padding: 120px 0 48px;
  overflow: hidden;
  color: #eef2f8;
  background:
    radial-gradient(900px 520px at 92% 18%, rgba(93,213,240,0.18), transparent 60%),
    radial-gradient(700px 500px at 78% 60%, rgba(61,139,255,0.22), transparent 60%),
    linear-gradient(105deg, #08101f 0%, #0b1a36 32%, #15305d 62%, #1e4a8a 100%);
}
.landing-hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 85%);
}

.landing-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 430px) 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.landing-hero-copy {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,107,31,0.12);
  border: 1px solid rgba(255,107,31,0.38);
  color: #ffc29a;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
  backdrop-filter: blur(6px);
}
.landing-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff8a3d;
  box-shadow: 0 0 10px #ff6b1f;
}

.landing-headline {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 18px 0 18px;
  color: #fff;
  text-wrap: balance;
}
.landing-headline .landing-hl {
  background: linear-gradient(180deg, #fff 0%, #fff 52%, #ff6b1f 52%, #ff8a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-lede {
  color: #c2cde0;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 26px;
  font-weight: 400;
}

.landing-cta-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.landing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  padding: 13px 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  color: #fff;
}
.landing-btn-primary {
  background: linear-gradient(180deg, #ff8a3d, #ff5e14);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,94,20,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}
.landing-btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255,94,20,0.55), inset 0 1px 0 rgba(255,255,255,0.28);
}
.landing-btn-outline {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}
.landing-btn-outline:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
}

.landing-bullets {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.landing-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c2cde0;
  font-size: 13px;
  font-weight: 500;
}
.landing-bullet i {
  color: #ff8a3d;
  font-size: 15px;
  flex-shrink: 0;
}

.landing-proof {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}
.landing-stat .landing-stat-n {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}
.landing-stat .landing-stat-n em {
  font-style: normal;
  color: #ff8a3d;
}
.landing-stat .landing-stat-l {
  display: block;
  margin-top: 6px;
  color: #97a3ba;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.3;
}

/* ============= PANEL ============= */
.landing-panel-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}
.landing-panel-wrap::before {
  content: "";
  position: absolute;
  inset: -28px -10px -10px -22px;
  background:
    radial-gradient(520px 320px at 88% 12%, rgba(255,107,31,0.22), transparent 60%),
    radial-gradient(420px 280px at 12% 90%, rgba(93,213,240,0.14), transparent 60%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.landing-panel {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #0a162c;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 0 0 1px rgba(255,107,31,0.14),
    0 28px 70px rgba(0,0,0,0.55),
    0 0 50px rgba(255,107,31,0.10);
}

/* Browser chrome */
.landing-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #081224;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.landing-chrome-dots {
  display: flex;
  gap: 7px;
}
.landing-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.landing-dot-red { background: #ff5f57; }
.landing-dot-amber { background: #febc2e; }
.landing-dot-green { background: #28c940; }
.landing-chrome-nav {
  display: flex;
  gap: 8px;
  color: #5d6a84;
  font-size: 13px;
}
.landing-addr {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 6px 12px;
  color: #97a3ba;
  font-size: 12px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
}
.landing-addr i { color: #22c55e; font-size: 11px; }
.landing-addr-sub { color: #ff8a3d; }

/* Dashboard layout */
.landing-dash {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #0a162c;
}

/* Sidebar */
.landing-sb {
  background: #081224;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.landing-sb-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 10px;
}
.landing-sb-logo {
  height: 22px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(255,94,20,0.35));
}
.landing-sb-section {
  font-size: 9.5px;
  font-weight: 700;
  color: #47526a;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 12px 6px;
}
.landing-sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border-radius: 7px;
  color: #a9b3c6;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.landing-sb-item:hover {
  background: rgba(255,255,255,0.04);
  color: #dce5f3;
}
.landing-sb-item i { font-size: 13px; flex-shrink: 0; opacity: 0.9; }
.landing-sb-item.is-active {
  background: linear-gradient(90deg, rgba(255,107,31,0.22), rgba(255,107,31,0.04));
  color: #ffb083;
  box-shadow: inset 2px 0 0 #ff6b1f;
}
.landing-sb-item.is-active i { color: #ff8a3d; opacity: 1; }
.landing-sb-item .landing-caret {
  margin-left: auto;
  opacity: 0.55;
  font-size: 10px;
}
.landing-sb-pill {
  margin-left: auto;
  font-size: 8.5px;
  font-weight: 700;
  color: #ff8a3d;
  background: rgba(255,107,31,0.12);
  border: 1px solid rgba(255,107,31,0.32);
  padding: 1.5px 5px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.landing-sb-pill.is-pro {
  color: #22c55e;
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.28);
}
.landing-sb-user {
  margin-top: auto;
  padding: 10px 8px 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 9px;
}
.landing-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3d, #ff5e14);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.landing-avatar.sm { width: 26px; height: 26px; font-size: 10.5px; }
.landing-sb-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.landing-sb-user-info b { color: #e9edf5; font-size: 12px; font-weight: 600; }
.landing-sb-user-info span { color: #6b7892; font-size: 10.5px; }
.landing-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  margin-left: auto;
  box-shadow: 0 0 8px #22c55e;
}

/* Main */
.landing-main {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.landing-topbar { display: flex; align-items: center; gap: 10px; }
.landing-menu-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #a9b3c6;
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.landing-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 12px;
  color: #6b7892;
  font-size: 12.5px;
}
.landing-search i { font-size: 12px; }
.landing-kbd {
  margin-left: auto;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  color: #5d6a84;
  background: #1a335d;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}
.landing-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff8a3d, #ff5e14);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 12px rgba(255,94,20,0.4);
  cursor: pointer;
}
.landing-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #a9b3c6;
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  cursor: pointer;
}
.landing-notify-dot {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: #ff5e14;
  border-radius: 50%;
  border: 1.5px solid #0a162c;
}
.landing-user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 22px;
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.05);
}
.landing-user-info { display: flex; flex-direction: column; line-height: 1.2; }
.landing-user-info b { font-size: 11.5px; color: #e9edf5; font-weight: 600; }
.landing-user-info span { font-size: 10px; color: #6b7892; }

/* Page head */
.landing-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.landing-page-head h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}
.landing-page-head p {
  margin: 0;
  color: #6b7892;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landing-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #22c55e;
  font-weight: 600;
  margin-left: 8px;
}
.landing-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}
.landing-page-actions { display: flex; gap: 8px; align-items: center; }
.landing-b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0f1e38;
  color: #dce5f3;
  cursor: pointer;
}
.landing-b.is-sec {
  color: #ffb083;
  background: rgba(255,107,31,0.08);
  border-color: rgba(255,107,31,0.30);
}

/* KPIs */
.landing-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.landing-kpi {
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.landing-kpi::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(200px 120px at 100% 0%, rgba(255,255,255,0.025), transparent 60%);
}
.landing-kpi-row { display: flex; align-items: center; gap: 10px; }
.landing-kpi-ic {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
}
.landing-kpi-lbl { font-size: 11px; color: #97a3ba; font-weight: 500; }
.landing-trend {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}
.landing-trend.up { color: #22c55e; background: rgba(34,197,94,0.10); }
.landing-trend.down { color: #ef4444; background: rgba(239,68,68,0.10); }
.landing-trend i { font-size: 8px; }
.landing-kpi-val {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.landing-kpi-meta { font-size: 10.5px; color: #6b7892; }
.landing-kpi-meta b { color: #a9b3c6; font-weight: 600; }
.landing-kpi.k1 .landing-kpi-ic { background: linear-gradient(135deg, #5dd5f0, #3d8bff); }
.landing-kpi.k2 .landing-kpi-ic { background: linear-gradient(135deg, #22c55e, #16a34a); }
.landing-kpi.k3 .landing-kpi-ic { background: linear-gradient(135deg, #ff8a3d, #ff5e14); }
.landing-kpi.k4 .landing-kpi-ic { background: linear-gradient(135deg, #f59e0b, #d97706); }

/* Lower grid */
.landing-low {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 10px;
  min-height: 0;
}
.landing-card {
  background: #0f1e38;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 11px;
  padding: 12px;
  min-width: 0;
}
.landing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.landing-card-head h3 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 14px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}
.landing-card-ih {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: rgba(255,107,31,0.18);
  color: #ff8a3d;
  font-size: 10px;
}
.landing-seg {
  display: inline-flex;
  background: #081224;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 2px;
}
.landing-seg button {
  background: transparent;
  color: #6b7892;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.landing-seg button.on { background: rgba(255,107,31,0.18); color: #ff8a3d; }

.landing-chart { position: relative; height: 150px; margin: 4px -4px 0; }
.landing-chart svg { width: 100%; height: 100%; display: block; overflow: visible; }
.landing-y-labels { position: absolute; inset: 0; pointer-events: none; }
.landing-y-labels span {
  position: absolute;
  left: 0;
  font-size: 9.5px;
  color: #5d6a84;
  font-family: ui-monospace, monospace;
  transform: translateY(-50%);
}
.landing-x-labels {
  display: flex;
  justify-content: space-between;
  padding: 6px 36px 0 40px;
  font-size: 9.5px;
  color: #5d6a84;
  font-family: ui-monospace, monospace;
}

.landing-legend {
  display: flex;
  gap: 14px;
  font-size: 10.5px;
  color: #a9b3c6;
  margin: -2px 0 4px;
}
.landing-lg { display: inline-flex; align-items: center; gap: 5px; }
.landing-sw { width: 10px; height: 3px; border-radius: 2px; flex-shrink: 0; }

.landing-chart-foot {
  display: flex;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px;
  margin-top: 8px;
}
.landing-foot-m { flex: 1; display: flex; flex-direction: column; }
.landing-foot-m .landing-foot-l {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6b7892;
  font-size: 10.5px;
  font-weight: 500;
}
.landing-foot-m .landing-foot-l::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.landing-foot-m.a .landing-foot-l::before { background: #22c55e; }
.landing-foot-m.b .landing-foot-l::before { background: #ff8a3d; }
.landing-foot-m b {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
  color: #fff;
}
.landing-foot-diff {
  font-size: 10.5px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 1px;
}

.landing-channels {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.landing-ch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #081224;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
}
.landing-ch .landing-sw { width: 8px; height: 8px; border-radius: 2px; }
.landing-ch-nm { font-size: 11px; color: #c6d1e4; font-weight: 500; }
.landing-ch-pct {
  margin-left: auto;
  font-size: 10.5px;
  color: #6b7892;
  font-family: ui-monospace, monospace;
}

/* Top sellers */
.landing-link-btn {
  background: transparent;
  color: #6a6f7d;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}
.landing-sellers { display: flex; flex-direction: column; gap: 4px; }
.landing-sell {
  display: grid;
  grid-template-columns: 22px 32px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: #0c1a30;
  border: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.landing-sell:hover { background: #132748; }
.landing-rank {
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  color: #47526a;
  text-align: center;
  font-weight: 700;
}
.landing-rank.is-top { color: #ff8a3d; }
.landing-thumb {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #1a335d;
  display: grid;
  place-items: center;
  color: #ff8a3d;
  font-size: 13px;
  overflow: hidden;
  position: relative;
}
.landing-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
}
.landing-sell-meta { min-width: 0; }
.landing-sell-meta b {
  display: block;
  font-size: 11.5px;
  color: #e9edf5;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.landing-sell-meta span {
  display: block;
  font-size: 10px;
  color: #6b7892;
  font-family: ui-monospace, monospace;
  margin-top: 3px;
}
.landing-sell-val { text-align: right; }
.landing-sell-t {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: #22c55e;
  background: rgba(34,197,94,0.10);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
.landing-sell-p {
  display: block;
  font-size: 12px;
  color: #ff8a3d;
  font-weight: 700;
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* ============= MARKETPLACE STRIP ============= */
.landing-mkt {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.landing-mkt-group {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
  padding: 16px 20px;
  backdrop-filter: blur(4px);
}
.landing-mkt-label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c6d1e4;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.landing-mkt-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff8a3d;
  box-shadow: 0 0 10px #ff6b1f;
}
.landing-mkt-count {
  margin-left: auto;
  color: #6b7892;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 500;
}
.landing-mkt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.landing-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: #dce5f3;
  font-size: 12.5px;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  cursor: default;
}
.landing-chip:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}
.landing-chip-sw {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.landing-chip-tag {
  font-size: 9.5px;
  color: #97a3ba;
  background: rgba(255,255,255,0.08);
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 2px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 1280px) {
  .landing-hero-inner {
    grid-template-columns: minmax(380px, 440px) 1fr;
    gap: 24px;
    padding: 0 24px;
  }
  .landing-headline { font-size: 44px; }
  .landing-dash { grid-template-columns: 180px 1fr; min-height: 500px; }
  .landing-kpis { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .landing-hero-section { padding: 110px 0 50px; }
  .landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 22px;
  }
  .landing-hero-copy {
    padding-top: 4px;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }
  .landing-headline { font-size: 40px; margin: 14px 0 14px; }
  .landing-lede { max-width: 100%; font-size: 15.5px; }
  .landing-cta-row .landing-btn { flex: 1; justify-content: center; }
  .landing-bullets { gap: 14px; }
  .landing-proof { max-width: 100%; padding-top: 20px; margin-top: 28px; }
  .landing-stat .landing-stat-n { font-size: 22px; }
  .landing-panel-wrap {
    transform: none;
    width: 100%;
    margin: 0 auto;
    max-width: 760px;
  }
  .landing-panel { border-radius: 12px; }
  .landing-dash { grid-template-columns: 1fr; min-height: 0; }
  .landing-sb { display: none; }
  .landing-main { padding: 12px 12px 14px; gap: 12px; }
  .landing-topbar { gap: 6px; }
  .landing-search { padding: 7px 10px; font-size: 11.5px; }
  .landing-kbd { display: none; }
  .landing-pill-btn { padding: 7px 10px; font-size: 11px; }
  .landing-user-info { display: none; }
  .landing-page-head { flex-direction: column; align-items: stretch; gap: 8px; }
  .landing-page-actions { align-self: flex-start; }
  .landing-kpis { grid-template-columns: repeat(2, 1fr); }
  .landing-low { grid-template-columns: 1fr; }

  .landing-mkt { grid-template-columns: 1fr; gap: 12px; padding: 0 22px; margin-top: 36px; }
}

@media (max-width: 575px) {
  .landing-hero-section { padding: 100px 0 40px; }
  .landing-hero-inner { padding: 0 18px; }
  .landing-headline { font-size: 32px; letter-spacing: -0.03em; }
  .landing-lede { font-size: 14.5px; line-height: 1.55; margin-bottom: 22px; }
  .landing-cta-row { flex-direction: column; gap: 8px; }
  .landing-cta-row .landing-btn { width: 100%; }
  .landing-bullets { flex-direction: column; gap: 8px; }
  .landing-bullet { font-size: 12.5px; }
  .landing-proof { grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 22px; padding-top: 18px; }
  .landing-stat .landing-stat-n { font-size: 19px; }
  .landing-stat .landing-stat-l { font-size: 10.5px; }

  .landing-chrome { padding: 8px 10px; gap: 8px; }
  .landing-dot { width: 9px; height: 9px; }
  .landing-chrome-nav { display: none; }
  .landing-addr { font-size: 11px; padding: 5px 10px; }

  .landing-main { padding: 10px 10px 12px; gap: 10px; }
  .landing-topbar { flex-wrap: wrap; }
  .landing-search { order: 3; flex-basis: 100%; max-width: 100%; }
  .landing-icon-btn { width: 30px; height: 30px; }
  .landing-user-chip { padding: 3px 6px 3px 3px; }
  .landing-pill-btn { font-size: 11px; }

  .landing-page-head h2 { font-size: 17px; }
  .landing-page-head p { font-size: 11.5px; white-space: normal; }
  .landing-live { display: block; margin-left: 0; margin-top: 3px; }

  .landing-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .landing-kpi { padding: 11px 12px; }
  .landing-kpi-val { font-size: 19px; }
  .landing-kpi-ic { width: 28px; height: 28px; }

  .landing-card { padding: 12px; }
  .landing-chart { height: 180px; }
  .landing-channels { grid-template-columns: 1fr 1fr; gap: 5px; }
  .landing-foot-m b { font-size: 15px; }

  .landing-sell { grid-template-columns: 20px 30px 1fr auto; gap: 8px; padding: 6px 7px; }
  .landing-thumb { width: 30px; height: 30px; font-size: 12px; }
  .landing-sell-meta b { font-size: 11px; }

  .landing-mkt { padding: 0 18px; margin-top: 28px; gap: 10px; }
  .landing-mkt-group { padding: 14px 16px; }
  .landing-mkt-label { font-size: 11.5px; }
  .landing-chip { font-size: 11.5px; padding: 6px 11px; }
}
