/* ============================================================
   CARLIX — style.css
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --orange: #FF6B00;
  --black: #0A0A0A;
  --card: #111111;
  --border: #222222;
  --muted: #666666;
  --white: #FFFFFF;
  --text: #cccccc;
  --green: #00C853;
  --red: #ef4444;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Scrollbar ------------------------------------------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* --- Logo ------------------------------------------------ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-size: 22px;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  color: #fff;
  letter-spacing: 1px;
}
.logo-tag {
  font-size: 7px;
  font-family: Arial, sans-serif;
  color: var(--orange);
  letter-spacing: 2.5px;
  margin-top: 2px;
}

/* --- Nav ------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--white); text-decoration: none; }

/* --- Buttons -------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #e05e00;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: 1px solid var(--orange);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(255, 107, 0, 0.1);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-lg {
  font-size: 1.05rem;
  padding: 0.85rem 1.8rem;
}

/* --- Container ------------------------------------------ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section -------------------------------------------- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}
.section-header { margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Badge pill ----------------------------------------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge-active {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}
.badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: #996640;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* --- Hero ----------------------------------------------- */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); }
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Stats band ----------------------------------------- */
.stats-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* --- Feature cards -------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}
.card-link:hover { text-decoration: none; opacity: 0.8; }

/* --- Platforms ------------------------------------------ */
/* --- Platforms ticker ----------------------------------- */
.platforms-ticker-wrap {
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.platforms-ticker {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.platforms-ticker:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.ticker-item:hover { border-color: rgba(255,107,0,0.35); }
.ticker-active { border-color: rgba(0,200,83,0.2); }
.ticker-item img {
  border-radius: 4px;
  flex-shrink: 0;
}
.ticker-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.ticker-badge-active {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(0,200,83,0.12);
  border: 1px solid rgba(0,200,83,0.3);
  color: #00C853;
}
.ticker-badge-soon {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  color: #FF6B00;
}
.ticker-sep {
  color: var(--border);
  font-size: 0.7rem;
  flex-shrink: 0;
  padding: 0 0.5rem;
}
.platforms-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s;
}
.platform-card:hover { border-color: rgba(255,107,0,0.35); }
.platform-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

/* --- Steps ---------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,0,0.3));
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Comparison table ----------------------------------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
.compare-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  background: #0d0d0d;
}
.compare-table th.col-carlix {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.06);
}
.compare-table td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td:nth-child(2) { color: var(--muted); }
.compare-table td.col-carlix {
  color: var(--white);
  font-weight: 600;
  background: rgba(255, 107, 0, 0.04);
}
.check-icon { color: var(--orange); margin-right: 0.4rem; }
.cross-icon { color: var(--muted); margin-right: 0.4rem; }

/* --- CTA section ---------------------------------------- */
.cta-section {
  text-align: center;
  padding: 5rem 0;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Footer --------------------------------------------- */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: var(--text);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-expansion {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
}

/* --- Teaser cards --------------------------------------- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.teaser-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.teaser-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.teaser-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.teaser-card p {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}
.teaser-card a {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
}
.teaser-card a:hover { text-decoration: none; opacity: 0.8; }

/* --- Page header ---------------------------------------- */
.page-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.page-header p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

/* --- Features page -------------------------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.feature-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.8;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual pre {
  margin: 0;
  white-space: pre;
  color: var(--text);
}
.feature-visual .hl { color: var(--orange); font-weight: 700; }
.feature-visual .dim { color: var(--muted); }
.feature-visual .grn { color: var(--green); }

/* --- Guide page ----------------------------------------- */
.guide-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.guide-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.guide-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.guide-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.guide-content p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.guide-content ul, .guide-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.guide-content ul { list-style: disc; }
.guide-content ol { list-style: decimal; }
.guide-content li {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.guide-content strong { color: var(--white); font-weight: 600; }
.guide-content a { color: var(--orange); }
.guide-content .callout {
  background: rgba(255, 107, 0, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.guide-content .callout p { margin: 0; color: var(--text); }

/* --- Guide table ---------------------------------------- */
.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.875rem;
}
.guide-table th {
  background: #0d0d0d;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.guide-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table td strong { color: var(--white); }

/* --- FAQ page ------------------------------------------- */
.faq-section {
  margin-bottom: 3rem;
}
.faq-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255, 107, 0, 0.4); }
.faq-question {
  width: 100%;
  text-align: left;
  background: var(--card);
  border: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.faq-question:hover { background: #141414; }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  background: var(--card);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--orange); }
.faq-answer strong { color: var(--text); }

/* --- Pricing -------------------------------------------- */
.pricing-note {
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pricing-card-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.1);
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 0, 0.15);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.pricing-plan-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
}
.pricing-cta-text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* --- Docs page ------------------------------------------ */
.docs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}
.docs-nav {
  position: sticky;
  top: 84px;
}
.docs-nav h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.docs-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.docs-nav ul li a {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: all 0.2s;
}
.docs-nav ul li a:hover {
  color: var(--white);
  background: var(--card);
  text-decoration: none;
}
.docs-nav ul li a.active {
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
}
.docs-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.docs-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.docs-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}
.docs-content p {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.docs-content ul, .docs-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.docs-content ul { list-style: disc; }
.docs-content ol { list-style: decimal; }
.docs-content li {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.docs-content a { color: var(--orange); }
.code-block {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: #e0e0e0;
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
  line-height: 1.7;
}
.code-block .cmd { color: var(--orange); }
.code-block .comment { color: var(--muted); }
.code-block .val { color: var(--green); }
.env-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.env-table th {
  background: #0d0d0d;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.env-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.env-table tr:last-child td { border-bottom: none; }
.env-table code {
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}
.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.875rem;
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.tier-table th {
  background: #0d0d0d;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.tier-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.tier-table tr:last-child td { border-bottom: none; }
.tier-excellent { color: #FF6B00; font-weight: 700; }
.tier-great { color: #cc5500; font-weight: 700; }
.tier-good { color: #995500; font-weight: 700; }

/* --- Animations ----------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* --- Responsive ----------------------------------------- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn-primary { display: none; }

  .hero { padding: 4rem 0 3rem; }
  .hero h1 { font-size: 2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps-grid::before { display: none; }
  .teaser-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-visual { order: 0; }

  .docs-layout { grid-template-columns: 1fr; }
  .docs-nav { position: static; }

  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.6rem 0.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .pricing-card { padding: 1.75rem; }
}

/* ── Partner card ── */
.partner-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  max-width: 420px;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.partner-card:hover { border-color: var(--orange); }
.partner-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.partner-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
.partner-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── CarVertical callout ── */
.cv-callout {
  background: rgba(255,107,0,.07);
  border: 1px solid rgba(255,107,0,.25);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.cv-callout h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.cv-callout p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ── Partners page ── */
.partners-hero { padding: 5rem 0 3rem; text-align: center; }
.partners-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.cv-detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  margin: 2rem 0;
}
.cv-detail-card .cv-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.cv-feature-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}
.cv-feature-item .cv-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.cv-feature-item h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.cv-feature-item p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.partners-coming {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.coming-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.cv-stats-box {
  background: rgba(255,107,0,.06);
  border: 1px solid rgba(255,107,0,.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.cv-stats-box h4 { color: var(--orange); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: .05em; }
.stats-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-item { font-size: 0.85rem; color: #aaa; }
.stat-item b { color: #fff; }

/* ── Dashboard preview ── */
.dashboard-preview-wrap {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  max-width: 1100px;
  margin: 0 auto;
}
.dashboard-preview-img {
  width: 100%;
  display: block;
}

/* ── Screenshots grid ── */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.screenshot-img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.screenshot-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.65);
}
.screenshot-caption {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.screenshot-caption strong { color: var(--orange); }

@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ── AI Showcase ──────────────────────────────────────────────────────────── */
.ai-showcase {
  max-width: 780px;
  margin: 0 auto 2rem;
}
.ai-mock-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(255,107,0,0.08);
}
.ai-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #111;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.ai-mock-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ai-mock-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.ai-mock-badge.excellent { background: #3a1a1a; color: #ff4444; border: 1px solid #ff444440; }
.ai-mock-car { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.ai-mock-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  padding: 6px 16px;
  min-width: 70px;
}
.ai-score-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.ai-score-value { font-size: 1.8rem; font-weight: 900; color: var(--orange); line-height: 1; }
.ai-mock-summary {
  padding: 14px 22px;
  font-size: 0.88rem;
  color: var(--text-muted, #aaa);
  font-style: italic;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.ai-mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.ai-mock-section { padding: 14px 20px; }
.ai-mock-section:first-child { border-right: 1px solid var(--border); }
.ai-mock-section-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.ai-mock-item { font-size: 0.8rem; line-height: 1.5; padding: 2px 0; color: var(--text-muted, #bbb); }
.ai-mock-item.pro::before { content: "✓ "; color: #00C853; font-weight: 700; }
.ai-mock-item.con::before { content: "✗ "; color: #ef4444; font-weight: 700; }
.ai-mock-prices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.ai-price-box {
  padding: 12px 14px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.ai-price-box:last-child { border-right: none; }
.ai-price-box.highlight { background: rgba(255,107,0,0.04); }
.ai-price-label { font-size: 0.65rem; color: var(--muted); margin-bottom: 4px; line-height: 1.3; }
.ai-price-val { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.ai-price-val.accent { color: var(--orange); }
.ai-price-val.green { color: #00C853; }
.ai-mock-verdict {
  padding: 14px 22px;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--orange);
  margin: 0;
  line-height: 1.6;
}
.ai-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}
.ai-feature-pill {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 680px) {
  .ai-mock-grid { grid-template-columns: 1fr; }
  .ai-mock-section:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .ai-mock-prices { grid-template-columns: 1fr 1fr; }
  .ai-price-box:nth-child(2) { border-right: none; }
  .ai-price-box:nth-child(3) { border-top: 1px solid var(--border); }
}
