/* ============================================================
   INCYNQ.NET — Inner page styles
   Shared by all pages except homepage
   ============================================================ */

/* ── Active nav link ────────────────────────────────────────── */
.nav-active {
  color: var(--teal) !important;
  font-weight: 600 !important;
}

/* ── Page header ────────────────────────────────────────────── */
.page-header {
  background: var(--teal);
  padding: 108px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.page-header-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  position: relative;
}

.page-header-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}
.page-header-headline em {
  font-style: normal;
  color: var(--amber);
}

.page-header-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 30px;
  position: relative;
}

/* ── Steps grid (How it works) ──────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-border);
  box-shadow: 0 8px 28px var(--teal-glow);
}

.step-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Interest chips ─────────────────────────────────────────── */
.interests-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.interest-chip {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: border-color 0.18s, color 0.18s, transform 0.15s;
  cursor: default;
}
.interest-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.interest-chip-more {
  background: var(--teal-light-bg);
  border-color: var(--teal-border);
  color: var(--teal);
  font-style: italic;
}

/* ── VS note ────────────────────────────────────────────────── */
.vs-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--teal);
  font-style: italic;
  font-weight: 500;
}

/* ── Feature list (with nested strong + span) ───────────────── */
.feature-list li {
  align-items: flex-start;
  gap: 12px;
}
.feature-list strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 15px;
}
.feature-list span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Wallet mockup ──────────────────────────────────────────── */
.wallet-mockup {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 28px 20px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 6px 32px rgba(0,122,135,0.1);
}

.wallet-header {
  margin-bottom: 16px;
}
.wallet-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wallet-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.wallet-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.wallet-currency {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.6;
}

.wallet-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.wallet-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}

.wallet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  border-top: 1px solid var(--border);
}
.wallet-row:first-of-type { border-top: none; }

.wallet-row-label { color: var(--text-muted); }
.wallet-row-value { font-family: var(--font-display); font-weight: 700; }
.wallet-row-value.positive { color: var(--teal); }

/* ── Ad tier cards (Brands page) ────────────────────────────── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.tier-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-border);
  box-shadow: 0 8px 28px var(--teal-glow);
}
.tier-card.tier-featured {
  border-color: var(--teal);
  box-shadow: 0 4px 20px var(--teal-glow);
}

.tier-emoji { font-size: 26px; margin-bottom: 10px; }

.tier-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.tier-members {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.tier-reaches {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-reach-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}
.tier-reach-name { color: var(--text-muted); }
.tier-reach-val  { font-weight: 600; color: var(--text); }
.tier-reach-val.val-teal { color: var(--teal); }

/* ── Device cards ───────────────────────────────────────────── */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.device-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.22s, border-color 0.22s;
}
.device-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-border);
}

.device-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.device-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.device-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.device-slurl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  transition: background 0.18s;
}
.device-slurl:hover {
  background: #d4eef0;
}

/* ── PWA install steps ──────────────────────────────────────── */
.install-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.install-platform {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.install-platform-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.install-platform-icon { font-size: 28px; }

.install-platform-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.install-platform-browser {
  font-size: 13px;
  color: var(--text-muted);
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.install-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.install-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

.install-step-text {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.55;
}
.install-step-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

.install-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--teal-light-bg);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}
.install-note strong { color: var(--teal); }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--surface);
  cursor: pointer;
  gap: 16px;
  transition: background 0.18s;
  list-style: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  user-select: none;
}
.faq-question:hover { background: var(--bg); }
.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.22s;
  flex-shrink: 0;
}
details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  background: var(--surface);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Legal page ─────────────────────────────────────────────── */
.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 40px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-body ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-header { padding: 96px 0 48px; }

  .steps-grid   { grid-template-columns: 1fr; }
  .devices-grid { grid-template-columns: 1fr; }
  .install-platforms { grid-template-columns: 1fr; }
  .tiers-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

