/* =============================================================================
   Clone Pages — Hero & FAQ
   Accent colour is injected per-page via the --clone-accent CSS custom property
   set as an inline style="--clone-accent:#HEX" on each section element.
   This file contains NO hardcoded brand colours — all accent values come from
   the CSS variable so one stylesheet serves all 10 clone pages.
============================================================================= */

/* ── Hero Layout ─────────────────────────────────────────────────────────── */
.clone-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.clone-hero-text { text-align: left; }
.clone-hero-text .breadcrumb { justify-content: flex-start; }
.clone-hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Phone Mockup Frame ──────────────────────────────────────────────────── */
.clone-phone-frame {
  width: 240px;
  background: #1e293b;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.clone-phone-notch {
  width: 80px;
  height: 20px;
  background: #0f172a;
  border-radius: 10px;
  margin: 0 auto 8px;
}
.clone-phone-screen {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

/* ── Phone App UI ────────────────────────────────────────────────────────── */
.clone-app-header {
  background: var(--clone-accent, #2563eb);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.clone-app-logo {
  background: #fff;
  color: var(--clone-accent, #2563eb);
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
}
.clone-app-search {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 9px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}
.clone-app-banner {
  background: linear-gradient(135deg, #fff8f3, #ffe4cc);
  padding: 10px 12px;
  border-bottom: 1px solid #fde8d0;
}
.clone-banner-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--clone-accent, #2563eb);
}
.clone-app-cards {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.clone-res-card { display: flex; gap: 8px; align-items: center; }
.clone-res-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--clone-accent, #2563eb);
}
.clone-res-img.c2 { background: linear-gradient(135deg, #10b981, #059669); }
.clone-res-name { font-size: 9px; font-weight: 700; color: #1e293b; }
.clone-res-meta { font-size: 8px; color: #64748b; margin-top: 2px; }

/* ── Tracking Strip ──────────────────────────────────────────────────────── */
.clone-app-track {
  background: #f8fafc;
  padding: 10px 12px;
  border-top: 1px solid #e2e8f0;
}
.clone-track-label { font-size: 9px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.clone-track-bar { background: #e2e8f0; height: 4px; border-radius: 2px; margin-bottom: 5px; }
.clone-track-fill {
  background: var(--clone-accent, #2563eb);
  height: 4px;
  border-radius: 2px;
  width: 75%;
}
.clone-track-status { font-size: 8px; color: #10b981; font-weight: 600; }

/* ── Glow Behind Phone ───────────────────────────────────────────────────── */
.clone-phone-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--clone-accent, #2563eb);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(30px);
  opacity: .2;
  pointer-events: none;
}

/* ── Hero Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .clone-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .clone-hero-text .breadcrumb { justify-content: center; }
  .clone-hero-phone { margin-top: 2rem; }
}

/* =============================================================================
   FAQ Accordion
============================================================================= */
.clone-faq-section {
  padding: 4rem 0;
  background: #fff;
}
.clone-faq-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.clone-faq-label {
  display: block;
  text-align: center;
  color: var(--clone-accent, #2563eb);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}
.clone-faq-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 2.5rem;
}

/* Accordion items */
details.faq-acc {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
details.faq-acc:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
details.faq-acc summary {
  font-weight: 700;
  color: #0f172a;
  padding: 18px 22px;
  font-size: 1rem;
  border-left: 4px solid var(--clone-accent, #2563eb);
  cursor: pointer;
  line-height: 1.4;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
details.faq-acc summary::-webkit-details-marker { display: none; }
details.faq-acc summary::marker { display: none; }
details.faq-acc summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clone-accent, #2563eb);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}
details.faq-acc[open] summary::after {
  content: "\2212";
}
details.faq-acc .faq-body {
  padding: 0 22px 18px 26px;
  color: #475569;
  font-size: .92rem;
  line-height: 1.75;
}
details.faq-acc .faq-body p {
  margin: 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.75;
}

/* =============================================================================
   What's Included Grid
============================================================================= */
.clone-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .clone-includes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .clone-includes-grid { grid-template-columns: 1fr; } }

.clone-include-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow .2s, border-color .2s;
}
.clone-include-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-color: var(--clone-accent, #2563eb);
}
.clone-include-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.375rem;
  background: #f1f5f9;
  color: var(--clone-accent, #2563eb);
}
.clone-include-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 .5rem;
}
.clone-include-card p {
  font-size: .875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.65;
}

/* =============================================================================
   Comparison Table
============================================================================= */
.clone-compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}
.clone-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
  min-width: 600px;
}
.clone-compare-table thead tr {
  background: #1e293b;
  color: #fff;
}
.clone-compare-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}
.clone-compare-table th.highlight {
  background: #0f172a;
  color: var(--clone-accent, #2563eb);
}
.clone-compare-table td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}
.clone-compare-table tbody tr:last-child td { border-bottom: none; }
.clone-compare-table tbody tr:nth-child(even) { background: #f8fafc; }
.clone-compare-table td.highlight {
  font-weight: 700;
  color: var(--clone-accent, #2563eb);
}
.clone-compare-table .tick { color: #16a34a; font-weight: 700; }
.clone-compare-table .cross { color: #dc2626; }

/* =============================================================================
   Revenue Stream Cards
============================================================================= */
.clone-revenue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) { .clone-revenue-grid { grid-template-columns: 1fr; } }

.clone-revenue-card {
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.clone-revenue-card:hover {
  border-color: var(--clone-accent, #2563eb);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.clone-revenue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--clone-accent, #2563eb);
}
.clone-revenue-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--clone-accent, #2563eb);
  line-height: 1;
  margin-bottom: .375rem;
}
.clone-revenue-label {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: .75rem;
}
.clone-revenue-desc {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}
