/* Glary Utilities Site - Glarysoft cyan brand palette */
:root {
  --primary: #2a8bd5;
  --primary-dark: #1e88c7;
  --primary-darker: #1565a8;
  --primary-light: #e3f2fd;
  --primary-cyan: #4fc3f7;
  --text: #1e293b;
  --text-muted: #5a6b7d;
  --bg: #ffffff;
  --bg-alt: #f0f7ff;
  --bg-soft: #e8f4fc;
  --border: #cfe8f7;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow: 0 1px 3px rgba(42, 139, 213, 0.12);
  --shadow-lg: 0 10px 30px rgba(42, 139, 213, 0.15);
  --radius: 8px;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--text);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-download:hover {
  background: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-download-lg {
  font-size: 1.05rem;
  padding: 14px 28px;
}

/* Site search */
.site-search {
  position: relative;
  flex: 1;
  max-width: 220px;
  min-width: 140px;
}

.site-search-form {
  display: flex;
  gap: 4px;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: inherit;
}

.site-search-btn {
  padding: 8px 10px;
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary-darker);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.site-search-btn:hover {
  background: var(--bg-soft);
}

.site-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  max-height: 280px;
  overflow-y: auto;
}

.site-search-hit {
  display: block;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.site-search-hit:last-child {
  border-bottom: none;
}

.site-search-hit strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-darker);
  margin-bottom: 2px;
}

.site-search-hit span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.site-search-hit:hover {
  background: var(--bg-alt);
}

.site-search-empty {
  padding: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-home {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  font-family: inherit;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-darker);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 45%, #ffffff 100%);
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-icon,
.hero-screenshot {
  width: 100%;
  max-width: 520px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.btn-platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text) !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-platform svg {
  width: 18px;
  height: 18px;
}

.btn-platform:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  color: var(--primary) !important;
}

.btn-platform-primary {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}

.btn-platform-primary:hover {
  background: var(--primary-dark);
  color: #fff !important;
}

/* Page layout with TOC */
.page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

.toc-sidebar {
  position: sticky;
  top: 80px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
}

.toc-sidebar h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.toc-sidebar ul {
  list-style: none;
}

.toc-sidebar li {
  margin-bottom: 4px;
}

.toc-sidebar a {
  display: block;
  padding: 8px 10px;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 6px;
  border-left: 3px solid transparent;
}

.toc-sidebar a:hover {
  background: var(--bg-alt);
  color: var(--primary);
  border-left-color: var(--primary);
}

.main-content {
  min-width: 0;
}

/* Image blocks */
.figure-block {
  margin: 28px 0;
}

.figure-block img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.figure-caption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 28px 0;
}

.split-block.reverse .split-text {
  order: 2;
}

.split-block.reverse .split-media {
  order: 1;
}

/* Install step with image */
.install-step-with-img {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.install-step-with-img:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.install-step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.install-step-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.install-step-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

/* Features simple list */
.features-simple-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-top: 20px;
}

.features-simple-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.features-simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* SVG icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon svg {
  width: 20px;
  height: 20px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-icon svg {
  width: 20px;
  height: 20px;
}

.status-yes svg { color: var(--success); }
.status-no svg { color: var(--danger); }

/* Video block */
.video-block {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-block img {
  width: 100%;
  display: block;
}

.video-block-caption {
  padding: 14px 20px;
  background: var(--bg-alt);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Info specs table */
.specs-table td:first-child {
  font-weight: 600;
  width: 35%;
  background: var(--bg-alt);
}

/* Final thoughts */
.final-thoughts {
  background: linear-gradient(135deg, #f0f7ff, #e8f4fc);
  border: 1px solid #b3e0f7;
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 24px;
}

.final-thoughts h3 {
  margin-bottom: 12px;
}

.safety-box .icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #92400e;
  margin-bottom: 12px;
}

.safety-box .icon-title svg {
  width: 22px;
  height: 22px;
  color: #d97706;
  flex-shrink: 0;
}

.footer-logo {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px !important;
  object-fit: contain;
  margin-bottom: 12px;
}

/* CTA Banner */
.cta-banner {
  background: #1565a8;
  color: #ffffff;
  padding: 48px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-banner p {
  margin-bottom: 24px;
  color: #e8f4fc;
}

.cta-banner .btn-download {
  background: #fff;
  color: #1565a8 !important;
}

.cta-banner .btn-download:hover {
  background: #f0f7ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
}

/* Sections */
section {
  padding: 64px 0;
}

section:nth-child(even):not(.cta-banner) {
  background: var(--bg-alt);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.content-block p {
  margin-bottom: 16px;
  color: var(--text);
}

.content-block h3 {
  font-size: 1.3rem;
  margin: 28px 0 12px;
  color: var(--text);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Install steps */
.install-steps {
  counter-reset: install;
}

.install-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}

.install-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.install-step-content h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.install-step-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Tables */
.table-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead {
  background: var(--primary);
  color: #fff;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

tbody tr:hover {
  background: var(--bg-alt);
}

.check { color: var(--success); font-weight: 700; }
.cross { color: var(--danger); font-weight: 700; }

/* Pros & Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.pros-cons-box {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pros-cons-box.pros {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.pros-cons-box.cons {
  background: #fef2f2;
  border-color: #fecaca;
}

.pros-cons-box h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.pros-cons-box ul {
  list-style: none;
}

.pros-cons-box li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}

.pros-cons-box.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.pros-cons-box.cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

/* Safety box */
.safety-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
}

.safety-box h3 {
  color: #92400e;
  margin-bottom: 12px;
}

/* FAQ */
.faq-list {
  margin-top: 24px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 20px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: #e2e8f0;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.footer-contact-block {
  margin-bottom: 8px;
}

.footer-contact-block h4 {
  margin-bottom: 10px;
}

.footer-contact-line {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #94a3b8;
}

.footer-contact-line a {
  color: #e2e8f0;
  word-break: break-all;
}

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

.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer-legal-bar a {
  color: #94a3b8;
}

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

.footer-legal-bar span {
  color: #475569;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--primary-cyan);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-panel {
  background: #fff;
  color: var(--text);
  max-width: 440px;
  width: 100%;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.cookie-modal-panel h3 {
  margin-bottom: 12px;
}

.cookie-modal-panel p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.legal-content h2 {
  margin-top: 28px;
}

.legal-content h3 {
  margin-top: 16px;
  font-size: 1.1rem;
}

.footer-disclaimer {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Subpage styles */
.page-hero {
  background: linear-gradient(135deg, #f0f7ff, #e8f4fc);
  padding: 48px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

.page-content {
  padding: 48px 0 64px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.page-content ul, .page-content ol {
  margin: 16px 0 16px 24px;
  color: var(--text-muted);
}

.page-content li {
  margin-bottom: 8px;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--bg);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.blog-card-body {
  padding: 24px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--primary);
}

/* Video embed */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #000;
  margin: 24px 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.image-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 28px 0;
}

.howto-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.howto-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.howto-block h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-darker);
}

/* Alternatives list */
.alt-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--bg);
}

.alt-card h3 {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .toc-sidebar {
    position: static;
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons,
  .platform-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .split-block {
    grid-template-columns: 1fr;
  }

  .split-block.reverse .split-text,
  .split-block.reverse .split-media {
    order: unset;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .features-simple-list {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    display: flex;
  }

  .header-download {
    display: none;
  }

  .site-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .install-step {
    flex-direction: column;
  }
}