/* ── Compare grid (replaces VS table) ───────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
}

.compare-old { border-top: 3px solid #e0b0b0; }
.compare-new { border-top: 3px solid var(--teal); }

.compare-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.compare-old .compare-card-title { color: #b07070; }
.compare-new .compare-card-title { color: var(--teal); }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.5;
}

.compare-x    { color: #c07070; font-weight: 700; flex-shrink: 0; }
.compare-tick { color: var(--teal); font-weight: 700; flex-shrink: 0; }

@media (max-width: 600px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-container { max-width: 800px; }

.faq-part-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 56px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light-bg);
}
.faq-part-title:first-child { margin-top: 0; }

.faq-group { margin-bottom: 40px; }

.faq-group-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.faq-list {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  user-select: none;
  transition: background 0.18s;
}
.faq-question:hover { background: var(--bg); }
.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.22s;
}
details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 4px 22px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--surface);
}

.faq-still-stuck {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--teal-light-bg);
  border: 1.5px solid var(--teal-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.faq-still-stuck h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.faq-still-stuck p {
  font-size: 15px;
  color: var(--text-muted);
}
.faq-still-stuck a {
  color: var(--teal);
  font-weight: 600;
}

/* ── Device visual card ─────────────────────────────────────── */
.device-visual-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 6px 32px rgba(0,122,135,0.1);
}
.device-visual-icon { font-size: 32px; margin-bottom: 8px; }
.device-visual-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.device-visual-id {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.device-visual-status { font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.status-active { color: var(--teal); }
.device-visual-divider { height: 1px; background: var(--border); margin-bottom: 14px; }
.device-visual-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.device-visual-row:first-of-type { border-top: none; }
.val-teal { color: var(--teal); font-weight: 600; }

/* ── Location cards ─────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.location-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.location-coming-soon { opacity: 0.65; }
.location-type { font-size: 12px; color: var(--text-muted); }
.location-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.location-region { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }

@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ── Legal tables ───────────────────────────────────────────── */
.legal-table-wrap {
  overflow-x: auto;
  margin: 16px 0 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
}

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

.legal-table th {
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.legal-table td {
  padding: 12px 16px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}

.legal-table tr:last-child td { border-bottom: none; }
.legal-table td strong { color: var(--text); font-weight: 600; }

/* ── Legal intro + footer note ──────────────────────────────── */
.legal-intro {
  font-size: 16px;
  color: var(--text-mid);
  background: var(--teal-light-bg);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  margin-bottom: 36px;
  line-height: 1.65;
  font-style: italic;
}

.legal-footer-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-footer-note p {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 4px !important;
}
.legal-footer-note a { color: var(--teal); }

/* ── Dashboard tiers (brands page) ─────────────────────────── */
.dashboard-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.dashboard-tier {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.dashboard-tier-paid {
  background: var(--teal-light-bg);
  border-color: var(--teal-border);
}

.dashboard-tier-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.dashboard-tier-paid .dashboard-tier-title { color: var(--teal); }

.dashboard-tier-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-tier-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}
.dashboard-tier-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── Scattered platforms ────────────────────────────────────── */
.scattered-platforms{display:flex;flex-wrap:wrap;margin-bottom:32px;}
.scat-plt{background:#f5f5f5;border:2px solid #e0e0e0;border-radius:999px;padding:9px 18px;font-size:15px;font-weight:600;color:#6a8090;margin:5px;}
.scat-plt.strike{text-decoration:line-through;text-decoration-color:#c05050;text-decoration-thickness:2px;opacity:0.6;}

.solution-card-big{background:#007a87;border-radius:var(--radius-xl);padding:40px 36px;}
.sol-eyebrow{font-size:11px;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;color:rgba(255,255,255,0.5);margin-bottom:14px;}
.sol-headline{font-family:'Manrope',sans-serif;font-size:52px;font-weight:800;line-height:1.0;letter-spacing:-0.035em;color:#fff;margin-bottom:16px;}
.sol-amber{color:#f0a500;}
.sol-body{font-family:'DM Sans',sans-serif;font-size:16px;color:rgba(255,255,255,0.65);line-height:1.65;font-weight:300;}
