/* === CANVA DOWNLOAD - CSS === */
:root {
  --purple: #8b3dff;
  --purple-dark: #612dae;
  --purple-light: #a570ff;
  --teal: #00c4cc;
  --dark: #0d1216;
  --dark2: #18191b;
  --gray: #3b3c3d;
  --gray-light: #f0f1f5;
  --white: #ffffff;
  --text: #252627;
  --red: #fd4958;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo { color: var(--white); font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: 15px; transition: color 0.2s; }
.main-nav a:hover { color: var(--white); text-decoration: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* === TL;DR BAR === */
.tldr-bar {
  background: linear-gradient(90deg, var(--purple), var(--teal));
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
}
.tldr-bar strong { font-weight: 700; }

/* === HERO === */
.hero {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 72px 24px 48px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--purple-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); text-decoration: none; }
.hero-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.55); }

/* === HERO IMAGE === */
.hero-image { background: var(--dark2); padding: 0 0 48px; text-align: center; }
.hero-image img { max-width: 1100px; margin: 0 auto; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,0.5); }

/* === STATS === */
.stats { background: var(--gray-light); padding: 56px 24px; }
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--purple); }
.stat-item p { font-size: 14px; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* === SECTION === */
.section { padding: 72px 24px; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--dark); color: var(--white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* === PLATFORMS TABLE === */
.platforms-table { width: 100%; border-collapse: collapse; margin: 0 auto; max-width: 900px; }
.platforms-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
}
.platforms-table td { padding: 14px 20px; border-bottom: 1px solid #e8e8e8; font-size: 15px; }
.platforms-table tr:last-child td { border-bottom: none; }
.platforms-table tr:hover td { background: #f9f9fb; }
.platforms-table .dl-btn {
  background: var(--purple);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.platforms-table .dl-btn:hover { background: var(--purple-dark); text-decoration: none; }

/* === DOWNLOAD CARD === */
.download-card {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}
.download-card h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.download-card p { opacity: 0.85; margin-bottom: 28px; }

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* === SCREENSHOTS === */
.screenshots-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.screenshots-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.screenshots-grid-2 img,
.screenshots-grid-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
}

/* === HOW IT WORKS === */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 20px; }
.step-num {
  width: 48px; height: 48px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray); }

/* === COMPARISON TABLE === */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { background: var(--dark); color: var(--white); padding: 14px 20px; text-align: center; }
.comp-table th:first-child { text-align: left; }
.comp-table td { padding: 13px 20px; border-bottom: 1px solid #e8e8e8; font-size: 14px; }
.comp-table td:not(:first-child) { text-align: center; }
.comp-table .check { color: #008009; font-size: 1.1rem; font-weight: 700; }
.comp-table .cross { color: var(--red); }
.comp-table tr:hover td { background: #f9f9fb; }
.comp-table .highlight td { background: #f0ebff; font-weight: 600; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--purple); transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; color: var(--gray); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* === USE CASES === */
.use-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.use-case-card { border-radius: 12px; overflow: hidden; border: 1px solid #e8e8e8; }
.use-case-card img { width: 100%; height: 180px; object-fit: cover; }
.use-case-card .uc-content { padding: 16px; }
.use-case-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.use-case-card p { font-size: 13px; color: var(--gray); }

/* === CTA BOTTOM === */
.cta-bottom {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-bottom h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 16px; }
.cta-bottom p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 16px; }

/* === BREADCRUMB === */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 24px;
  font-size: 13px;
  color: var(--gray);
}
.breadcrumb a { color: var(--purple); }
.breadcrumb span { margin: 0 6px; }

/* === FOOTER === */
.site-footer { background: var(--dark2); color: rgba(255,255,255,0.75); padding: 56px 24px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
.footer-col h3 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-disclaimer a { color: rgba(255,255,255,0.6); }

.main-nav a.active { color: var(--white); border-bottom: 2px solid var(--purple); padding-bottom: 2px; }

/* === SYSTEM REQUIREMENTS TABLE === */
.req-heading { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.req-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.req-table tr { border-bottom: 1px solid #e8e8e8; }
.req-table td { padding: 10px 12px; vertical-align: top; }
.req-label { font-weight: 600; color: var(--dark); width: 140px; white-space: nowrap; }
.req-note { font-size: 13px; color: var(--gray); margin-top: 14px; line-height: 1.6; background: #f0f1f5; padding: 12px; border-radius: 8px; }

/* === INSTALL GUIDE === */
.install-guide { margin: 40px 0; display: flex; flex-direction: column; gap: 0; }
.install-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid #e8e8e8; }
.install-step:last-child { border-bottom: none; }
.install-step-num { flex-shrink: 0; background: var(--purple); color: var(--white); font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 20px; height: fit-content; white-space: nowrap; letter-spacing: 0.5px; text-transform: uppercase; }
.install-step-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.install-step-body p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 10px; }
.install-step-body p:last-child { margin-bottom: 0; }
.install-step-body code { background: #f0f1f5; padding: 2px 7px; border-radius: 4px; font-size: 13px; font-family: 'Courier New', monospace; color: var(--purple-dark); }
.install-cta { text-align: center; margin-top: 40px; padding: 40px; background: linear-gradient(135deg, #f0ebff, #e8f4ff); border-radius: 16px; }

/* === TROUBLESHOOTING === */
.trouble-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.trouble-card { background: var(--white); border: 1px solid #e8e8e8; border-radius: 12px; padding: 22px; border-left: 4px solid var(--purple); }
.trouble-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.trouble-card p { font-size: 13px; color: var(--gray); line-height: 1.65; }
.trouble-card code { background: #f0f1f5; padding: 1px 5px; border-radius: 3px; font-size: 12px; font-family: 'Courier New', monospace; color: var(--purple-dark); }

/* === INTERNAL LINKS GRID === */
.internal-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.internal-link-card { display: block; background: var(--white); border: 1px solid #e8e8e8; border-radius: 12px; padding: 24px; transition: box-shadow 0.2s, border-color 0.2s; text-decoration: none; color: inherit; }
.internal-link-card:hover { box-shadow: 0 6px 24px rgba(139,61,255,0.12); border-color: var(--purple-light); text-decoration: none; }
.ilc-icon { font-size: 2rem; margin-bottom: 12px; }
.internal-link-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.internal-link-card p { font-size: 13px; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }
.ilc-arrow { font-size: 13px; font-weight: 700; color: var(--purple); }

/* === RESPONSIVE additions === */
@media (max-width: 900px) {
  .trouble-grid { grid-template-columns: repeat(2, 1fr); }
  .internal-links-grid { grid-template-columns: repeat(2, 1fr); }
  .install-step { flex-direction: column; gap: 12px; }
}
@media (max-width: 599px) {
  .trouble-grid { grid-template-columns: 1fr; }
  .internal-links-grid { grid-template-columns: repeat(2, 1fr); }
  .req-label { width: 110px; }
}

/* === UTILITY CLASSES === */
.overflow-x-auto { overflow-x: auto; }
.dl-card-note { margin-top: 16px; opacity: 0.7; font-size: 13px; }
.btn-primary-lg { font-size: 18px !important; padding: 16px 40px !important; }
.btn-primary-md { font-size: 16px !important; padding: 14px 32px !important; }
.btn-outline-md  { font-size: 16px !important; padding: 14px 32px !important; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 32px; }
.two-col img { border-radius: 12px; border: 1px solid #e8e8e8; }
.step-guide { margin-bottom: 40px; }
.step-guide h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--purple); }
.step-guide ol { padding-left: 24px; line-height: 2; font-size: 15px; color: var(--gray); }
.intro-text { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.info-box { background: var(--gray-light); border-radius: 12px; padding: 24px; margin-top: 40px; font-size: 14px; color: var(--gray); }
.prose h2 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.prose p  { line-height: 1.8; color: var(--gray); margin-bottom: 20px; }
.page-h1 { font-size: 2rem; font-weight: 800; margin-bottom: 32px; }
.kw-block p { font-size: 15px; line-height: 1.8; color: var(--gray); margin-bottom: 14px; max-width: 860px; margin-left: auto; margin-right: auto; }
.kw-block p:last-child { margin-bottom: 0; }
.kw-block code { background: #f0f1f5; padding: 2px 6px; border-radius: 4px; font-size: 13px; font-family: 'Courier New', monospace; color: var(--purple-dark); }
.links-2col { grid-template-columns: repeat(2, 1fr) !important; max-width: 700px; margin: 0 auto; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.prose-wrap { max-width: 800px; }
.section-date { color: var(--gray); font-size: 14px; margin-bottom: 32px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  font-size: 15px; transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: var(--purple); color: var(--white); text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .use-cases { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 599px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 20px 24px; gap: 16px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .screenshots-grid-2 { grid-template-columns: 1fr; }
  .screenshots-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .use-cases { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .download-card { padding: 28px 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
}
