*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --accent: #ffcc00;
  --accent-dark: #e6b800;
  --accent-danger: #fc3f1d;
  --accent-light: #fffde7;
  --accent-glow: rgba(255,204,0,0.15);
  --text: #21201f;
  --text-muted: #626060;
  --border: #e6e4e1;
  --bg: #f5f4f2;
  --bg-alt: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 8px 32px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 0;
}
a { color: #fc3f1d; text-decoration: none; transition: color var(--transition); }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
p { margin-bottom: 14px; }
ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 5px; }
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
th { background: #ffcc00; color: #21201f; padding: 13px 16px; text-align: left; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background var(--transition); }
tr:hover td { background: var(--accent-glow); }
tr:nth-child(even) td { background: var(--bg-alt); }
tr:nth-child(even):hover td { background: var(--accent-glow); }
tr:last-child td { border-bottom: none; }
h1, h2, h3, h4 { color: var(--text); line-height: 1.25; letter-spacing: 0; }
h2 { font-size: 30px; font-weight: 700; margin-bottom: 12px; line-height: 1.25; letter-spacing: 0; }
h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,204,0,0.45); }
  50% { box-shadow: 0 4px 28px rgba(255,204,0,0.65); }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(2deg); }
  66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { top: -40px; left: 0; background: #ffcc00; color: #21201f; padding: 8px 16px; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; width: auto; height: auto; clip: auto; }
.d-inline { display: inline-block !important; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.85); color: #21201f;
  border: 1px solid rgba(255,204,0,0.4); border-radius: 24px;
  padding: 5px 14px; font-size: 13px; font-weight: 500;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #ffcc00;
  color: #21201f;
  border: none; border-radius: var(--radius-lg); padding: 15px 34px;
  font-size: 17px; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(255,204,0,0.35);
  text-decoration: none; line-height: 1.2;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before { left: 100%; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,204,0,0.45); text-decoration: none; background: #e6b800; color: #21201f; }
.btn:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(255,204,0,0.3); }
.btn-lg { padding: 18px 48px; font-size: 19px; border-radius: 24px; letter-spacing: 0; }
.btn-outline {
  background: transparent; color: #21201f;
  border: 2px solid #ffcc00; box-shadow: none;
}
.btn-outline::before { display: none; }
.btn-outline:hover { background: var(--accent-light); color: #21201f; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 10px 22px; font-size: 14px; }

.section {
  padding: 52px 0;
  background: #ffffff;
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,204,0,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.section-alt {
  padding: 64px 0;
  background: #f5f4f2;
  position: relative;
}
.section-lead,
.section-byline {
  color: var(--text-muted);
  font-size: 14px;
}
.section-lead { margin-bottom: 30px; }

.check { color: #fc3f1d; font-weight: 700; }
.cross { color: #e53935; font-weight: 700; }

header[role="banner"] {
  position: relative;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,204,0,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
main { display: block; margin: 0; padding: 0; }
.app-page { margin: 0; padding: 0; }
header[role="banner"].scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 980px; margin: 0 auto;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 3px; font-weight: 800; font-size: 16px; color: #ffffff; text-decoration: none; letter-spacing: -0.01em; transition: transform 0.2s; }
.logo:hover { text-decoration: none; color: #ffffff; transform: translateY(-1px); }
.logo-base { font-weight: 700; }
.logo span,
.footer-brand span { color: var(--accent-danger); font-weight: 700; }
.logo-icon {
  width: 28px; height: 28px;
  background: rgba(255,204,0,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #ffcc00;
  margin-right: 8px;
}
.logo-icon svg { width: 18px; height: 18px; }
header nav[role="navigation"] { display: flex; gap: 0; align-items: center; }
header nav[role="navigation"] a {
  position: relative;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 6px 10px; margin: 0 4px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
header nav[role="navigation"] a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
header nav[role="navigation"] a.active {
  color: #ffffff;
  background: rgba(255,255,255,0.1);
}

/* Dropdown navigation */
.nav-dropdown { position: relative; padding-top: 8px; }
.nav-dropdown-toggle {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 6px 10px; margin: 0 4px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-dropdown-toggle:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.nav-dropdown-toggle[aria-expanded="true"] { color: #ffffff; background: rgba(255,255,255,0.1); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #1f1f1f; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  padding: 16px; min-width: 520px; max-width: 90vw;
  display: none; grid-template-columns: repeat(3, 1fr); gap: 12px 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu { display: grid; }
.nav-dropdown-col { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-cat {
  font-size: 13px; font-weight: 600; color: #ffffff;
  padding: 6px 8px; border-radius: 6px;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: background 0.2s;
}
.nav-dropdown-cat:hover { background: rgba(255,255,255,0.08); color: #ffcc00; text-decoration: none; }
.nav-dropdown-app {
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.55);
  padding: 4px 8px 4px 28px; border-radius: 4px;
  text-decoration: none; display: block;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-dropdown-app:hover { color: #ffffff; background: rgba(255,255,255,0.06); text-decoration: none; }
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-bottom: 6px solid #1f1f1f;
}
.nav-dropdown-header {
  grid-column: 1 / -1;
  font-size: 14px; font-weight: 700; color: #ffcc00;
  padding-bottom: 8px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-dropdown-col:hover { border-left: 2px solid #ffcc00; padding-left: 6px; }
.nav-dropdown-cat { font-size: 14px; font-weight: 700; }

.header-search {
  position: relative;
  display: flex;
  align-items: center;
}
.header-search input {
  width: 180px;
  padding: 7px 30px 7px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: width 0.3s ease, background 0.2s ease, border-color 0.2s ease;
}
.header-search input::placeholder { color: rgba(255,255,255,0.4); }
.header-search input:focus {
  width: 240px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,204,0,0.4);
}
.header-search i {
  position: absolute;
  right: 10px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}
.hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: grid; grid-template-rows: 0fr;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 0 20px;
  opacity: 0; transform: translateY(-10px);
  transition: grid-template-rows 0.35s ease, padding 0.35s ease, opacity 0.25s ease, transform 0.25s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 100;
}
.mobile-nav.open { grid-template-rows: 1fr; padding: 12px 20px; opacity: 1; transform: translateY(0); }
.mobile-nav > * { overflow: hidden; }
.mobile-nav a { padding: 10px 0; color: var(--text); font-size: 15px; font-weight: 500; border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-group-title {
  padding: 10px 0 6px; font-size: 12px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em;
}
.mobile-nav-group a {
  padding: 8px 0 8px 12px; font-size: 14px; font-weight: 400;
  color: var(--text); border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.mobile-nav-group a:last-child { border-bottom: 1px solid var(--border); }

.breadcrumb { display: block; padding: 4px 0; font-size: 11px; color: var(--text-muted); min-height: auto; margin: 0 0 20px 0; background: transparent; box-shadow: none; }
.breadcrumb .container { display: block; }
.breadcrumb-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.breadcrumb-inner a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--accent-dark); text-decoration: underline; }
.breadcrumb-inner span[aria-current="page"] { color: var(--text); font-weight: 600; }
.breadcrumb-inner .sep { margin: 0 8px; color: var(--border); flex-shrink: 0; }

.hero {
  padding: 32px 0 64px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #fffef5 0%, #ffffff 40%, #f5f4f2 100%);
}
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: stretch; position: relative; z-index: 1; }
.hero-inner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(255,243,196,0.15) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: float 20s ease-in-out infinite reverse;
  will-change: transform;
  z-index: -1;
}
.hero-left { max-width: 620px; }
.hero h1 { font-size: 40px; font-weight: 800; line-height: 1.1; margin-bottom: 36px; color: var(--text); letter-spacing: -0.01em; }
.hero h1 span { color: #fc3f1d; background: linear-gradient(135deg, #fc3f1d, #e6b800); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; white-space: nowrap; }
.hero-lead { font-size: 20px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.65; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 0; margin-top: 4px; }
.hero-cta .btn-lg { animation: none; }
.hero-link-secondary {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.hero-link-secondary:hover { color: var(--accent-dark); text-decoration: none; }
.hero-info-panel {
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: 8px 0;
  position: relative;
}
.hero-info-panel::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(255,204,0,0.08) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
  will-change: transform;
  z-index: -1;
}
.hero-info-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.hero-info-heading img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(230,228,225,0.9);
}
.hero-info-kicker {
  color: #fc3f1d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-info-heading strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}
.hero-info-table {
  display: grid;
  gap: 0;
  margin: 0;
}
.hero-info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(33,32,31,0.10);
}
.hero-info-row:last-child {
  border-bottom: 1px solid rgba(33,32,31,0.10);
}
.hero-info-row dt {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-info-row dt svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: #fc3f1d;
}
.hero-info-row dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.hero-info-rating dd {
  display: grid;
  gap: 5px;
  justify-items: start;
}
.hero-info-rating-value {
  color: #fc3f1d;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.hero-info-rating small {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}
html[dir="rtl"] .hero-info-panel {
  padding-left: 0;
  padding-right: 30px;
  border-left: none;
  border-right: 1px solid rgba(33,32,31,0.16);
}
.hero-widget {
  background: #fff; border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-lg); min-width: 0; text-align: left;
  border: 1px solid rgba(230,228,225,0.9);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-widget:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.hero-trust-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.hero-trust-head img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.hero-trust-kicker {
  color: #fc3f1d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-trust-head strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}
.hero-widget .num-label { font-size: 13px; color: var(--text-muted); margin-top: 3px; line-height: 1.35; }
.hero-rating-box { margin-top: 0; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hero-rating-main { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: center; }
.hero-rating-value { font-size: 46px; font-weight: 800; color: #fc3f1d; line-height: 1; letter-spacing: 0; }
.hero-trust-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.hero-trust-metrics div {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #faf9f7;
}
.hero-trust-metrics span {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.hero-trust-metrics small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}
.hero-verified-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-verified-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}
.hero-verified-list svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: #fc3f1d;
}

.trust-bar {
  background: #f5f4f2;
  color: #21201f;
  padding: 12px 0;
  border-bottom: 1px solid #e6e4e1;
  overflow: hidden;
  position: relative;
}
.trust-bar-inner { overflow: hidden; }
.trust-bar-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: trust-marquee 30s linear infinite;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #21201f;
  flex-shrink: 0;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: #fc3f1d;
  flex-shrink: 0;
}
@keyframes trust-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.toc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
  margin: 0 0 30px 0;
}
.toc-layout-title {
  grid-column: 1 / -1;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 18px 0;
  padding: 0;
}
.toc {
  display: block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px; margin: 0;
  box-shadow: var(--shadow-sm);
}
.toc h3 { display: flex; align-items: center; gap: 8px; font-size: 17px; margin-bottom: 12px; color: #21201f; }
.toc h3 svg { width: 18px; height: 18px; color: #fc3f1d; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 6px; line-height: 1.45; }
.toc a { color: #fc3f1d; font-size: 15px; transition: color var(--transition); }
.toc a:hover { color: #e6b800; }

.sidebar-rating-card {
  display: grid;
  gap: 14px;
  align-content: start;
  width: 320px;
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.rating-big-num { font-size: 52px; font-weight: 800; background: linear-gradient(135deg, #fc3f1d, #ffcc00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; text-align: center; }
.rating-stars { font-size: 20px; color: var(--accent); text-align: center; letter-spacing: 1px; }
.rating-stars svg { width: 22px; height: 22px; transition: transform 0.2s ease; }
.sidebar-rating-card:hover .rating-stars svg { transform: scale(1.08); }
.rating-votes { text-align: center; color: var(--text-muted); font-size: 13px; }
.rating-bar-list { display: grid; gap: 8px; margin: 8px 0; }
.rating-bar-row { display: grid; grid-template-columns: 20px 1fr auto; gap: 10px; align-items: center; font-size: 13px; color: var(--text-muted); }
.rating-bar { background: var(--border); height: 8px; border-radius: 4px; overflow: hidden; }
.rating-bar > div { height: 100%; border-radius: 4px; background: #ffcc00; }
.sidebar-rating-card .btn { width: 100%; background: #ffcc00; color: #21201f; font-weight: 600; }
.sidebar-rating-card .btn:hover { background: #3a3836; }
.rating-mini-stats { display: flex; justify-content: space-around; font-size: 13px; color: var(--text-muted); text-align: center; padding-top: 14px; border-top: 1px solid var(--border); }
.rating-mini-stats b { display: block; color: var(--text); font-size: 16px; font-weight: 700; }
.rating-security { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.rating-security svg { width: 16px; height: 16px; color: var(--accent); }
.sidebar-rating-card .rating { text-align: center; margin: 8px 0; }
.jq-stars, .jq-star, .rating svg { cursor: pointer; }
.rating-hint {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.rating-hint:hover { color: var(--accent-dark); }

.desc-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 44px; align-items: start; margin-top: 24px; }
.desc-grid.no-sidebar { grid-template-columns: minmax(0, 1fr); }
.desc-text { position: relative; }
.desc-text p { color: #333; line-height: 1.75; }
.desc-highlight {
  background: transparent;
  border-left: 4px solid #ffcc00;
  border-radius: 0;
  padding: 20px 22px; margin: 22px 0; font-size: 15px;
}
.description-faded::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
}
.quick-facts {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
}
.quick-facts h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #fc3f1d;
  display: flex;
  align-items: center;
  gap: 6px;
}
.quick-facts table { font-size: 14px; }
.quick-download { width: 100%; justify-content: center; margin-top: 4px; }
.screenshots-sidebar {
  min-width: 0;
  position: sticky;
  top: 18px;
}
.screenshots-sidebar-head {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.screenshots-sidebar-head h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
}
.screenshots-sidebar-head h3 svg {
  width: 18px;
  height: 18px;
  color: #fc3f1d;
}
.screenshots-sidebar-head p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.screenshots-rail {
  display: grid;
  gap: 14px;
}
.screenshot-preview {
  margin: 0;
}
.screenshots-sidebar .screenshot-card {
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.screenshots-sidebar .screenshot-card img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}
.screenshot-preview figcaption {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}
.media-figure { margin: 24px 0 0; text-align: center; }
.media-figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.media-figure figcaption { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.accordion-item {
  border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow var(--transition);
}
.accordion-item:hover { box-shadow: var(--shadow); }
.accordion-btn {
  width: 100%; background: #fff; border: none; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 16px; font-weight: 700; color: var(--text);
  transition: all var(--transition); text-align: left; gap: 12px;
}
.accordion-btn span { display: flex; align-items: center; gap: 10px; }
.accordion-btn span svg { color: #fc3f1d; }
.accordion-btn:hover { background: var(--bg-alt); }
.accordion-btn[aria-expanded="true"] { background: linear-gradient(135deg, #fffde7, #fff9c4); color: #21201f; border-bottom: 1px solid var(--border); }
.accordion-icon { font-size: 20px; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-style: normal; }
.accordion-btn[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }

.feature-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; margin-top: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 15px; line-height: 1.5; padding: 4px 0; }
.feature-list li::before { content: "✓"; color: var(--accent); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.requirements-grid h3 { color: #fc3f1d; margin-bottom: 12px; }
.table-scroll { overflow-x: auto; }
.os-download-scroll { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.os-download-table {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.os-download-table th {
  background: #21201f;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.os-download-table td {
  vertical-align: middle;
  color: var(--text);
  font-size: 14px;
}
.os-download-table tr:nth-child(even) td { background: #faf9f7; }
.os-download-table tr:hover td { background: #fffde7; }
.os-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.os-name svg {
  width: 18px;
  height: 18px;
  color: #fc3f1d;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.status-pill.is-ok {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-pill.is-muted {
  background: #f5f5f5;
  color: #9e9e9e;
}
.table-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 18px;
  background: #ffcc00;
  color: #21201f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.table-download-btn:hover {
  background: #e6b800;
  color: #21201f;
  text-decoration: none;
}
.table-download-btn.is-disabled {
  background: #f1f0ee;
  color: #817d77;
  cursor: default;
}
.compare-table th:first-child { background: linear-gradient(135deg, #37474f, #455a64); color: #fff; }
.compare-table .winner { background: #fffde7; font-weight: 700; }
.compare-table .feature-col { font-weight: 600; color: var(--text); }

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.screenshot-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}
.screenshot-card:hover { text-decoration: none; }
.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}

.steps-list { list-style: none; padding: 0; counter-reset: steps; position: relative; }
.steps-list::before {
  content: ""; position: absolute; left: 19px; top: 20px; bottom: 40px;
  width: 2px; background: linear-gradient(to bottom, #ffcc00, #fc3f1d);
  border-radius: 2px;
}
.step-item {
  counter-increment: steps; display: flex; gap: 20px; margin-bottom: 26px;
  align-items: flex-start; position: relative;
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #ffcc00, #fc3f1d);
  color: #fff; font-weight: 900; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(255,204,0,0.3);
  position: relative; z-index: 1;
}
.step-body h4 { margin-bottom: 4px; }
.step-body p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.6; }

.version-item { display: flex; gap: 20px; margin-bottom: 22px; align-items: flex-start; }
.version-tag {
  flex-shrink: 0; background: #ffcc00; color: #21201f;
  border-radius: var(--radius); padding: 5px 14px; font-weight: 600; font-size: 14px;
  box-shadow: 0 2px 6px rgba(255,204,0,0.25);
}
.version-tag.old { background: linear-gradient(135deg, #90a4ae, #78909c); color: #fff; box-shadow: none; }
.version-body h4 { margin-bottom: 4px; }
.version-body h4 a { color: inherit; text-decoration: none; border-bottom: 1px dashed var(--border); }
.version-body ul { margin: 0; }
.program-version-list {
  display: grid;
  gap: 12px;
}
.program-version-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.program-version-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.program-version-main h3 {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.25;
}
.version-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}
.program-version-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}
.program-version-meta b {
  color: var(--text);
  font-weight: 600;
}
.program-version-action {
  justify-self: end;
}

.download-section-redesign { background: #f5f4f2; padding: 64px 0; }
.download-block-redesign {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.download-block-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.download-block-lead { color: #626060; font-size: 16px; margin-bottom: 20px; }
.download-block-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: #626060;
}
.download-block-meta span { display: inline-flex; align-items: center; gap: 6px; }
.download-block-meta svg { width: 16px; height: 16px; color: #21201f; }
.download-block-action { text-align: center; }
.download-btn-main {
  background: #ffcc00;
  color: #21201f;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(255,204,0,0.35);
  transition: all 0.2s ease;
}
.download-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,204,0,0.45);
}
.download-block-disclaimer {
  font-size: 12px;
  color: #9e9e9e;
  margin-top: 12px;
  max-width: 260px;
}
.download-block-alts {
  margin-top: 14px;
  font-size: 13px;
}
.download-block-alts a {
  color: #626060;
  text-decoration: underline;
  text-decoration-color: #e6e4e1;
}

@media (max-width: 640px) {
  .download-block-redesign { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .download-block-action { order: -1; }
}

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 16px; color: var(--text);
  background: none; border: none; width: 100%; text-align: left; padding: 0; gap: 12px;
  transition: color var(--transition);
}
.faq-icon {
    font-size: 20px;
    flex-shrink: 0;
    color: #ffcc00;
    transition: transform 0.3s ease;
    font-style: normal;
    font-weight: 300;
}
.faq-q[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}


.final-cta {
  background:#fffde7;
  border-top:2px solid #ffcc00;
  border-bottom:2px solid #ffcc00;
}
.final-cta-inner { text-align:center; max-width:640px; margin:0 auto; }
.final-cta h2 { font-size:30px; margin-bottom:14px; }
.final-cta p { font-size:17px; color:var(--text-muted); margin-bottom:28px; }
.final-cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.final-cta .final-cta-meta { font-size:13px; color:var(--text-muted); margin-top:16px; margin-bottom: 0; }

.rating-stars svg { display: inline-block; vertical-align: middle; }
.reviews-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.review-item:hover { box-shadow: var(--shadow-md); }
.review-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.review-meta strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.review-meta span {
  font-size: 12px;
  color: var(--text-muted);
}
.review-stars {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.review-stars svg {
  width: 18px;
  height: 18px;
}
.review-item-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.verified { font-size: 12px; color: #fc3f1d; margin-top: 10px; display: flex; align-items: center; gap: 4px; font-weight: 600; }
.rating-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  margin-top:28px;
  margin-bottom:28px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:32px;
  box-shadow: var(--shadow);
}
.rating-summary-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.rating-summary-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #fffde7;
  color: #fc3f1d;
}
.rating-summary-icon svg {
  width: 22px;
  height: 22px;
}
.rating-summary h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.rating-summary p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.rating-summary-score {
  min-width: 120px;
  text-align:center;
}
.rating-big { font-size:56px; font-weight:800; color:var(--accent-danger); line-height: 1; }
.rating-count { color:var(--text-muted); font-size:13px; line-height: 1.35; }
.rating-summary-meta {
  display: grid;
  gap: 10px;
  min-width: 150px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}
.rating-summary-meta b {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
}

.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, #3d3c3a, #4a4845);
  color: #fff; z-index: 200;
  padding: 14px 20px; box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  align-items: center; justify-content: space-between; gap: 12px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.sticky-bar p { margin: 0; font-size: 14px; font-weight: 600; }
.sticky-bar .btn { padding: 10px 22px; font-size: 15px; }

footer {
  background: linear-gradient(180deg, #2d2c2a 0%, #21201f 100%);
  color: #9e9e9e; padding: 48px 0 24px; font-size: 14px;
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-desc { font-size: 13px; line-height: 1.6; }
footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul a { color: #9e9e9e; font-size: 13px; transition: color var(--transition); }
footer ul a:hover { color: #ffcc00; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; }
.last-updated { font-size: 12px; color: #9e9e9e; }

.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 150;
  width: 44px; height: 44px; border-radius: 50%;
  background: #ffcc00; color: #21201f; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #fc3f1d; color: #fff; }

a:focus-visible, button:focus-visible { outline:2px solid #ffcc00; outline-offset:2px; border-radius:4px; }
.accordion-btn:focus-visible, .faq-q:focus-visible { outline:2px solid #ffcc00; outline-offset:-2px; }

/* ===== APP PAGE REDESIGN ===== */
.badge-glass {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero h1 { letter-spacing: -0.02em; }

.trust-item-glass {
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  box-shadow: none;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  position: sticky;
  top: 100px;
  align-self: start;
}
.toc-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: #626060;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  background: #fafafa;
  border: 1px solid var(--border);
  position: relative;
}
.toc-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.15s ease, width 0.15s ease;
}
.toc-link:hover {
  background: #f5f3f1;
  color: #21201f;
  text-decoration: none;
}
.toc-link:hover::before {
  width: 4px;
  background: #ffcc00;
}
.toc-link.active {
  background: #ffffff;
  color: #21201f;
  font-weight: 600;
}
.toc-link.active::before {
  width: 4px;
  background: #ffcc00;
}

.screenshot-card-redesign {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.screenshot-card-redesign:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.screenshot-card-redesign img {
  transition: transform 0.4s ease;
}
.screenshot-card-redesign:hover img {
  transform: scale(1.05);
}

.screenshots-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.screenshot-main-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: block;
}
.screenshot-main-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.screenshot-main-card img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 10; object-fit: cover; }

.accordion-item-redesign {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: none;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.accordion-item-redesign:hover {
  border-color: var(--accent);
  transform: none;
}
.accordion-btn-redesign {
  background: #fff;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-lg);
}
.accordion-btn-redesign[aria-expanded="true"] {
  background: #fafafa;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: none;
}
.accordion-btn-redesign:focus-visible { outline: 2px solid rgba(33,32,31,0.25); outline-offset: -2px; }
.accordion-btn-redesign span svg { width: 20px !important; height: 20px !important; stroke-width: 2; }
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease, padding 0.35s ease;
  overflow: hidden;
  padding: 0 22px;
}
.accordion-body.open {
  grid-template-rows: 1fr;
  padding: 0 22px 18px;
  background: #fafafa;
}
.accordion-body > ul { min-height: 0; margin-top: 0; margin-bottom: 0; }

.req-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.req-table { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; }
.req-table thead { background: #fff; border-bottom: 2px solid #21201f; }
.req-table thead th { color: #21201f !important; font-weight: 600; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; padding: 16px 20px; }
.req-table th { padding: 16px 20px; text-align: left; font-weight: 700; color: var(--text); border-bottom: none; }
.req-table td { padding: 16px 20px; font-size: 15px; border-bottom: 1px solid #f0eeec; color: var(--text-muted); }
.req-table td:first-child { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text); }
.req-table td:first-child svg { width: 20px; height: 20px; color: #21201f; flex-shrink: 0; }
.req-table tbody tr:nth-child(even) { background: transparent; }
.req-table tbody tr:hover { background: #fafafa; }

.os-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.os-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.os-table thead { background: #fff; border-bottom: 2px solid #21201f; }
.os-table th { color: #21201f; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; padding: 14px 16px; text-align: left; }
.os-table td { padding: 14px 16px; border-bottom: 1px solid #f0eeec; vertical-align: middle; }
.os-table tbody tr:hover { background: #fafafa; }
.os-table tbody tr.is-unavailable { opacity: 0.5; }
.os-table tbody tr.is-unavailable td { color: #9e9e9e; }
.os-table-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.os-table-name svg { width: 18px; height: 18px; color: #21201f; }
.os-table-program { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #21201f; font-size: 14px; }
.os-table-icon { width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
.os-table td:nth-child(3),
.os-table td:nth-child(4),
.os-table td:nth-child(5) { white-space: nowrap; }
.status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
.status-dot.is-ok { background: #4caf50; }
.status-dot.is-muted { background: #bdbdbd; }
.os-download-btn { background: #ffcc00; color: #21201f; padding: 8px 16px; font-size: 13px; }
.os-download-btn:hover { background: #3a3836; }

.stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 32px;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.stepper-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stepper-item.is-active .stepper-node {
  background: #21201f;
  border-color: #21201f;
  color: #fff;
}
.stepper-node {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: #fff;
  color: var(--text);
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: none;
  position: relative;
}
.stepper-node i { display: none; }
.stepper-num { position: relative; z-index: 1; font-weight: 700; }
.stepper-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.stepper-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.stepper-content p { font-size: 14px; color: #555; line-height: 1.55; }
@media (max-width: 768px) {
  .stepper { flex-direction: column; gap: 32px; }
  .stepper::before {
    top: 0; bottom: 0; left: 22px; right: auto; width: 2px; height: auto;
  }
  .stepper-item { display: flex; text-align: left; gap: 16px; }
  .stepper-node { margin: 0; flex-shrink: 0; }
}
.stepper-item:first-child::before,
.stepper-item:last-child::after {
  content: '';
  position: absolute;
  background: var(--bg);
  z-index: 2;
}
.stepper-item:first-child::before {
  top: 20px; left: 0; width: 100%; height: 2px;
  transform: translateX(-100%);
}
.stepper-item:last-child::after {
  top: 20px; right: 0; width: 100%; height: 2px;
  transform: translateX(100%);
}
@media (max-width: 768px) {
  .stepper-item:first-child::before {
    top: 0; left: 22px; width: 2px; height: 100%;
    transform: translateY(-100%);
  }
  .stepper-item:last-child::after {
    top: auto; bottom: 0; left: 22px; width: 2px; height: 100%;
    transform: translateY(100%);
  }
}

.version-list { display: flex; flex-direction: column; gap: 8px; }
.version-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.version-item-header {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  font-size: 14px;
  cursor: pointer;
}
.version-item-header:hover { background: #fafafa; }
.version-item-name { font-weight: 700; color: #21201f; }
.version-item-date { color: #626060; }
.version-item-size { color: #626060; font-size: 13px; }
.version-item-status {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
}
.version-item-link {
  color: #fc3f1d;
  font-weight: 600;
  font-size: 13px;
}
.version-item-changelog {
  padding: 0 18px 14px;
  font-size: 13px;
  color: #626060;
  border-top: 1px solid #f5f4f2;
}
.version-item-changelog ul { margin: 10px 0 0; padding-left: 18px; }
.version-item-changelog li { margin-bottom: 4px; }
.version-changelog-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.version-changelog-list li {
    padding: 3px 0 3px 16px;
    position: relative;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
}
.version-changelog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.version-changelog-list.collapsed li:nth-child(n+4) {
    display: none;
}
.version-changelog-toggle {
    color: var(--accent-dark);
    font-size: 12px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 2px 0 0;
    margin: 0;
    display: inline-block;
    font-weight: 600;
}
.version-changelog-toggle:hover {
    color: var(--accent-danger);
    text-decoration: underline;
}

.faq-item-redesign {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border-bottom: none;
}
.faq-item-redesign:hover { box-shadow: var(--shadow); }
.faq-q-redesign {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: color var(--transition);
}
.faq-q-redesign:hover { color: #fc3f1d; }
.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease, padding 0.35s ease;
    overflow: hidden;
    padding: 0 22px;
}
.faq-a.open {
    grid-template-rows: 1fr;
    padding: 0 22px 18px;
}
.faq-a > div { min-height: 0; }

.final-cta-redesign {
  background: #21201f;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-redesign::before { display: none; }
.final-cta-inner-redesign {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-redesign h2 { color: #fff; font-size: 32px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
.final-cta-redesign p { color: #9e9e9e; font-size: 16px; margin-bottom: 28px; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.final-cta-redesign .btn {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(255,204,0,0.4);
}
.final-cta-redesign .btn:hover { background: var(--accent-dark); }
.final-cta-secondary {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.final-cta-secondary:hover { color: #fff; text-decoration: underline; }
.final-cta-meta { color: rgba(255,255,255,0.6); margin-top: 16px; font-size: 14px; margin-bottom: 0; }

/* ===== END APP PAGE REDESIGN ===== */

/* Catalog and category pages */
.dc-catalog-redo,
.dc-category-redo {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}
.dc-home-hero,
.dc-category-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 34px;
  align-items: center;
  background: linear-gradient(160deg, #faf9f7 0%, #f5f4f2 38%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.dc-home-hero {
  grid-template-columns: minmax(0, 1fr) 260px;
  padding: 48px;
}
.dc-category-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 38px;
  margin-bottom: 28px;
}
.dc-home-hero::before,
.dc-category-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,0,0.18) 0%, rgba(255,204,0,0) 70%);
  pointer-events: none;
}
.dc-home-hero-copy,
.dc-home-hero-widget,
.dc-category-hero > * {
  position: relative;
  z-index: 1;
}
.dc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 1px solid rgba(255,204,0,0.45);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.dc-badge i,
.dc-badge svg,
.dc-trust-bar i,
.dc-trust-bar svg,
.dc-btn i,
.dc-btn svg {
  width: 16px;
  min-width: 16px;
  height: 16px;
  color: #fc3f1d;
}
.dc-page-kicker {
  margin: 0 0 8px;
  color: #fc3f1d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dc-page-title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.12;
}
.dc-page-intro {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
}
.dc-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.dc-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.dc-btn-primary {
  background: #ffcc00;
  color: #21201f;
  box-shadow: 0 4px 16px rgba(255,204,0,0.28);
}
.dc-btn-primary:hover {
  background: #e6b800;
  color: #21201f;
  box-shadow: 0 8px 24px rgba(255,204,0,0.36);
}
.dc-btn-primary i {
  color: #21201f;
}
.dc-btn-secondary,
.dc-btn-outline {
  background: #fff;
  color: #21201f;
  border-color: var(--border);
  box-shadow: none;
}
.dc-btn-secondary:hover,
.dc-btn-outline:hover {
  border-color: #ffcc00;
  background: #fffde7;
  color: #21201f;
}
.dc-btn-lg {
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 24px;
  font-size: 16px;
}
.dc-home-hero-widget,
.dc-category-counter,
.dc-stat-card,
.dc-soft-panel,
.dc-side-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.dc-home-hero-widget {
  padding: 30px 24px;
  text-align: center;
}
.dc-home-big-num {
  color: #fc3f1d;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.dc-home-num-label {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.dc-home-widget-rating {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.dc-home-widget-rating span {
  display: block;
  color: #ffcc00;
  font-size: 20px;
  letter-spacing: 1px;
}
.dc-home-widget-rating small {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}
.dc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin: 24px 0;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.dc-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}
.dc-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}
.dc-stat-card {
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dc-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffcc00, #fc3f1d);
}
.dc-stat-num {
  color: #fc3f1d;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}
.dc-stat-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.dc-catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.dc-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
}
.dc-section-heading-main {
  margin-bottom: 22px;
}
.dc-section-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.22;
}
.dc-section-title a {
  color: inherit;
  text-decoration: none;
}
.dc-section-title a:hover {
  color: #fc3f1d;
  text-decoration: none;
}
.dc-section-link {
  flex-shrink: 0;
  color: #fc3f1d;
  font-size: 14px;
  font-weight: 800;
}
.dc-category-section {
  margin-bottom: 28px;
}
.dc-category-section + .dc-category-section {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 8px;
}
.dc-app-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}
.dc-list-app {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background var(--transition);
}
.dc-list-app:last-child {
  border-bottom: none;
}
.dc-list-app:hover {
  background: #fffde7;
}
.dc-list-app.is-compact {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 13px 15px;
}
.dc-list-app-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.dc-list-app.is-compact .dc-list-app-icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
}
.dc-list-app-main {
  min-width: 0;
}
.dc-list-app-title {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.25;
}
.dc-list-app-title a {
  color: var(--text);
  text-decoration: none;
}
.dc-list-app-title a:hover {
  color: #fc3f1d;
  text-decoration: none;
}
.dc-list-app-brief {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.dc-list-app-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
}
.dc-list-app-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.dc-list-app-size {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.dc-side-panel {
  position: sticky;
  top: 18px;
  padding: 20px;
}
.dc-side-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
}
.dc-top-list {
  display: grid;
  gap: 10px;
}
.dc-top-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}
.dc-top-list-item:hover {
  background: #fffde7;
  border-color: rgba(255,204,0,0.55);
  text-decoration: none;
}
.dc-top-list-item img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  object-fit: contain;
  background: #fff;
}
.dc-top-list-item b {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}
.dc-top-list-item small {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
}
.dc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 13px;
}
.dc-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.dc-breadcrumb li + li::before {
  content: "/";
  color: #b3b0ab;
}
.dc-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}
.dc-breadcrumb a:hover {
  color: #fc3f1d;
  text-decoration: none;
}
.dc-category-counter {
  min-width: 150px;
  padding: 22px 24px;
  text-align: center;
}
.dc-category-counter strong {
  display: block;
  color: #fc3f1d;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}
.dc-category-counter span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.dc-empty-state {
  margin: 0;
  padding: 28px;
  color: var(--text-muted);
  text-align: center;
}
.d-none {
  display: none !important;
}

@media (max-width: 768px) {
  .req-cards-grid { grid-template-columns: 1fr; }
  .install-timeline { padding-left: 24px; }
  .install-step-num { left: -24px; width: 38px; height: 38px; }
  .final-cta-redesign h2 { font-size: 26px; }
  .dc-catalog-redo,
  .dc-category-redo { padding: 24px 18px 56px; }
  .dc-home-hero,
  .dc-category-hero {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }
  .dc-page-title { font-size: 30px; }
  .dc-page-intro { font-size: 16px; }
  .dc-home-hero-widget { display: none; }
  .dc-stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dc-catalog-layout { grid-template-columns: 1fr; }
  .dc-side-panel { position: static; }
  .dc-list-app {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .dc-list-app-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 61px;
  }
  .dc-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .dc-category-counter {
    width: 100%;
    min-width: 0;
  }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero { min-height: auto; padding: 20px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 17px; }
  .hero-widget { display: block; }
  .hero-info-panel {
    border-left: none;
    border-top: 1px solid rgba(33,32,31,0.14);
    padding-left: 0;
    padding-top: 24px;
  }
  html[dir="rtl"] .hero-info-panel {
    border-right: none;
    padding-right: 0;
  }
  .hero h1 { font-size: 28px; }
  .hero { padding: 24px 0 40px; }
  .hero-info-panel::before { width: 300px; height: 300px; }
  .hero-inner::before { width: 250px; height: 250px; }
  .trust-bar-track {
    gap: 26px;
    animation: trust-marquee 30s linear infinite;
  }
  .toc-layout { grid-template-columns: 1fr; }
  .desc-grid { grid-template-columns: 1fr; }
  .screenshots-sidebar { position: static; }
  .screenshots-rail { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: 1fr; }
  .download-cards { grid-template-columns: 1fr; }
  .program-version-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .program-version-action {
    justify-self: stretch;
  }
  .os-download-table,
  .os-download-table thead,
  .os-download-table tbody,
  .os-download-table th,
  .os-download-table td,
  .os-download-table tr {
    display: block;
  }
  .os-download-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }
  .os-download-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--border);
  }
  .os-download-table tr:last-child {
    border-bottom: none;
  }
  .os-download-table td {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    padding: 7px 0;
    border-bottom: none;
  }
  .os-download-table td::before {
    content: attr(data-label);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
  }
  .rating-summary {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .rating-summary-score {
    text-align: left;
  }
  .rating-summary-meta {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  header nav[role="navigation"] { display: none; }
  .header-search { display: none; }
  .hamburger { display: flex; }
  .feature-list { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  h2 { font-size: 24px; }
  .section { padding: 52px 0; }
  .btn-lg { padding: 16px 32px; font-size: 17px; }
  body { padding-bottom: 70px; }
  .scroll-top { bottom: 76px; }
  .steps-list::before { display: none; }
}
@media (max-width: 480px) {
  .dc-home-hero,
  .dc-category-hero { padding: 26px 20px; }
  .dc-home-hero-actions,
  .dc-list-app-actions { padding-left: 0; }
  .dc-btn { width: 100%; }
  .dc-stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dc-stat-card { padding: 18px 12px; }
  .dc-stat-num { font-size: 24px; }
  .dc-list-app { gap: 12px; padding: 15px; }
  .dc-trust-bar { justify-content: flex-start; }
  .hero-badges { gap: 6px; }
  .container { padding: 0 18px; }
  .hero-cta .btn,
  .sticky-bar .btn { width: 100%; }
  .hero-info-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero-trust-metrics { grid-template-columns: 1fr; }
  .toc { padding: 22px; }
  .sidebar-rating-card { padding: 20px; }
  .os-download-table td { grid-template-columns: 1fr; gap: 3px; }
  .program-version-main { grid-template-columns: 1fr; }
  .rating-summary { padding: 20px; }
  .rating-summary-copy { grid-template-columns: 1fr; }
  .rating-summary-meta { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-in,
  .animate-in.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-cta .btn-lg {
    animation: none;
  }
  .trust-bar-track {
    animation: none !important;
    width: auto;
    flex-wrap: wrap;
  }
  .trust-item-clone { display: none !important; }
}

@media (max-width: 640px) {
  .hero-info { flex-direction: column; gap: 8px; }
}

/* Доработка стиля продуктовой страницы: премиальный hero, preview продукта и мобильный CTA. */
:root {
  --product-accent: #18a058;
  --product-accent-soft: rgba(24,160,88,0.12);
  --product-ink: #15171a;
}

.hero {
  background:
    linear-gradient(135deg, #fbfcfb 0%, #ffffff 46%, #eef5f1 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
}

.hero-inner::before,
.hero-info-panel::before {
  display: none;
}

.hero-left {
  max-width: 660px;
  position: relative;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 30px;
  color: var(--product-ink);
}

.hero h1 span {
  background: linear-gradient(135deg, #f15a24, #f2a900);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #565b60;
}

.badge {
  border-color: rgba(24,160,88,0.18);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 28px rgba(22,38,31,0.06);
}

.hero-cta {
  gap: 16px;
}

.hero-cta .btn-lg {
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(255,204,0,0.28);
}

.hero-link-secondary {
  min-height: 44px;
  padding: 0 4px;
  white-space: nowrap;
}

.hero-left::after {
  content: "";
  display: block;
  width: min(520px, 100%);
  aspect-ratio: 16 / 6.2;
  margin-top: 30px;
  border: 1px solid rgba(21,23,26,0.10);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(21,23,26,0.05), rgba(21,23,26,0.02)),
    url("/images/scr-camtasia-studio-0-800.webp") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(21,23,26,0.13);
}

.hero-info-panel {
  padding: 24px;
  border: 1px solid rgba(21,23,26,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 22px 60px rgba(21,23,26,0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-info-heading img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(24,160,88,0.18);
}

.hero-info-kicker {
  color: var(--product-accent);
}

.hero-info-row {
  padding: 10px 0;
}

.hero-info-row dt svg,
.trust-icon {
  color: var(--product-accent);
}

.trust-bar {
  background: #ffffff;
}

.trust-bar-inner {
  max-width: 1040px;
}

.trust-item {
  white-space: nowrap;
}

.trust-bar-track {
  animation: none;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.trust-item-clone {
  display: none !important;
}

.screenshots-grid-main {
  gap: 18px;
}

.screenshot-main-card {
  border-radius: 18px;
  border: 1px solid rgba(21,23,26,0.10);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21,23,26,0.08);
}

.screenshot-main-card img {
  display: block;
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero {
    padding: 24px 0 34px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 28px;
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-lead {
    font-size: 18px;
    margin-bottom: 28px;
    max-width: calc(100vw - 36px);
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: calc(100vw - 36px);
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-link-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-left::after {
    width: calc(100vw - 36px);
    max-width: 100%;
    aspect-ratio: 16 / 8;
    margin-top: 24px;
    border-radius: 16px;
  }

  .hero-info-panel {
    width: calc(100vw - 36px);
    max-width: 100%;
    border-top: 1px solid rgba(21,23,26,0.10);
    padding: 20px;
  }

  .trust-bar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .trust-bar-inner {
    overflow: visible;
    padding: 0 18px;
  }

  .trust-bar-track {
    width: 100%;
    flex-wrap: nowrap;
    gap: 18px;
    animation: none;
  }

  .trust-item-clone {
    display: none !important;
  }

  .sticky-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 16px;
    padding: 10px 14px;
    gap: 10px;
  }

  .sticky-bar p {
    min-width: 0;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-bar .btn {
    width: auto;
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 14px;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-link-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-info-panel {
    margin-left: -2px;
    margin-right: -2px;
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 390px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero h1 span {
    display: block;
  }

  .hero-lead,
  .hero-cta,
  .hero-left::after,
  .hero-info-panel {
    width: 100%;
    max-width: 100%;
  }

  .sticky-bar {
    width: calc(390px - 20px);
    max-width: calc(100vw - 20px);
    right: auto;
  }
}

/* Лёгкий modern style layer: структура страницы сохранена, визуальный шум уменьшен. */
:root {
  --modern-bg: #f7f8f6;
  --modern-surface: #ffffff;
  --modern-surface-soft: #fbfcfa;
  --modern-line: rgba(20, 24, 28, 0.10);
  --modern-line-soft: rgba(20, 24, 28, 0.07);
  --modern-text: #171a1f;
  --modern-muted: #66707a;
  --modern-green: #16a064;
  --modern-orange: #f26b1d;
  --modern-yellow: #ffcf24;
  --modern-shadow: 0 10px 28px rgba(22, 30, 38, 0.07);
  --modern-shadow-soft: 0 6px 18px rgba(22, 30, 38, 0.045);
}

body {
  background: var(--modern-bg);
  color: var(--modern-text);
}

.container {
  max-width: 1080px;
}

header[role="banner"] {
  background: #171819;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.header-inner {
  max-width: 1080px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.hero {
  padding: 34px 0 58px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 48%, #f2f7f3 100%);
}

.breadcrumb {
  margin-bottom: 22px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: var(--modern-text);
  font-size: 42px;
  letter-spacing: 0;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--modern-orange), #f2a10d);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 50px;
  align-items: center;
}

.hero-left {
  max-width: 650px;
}

.hero-badges {
  margin-bottom: 28px;
}

.badge {
  background: #ffffff;
  border: 1px solid rgba(22,160,100,0.18);
  border-radius: 999px;
  box-shadow: none;
  color: #25302a;
  padding: 7px 15px;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #4d5965;
  font-size: 20px;
  line-height: 1.62;
}

.btn {
  border-radius: 14px;
  box-shadow: none;
}

.btn:hover {
  transform: none;
}

.hero-cta .btn-lg {
  min-height: 58px;
  border-radius: 16px;
  background: var(--modern-yellow);
  box-shadow: 0 14px 28px rgba(255,207,36,0.22);
}

.hero-cta .btn-lg:hover {
  background: #f5c400;
  box-shadow: 0 12px 24px rgba(255,207,36,0.26);
}

.hero-link-secondary {
  color: #5d6874;
}

.hero-left::after {
  width: min(500px, 100%);
  aspect-ratio: 16 / 6.8;
  margin-top: 28px;
  border-radius: 14px;
  border: 1px solid var(--modern-line);
  box-shadow: 0 18px 36px rgba(22, 30, 38, 0.10);
}

.hero-info-panel {
  padding: 22px;
  border: 1px solid var(--modern-line);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--modern-shadow-soft);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-info-heading {
  margin-bottom: 12px;
}

.hero-info-heading img {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(22,160,100,0.15);
}

.hero-info-kicker {
  color: var(--modern-green);
}

.hero-info-heading strong {
  font-size: 18px;
  color: var(--modern-text);
}

.hero-info-row {
  padding: 10px 0;
  border-top-color: var(--modern-line-soft);
}

.hero-info-row:last-child {
  border-bottom-color: var(--modern-line-soft);
}

.hero-info-row dt {
  color: #65717c;
}

.hero-info-row dt svg,
.trust-icon {
  color: var(--modern-green);
}

.trust-bar {
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--modern-line-soft);
}

.trust-bar-track {
  gap: 14px 28px;
  justify-content: center;
}

.trust-item {
  color: #344038;
  font-size: 14px;
  font-weight: 600;
}

.section,
.section-alt {
  background: var(--modern-bg);
}

.toc-layout {
  gap: 26px;
}

.toc h2,
.section h2,
.section-alt h2 {
  color: var(--modern-text);
}

.toc a,
.toc-item,
.accordion-item,
.accordion-item-redesign,
.program-version-row,
.sidebar-rating-card,
.download-block-redesign,
.rating-summary {
  border-color: var(--modern-line-soft);
  border-radius: 14px;
  background: var(--modern-surface);
  box-shadow: none;
}

.toc a:hover,
.toc-item:hover,
.accordion-item:hover,
.accordion-item-redesign:hover,
.program-version-row:hover {
  border-color: rgba(22,160,100,0.22);
  background: var(--modern-surface-soft);
}

.sidebar-rating-card {
  box-shadow: var(--modern-shadow-soft);
}

.rating-big-num,
.rating-summary-score strong,
.hero-rating-value {
  color: var(--modern-orange);
}

.screenshots-grid-main {
  gap: 16px;
}

.screenshot-main-card {
  border-radius: 14px;
  border: 1px solid var(--modern-line-soft);
  box-shadow: none;
}

.screenshot-main-card:hover {
  box-shadow: var(--modern-shadow-soft);
}

.download-section-redesign,
.final-cta-redesign {
  background: var(--modern-bg);
}

.download-block-redesign,
.final-cta-inner-redesign {
  border: 1px solid var(--modern-line-soft);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--modern-shadow-soft);
}

.download-btn-main {
  border-radius: 14px;
  box-shadow: none;
}

.sticky-bar {
  background: rgba(255,255,255,0.94);
  color: var(--modern-text);
  border: 1px solid rgba(20,24,28,0.10);
  box-shadow: 0 -8px 28px rgba(20,24,28,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sticky-bar .btn {
  background: var(--modern-yellow);
  color: #171819;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero {
    padding: 24px 0 34px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.56;
  }

  .hero-left::after {
    width: 100%;
    aspect-ratio: 16 / 8.2;
    border-radius: 14px;
  }

  .hero-info-panel {
    width: 100%;
    border-radius: 16px;
  }

  .trust-bar {
    overflow-x: hidden;
  }

  .trust-bar-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .trust-item {
    font-size: 13px;
  }

  .sticky-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    left: 10px;
    right: auto;
    bottom: 10px;
    width: 370px;
    max-width: calc(100% - 20px);
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 390px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 24px;
    padding-right: 24px;
  }

  .breadcrumb-inner {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero h1 span {
    display: block;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-link-secondary {
    justify-content: center;
  }

  .trust-bar-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sticky-bar .btn {
    width: 48px;
    height: 44px;
    padding: 0;
    font-size: 0;
    justify-self: end;
  }

  .sticky-bar .btn svg,
  .sticky-bar .btn i {
    width: 17px !important;
    height: 17px !important;
  }
}

/* Финальная лёгкая версия hero: без preview-картинки и без карточки вокруг facts. */
.hero {
  padding-bottom: 52px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 54%, #f6faf7 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: start;
}

.hero-left {
  max-width: 680px;
}

.hero-left::after {
  display: none !important;
  content: none !important;
}

.hero h1 {
  margin-bottom: 26px;
}

.hero-badges {
  margin-bottom: 30px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-info-panel {
  align-self: start;
  display: block;
  margin-top: 10px;
  padding: 8px 0 8px 28px;
  border: 0;
  border-left: 1px solid rgba(22,160,100,0.20);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-info-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 18px;
}

.hero-info-heading img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #eef8f1;
  box-shadow: none;
}

.hero-info-kicker {
  margin-bottom: 3px;
  color: var(--modern-green);
  font-size: 11px;
}

.hero-info-heading strong {
  font-size: 20px;
  line-height: 1.15;
}

.hero-info-table {
  gap: 8px;
}

.hero-info-row,
.hero-info-row:last-child {
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 9px 0;
  border-top: 0;
  border-bottom: 0;
}

.hero-info-row dt {
  color: #68747c;
  font-size: 11px;
}

.hero-info-row dd {
  font-size: 15px;
}

.hero-info-row dt svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
}

.trust-bar {
  background: #fbfcfa;
}

.trust-item {
  color: #3c4640;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-info-panel {
    width: 100%;
    margin-top: 4px;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(22,160,100,0.18);
  }

  .hero-info-row,
  .hero-info-row:last-child {
    grid-template-columns: 90px minmax(0, 1fr);
  }
}

/* Современная система пропорций: структура и контент сохраняются, меняется визуальный слой. */
:root {
  --ui-bg: #f6f8fb;
  --ui-surface: #ffffff;
  --ui-surface-2: #f9fbfd;
  --ui-text: #101828;
  --ui-text-soft: #344054;
  --ui-muted: #667085;
  --ui-line: rgba(16,24,40,0.10);
  --ui-line-soft: rgba(16,24,40,0.07);
  --ui-primary: #2563eb;
  --ui-primary-2: #0f9f7a;
  --ui-cta: #ffca28;
  --ui-cta-hover: #f2bd16;
  --ui-danger-soft: #f97316;
  --ui-radius: 16px;
  --ui-radius-sm: 12px;
  --ui-shadow: 0 14px 34px rgba(16,24,40,0.08);
  --ui-shadow-soft: 0 8px 22px rgba(16,24,40,0.055);
}

html {
  background: var(--ui-bg);
}

body {
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  background: var(--ui-bg);
  color: var(--ui-text);
  font-size: 16px;
  line-height: 1.64;
}

.container,
.header-inner,
.trust-bar-inner {
  max-width: 1110px;
}

header[role="banner"] {
  background: #111418;
}

.header-inner {
  min-height: 70px;
}

.logo {
  font-size: 17px;
}

header nav[role="navigation"] a,
.nav-dropdown-toggle {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.hero {
  padding: 38px 0 56px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 58%, #f3f8fb 100%);
}

.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb-inner {
  color: var(--ui-muted);
  font-size: 12px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 26px;
  color: var(--ui-text);
  font-size: 40px;
  line-height: 1.08;
  font-weight: 820;
}

.hero h1 span {
  color: var(--ui-primary);
  background: linear-gradient(135deg, var(--ui-primary), var(--ui-primary-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 76px;
}

.hero-badges {
  gap: 10px;
  margin-bottom: 30px;
}

.badge {
  padding: 8px 16px;
  border-color: rgba(15,159,122,0.20);
  color: #1f3b34;
  font-size: 14px;
  background: rgba(255,255,255,0.86);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--ui-text-soft);
  font-size: 19px;
  line-height: 1.58;
}

.hero-cta {
  gap: 18px;
}

.hero-cta .btn-lg {
  min-width: 360px;
  min-height: 58px;
  padding: 16px 30px;
  border-radius: var(--ui-radius);
  background: var(--ui-cta);
  color: #111418;
  font-size: 18px;
  font-weight: 760;
  box-shadow: 0 16px 32px rgba(255,202,40,0.20);
}

.hero-cta .btn-lg:hover {
  background: var(--ui-cta-hover);
  box-shadow: 0 12px 26px rgba(255,202,40,0.22);
}

.hero-link-secondary {
  color: var(--ui-muted);
  font-size: 15px;
}

.hero-info-panel {
  margin-top: 4px;
  padding: 8px 0 8px 30px;
  border-left-color: rgba(15,159,122,0.22);
}

.hero-info-heading {
  margin-bottom: 20px;
}

.hero-info-kicker {
  color: var(--ui-primary-2);
  letter-spacing: 0.08em;
}

.hero-info-heading strong {
  color: var(--ui-text);
  font-size: 21px;
  font-weight: 800;
}

.hero-info-heading img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.hero-info-row,
.hero-info-row:last-child {
  grid-template-columns: 88px minmax(0, 1fr);
  padding: 10px 0;
}

.hero-info-row dt {
  color: var(--ui-muted);
}

.hero-info-row dt svg,
.trust-icon {
  color: var(--ui-primary-2);
}

.hero-info-row dd {
  color: var(--ui-text);
  font-size: 15px;
  font-weight: 720;
}

.trust-bar {
  padding: 16px 0;
  background: #ffffff;
  border-top: 1px solid var(--ui-line-soft);
  border-bottom: 1px solid var(--ui-line-soft);
}

.trust-bar-track {
  gap: 12px 30px;
}

.trust-item {
  color: var(--ui-text-soft);
  font-size: 14px;
  line-height: 1.35;
}

.section,
.section-alt,
.download-section-redesign,
.final-cta-redesign {
  background: var(--ui-bg);
}

.section {
  padding: 58px 0;
}

h2 {
  color: var(--ui-text);
  font-size: 27px;
  line-height: 1.18;
  font-weight: 780;
}

h3 {
  color: var(--ui-text);
  font-size: 19px;
}

.section-lead,
.section-byline,
.download-block-lead {
  color: var(--ui-muted);
}

.toc-layout {
  gap: 28px;
}

.toc a,
.toc-item,
.accordion-item,
.accordion-item-redesign,
.program-version-row,
.sidebar-rating-card,
.download-block-redesign,
.final-cta-inner-redesign,
.rating-summary,
.os-download-scroll,
.screenshot-main-card,
.faq-item-redesign {
  border: 1px solid var(--ui-line-soft);
  border-radius: var(--ui-radius);
  background: var(--ui-surface);
  box-shadow: none;
}

.toc a,
.toc-item {
  padding: 13px 16px;
}

.toc a.active,
.toc a:hover,
.toc-item:hover,
.accordion-item:hover,
.accordion-item-redesign:hover,
.program-version-row:hover,
.screenshot-main-card:hover {
  border-color: rgba(37,99,235,0.20);
  background: var(--ui-surface-2);
  box-shadow: none;
}

.toc a.active {
  border-left-color: var(--ui-cta);
}

.sidebar-rating-card {
  padding: 28px;
  box-shadow: var(--ui-shadow-soft);
}

.rating-big-num,
.rating-summary-score strong,
.hero-rating-value {
  color: var(--ui-primary);
}

.screenshots-grid-main {
  gap: 18px;
}

.screenshot-main-card {
  overflow: hidden;
  border-radius: var(--ui-radius-sm);
}

.download-block-redesign,
.final-cta-inner-redesign {
  box-shadow: var(--ui-shadow-soft);
}

.download-btn-main,
.os-download-btn,
.table-download-btn {
  border-radius: var(--ui-radius-sm);
  background: var(--ui-cta);
  color: #111418;
  box-shadow: none;
}

.download-btn-main:hover,
.os-download-btn:hover,
.table-download-btn:hover {
  background: var(--ui-cta-hover);
  color: #111418;
}

.sticky-bar {
  background: rgba(255,255,255,0.96);
  color: var(--ui-text);
  border-color: var(--ui-line);
}

.sticky-bar p {
  color: var(--ui-text);
}

footer {
  background: #111418;
}

@media (max-width: 768px) {
  .container,
  .header-inner,
  .trust-bar-inner {
    max-width: 100%;
  }

  .hero {
    padding: 26px 0 38px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.12;
    margin-bottom: 26px;
  }

  .hero-lead {
    font-size: 18px;
    line-height: 1.58;
    max-width: 100%;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-cta .btn-lg {
    min-width: 0;
    width: 100%;
  }

  .hero-info-panel {
    width: 100%;
    padding-top: 24px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(15,159,122,0.20);
  }

  .hero-info-heading strong {
    font-size: 20px;
  }

  .section {
    padding: 46px 0;
  }

  h2 {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .container,
  .trust-bar-inner {
    width: 390px;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .header-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    padding: 8px 15px;
  }

  .hero-info-row,
  .hero-info-row:last-child {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .trust-bar-track {
    justify-content: center;
    gap: 9px 14px;
  }

  .sticky-bar {
    width: 370px;
    max-width: calc(100% - 20px);
  }
}

/* Компонентный слой hero/facts/sticky после переноса в шаблон. */
.hero-modern {
  position: relative;
  overflow: hidden;
}

.hero-shell {
  align-items: start;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.hero-meta-pills .badge {
  min-height: 42px;
  align-items: center;
}

.hero-action-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-guidance-list {
  display: grid;
  gap: 9px;
  max-width: 610px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-guidance-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-guidance-list i {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--ui-primary-2);
}

.hero-facts {
  min-width: 0;
}

.hero-facts-head {
  align-items: center;
}

.hero-facts-list {
  display: grid;
  gap: 6px;
}

.hero-facts-row {
  min-height: 38px;
}

.hero-facts-row dt {
  align-self: center;
}

.hero-facts-row dd {
  align-self: center;
}

.trust-strip {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.trust-strip-list {
  display: flex;
  align-items: center;
}

.sticky-bar {
  padding: 10px;
}

.sticky-bar-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.sticky-bar-inner p {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-action-note {
    text-align: center;
    max-width: 100%;
  }

  .hero-guidance-list {
    margin-top: 20px;
    text-align: left;
  }

  .hero-guidance-list li {
    font-size: 13px;
  }

  .hero-facts-list {
    gap: 10px;
  }

  .hero-facts-row,
  .hero-facts-row:last-child {
    min-height: 42px;
  }

  .sticky-bar {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-action-note {
    display: none;
  }

  .sticky-bar-inner {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .sticky-bar-inner .btn {
    width: 48px;
    min-width: 48px;
  }
}

/* Финальная итерация hero: более сильная иерархия, один главный CTA и лёгкий технический rail. */
.hero-modern {
  padding: 46px 0 58px;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.035) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 54%, #eef5f8 100%);
}

.hero-modern .breadcrumb {
  margin-bottom: 30px;
}

.hero-modern h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: 46px;
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-modern h1 span {
  background: linear-gradient(120deg, #2667d9 0%, #14947e 72%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-shell {
  grid-template-columns: minmax(0, 690px) minmax(310px, 360px);
  gap: 78px;
  align-items: start;
}

.hero-copy {
  max-width: 690px;
}

.hero-modern .hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: #26364c;
  font-size: 20px;
  line-height: 1.62;
}

.hero-modern .hero-cta {
  gap: 16px;
  margin-top: 0;
}

.hero-modern .hero-cta .btn-lg {
  min-width: 360px;
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd43b 0%, #ffb703 100%);
  color: #101418;
  font-size: 17px;
  font-weight: 820;
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-modern .hero-cta .btn-lg:hover {
  background: linear-gradient(135deg, #ffcf24 0%, #efa900 100%);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-modern .hero-link-secondary {
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  color: #526176;
  font-size: 14px;
  font-weight: 720;
}

.hero-action-note {
  max-width: 610px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.hero-guidance-block {
  max-width: 650px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-guidance-label {
  display: block;
  margin-bottom: 12px;
  color: #0f9f7a;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-guidance-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: none;
  margin: 0;
}

.hero-guidance-list li {
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  color: #4f6075;
  font-size: 13px;
  line-height: 1.42;
}

.hero-guidance-list i {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: #2563eb;
}

.hero-info-panel {
  margin-top: 0;
  padding: 18px 0 16px 32px;
  border-left: 1px solid rgba(20, 184, 166, 0.28);
  background: none;
  box-shadow: none;
}

.hero-info-heading {
  margin-bottom: 22px;
}

.hero-info-kicker {
  margin-bottom: 7px;
  color: #0f9f7a;
  font-size: 11px;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.hero-info-heading strong {
  color: #0f172a;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.05;
}

.hero-info-heading img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.hero-facts-list {
  gap: 0;
}

.hero-info-row,
.hero-info-row:last-child {
  grid-template-columns: 102px minmax(0, 1fr);
  min-height: 46px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.075);
}

.hero-info-row:last-child {
  border-bottom: 0;
}

.hero-info-row dt {
  gap: 8px;
  color: #667085;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.hero-info-row dt svg,
.hero-info-row dt i {
  width: 15px;
  height: 15px;
  color: #14947e;
}

.hero-info-row dd {
  color: #0f172a;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.3;
}

.trust-strip {
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: none;
}

.trust-strip-list {
  justify-content: center;
  gap: 10px 28px;
}

.trust-strip .trust-item {
  color: #344054;
  font-size: 13px;
  font-weight: 680;
}

.trust-strip .trust-icon,
.trust-strip svg {
  color: #14947e !important;
}

@media (max-width: 900px) {
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-info-panel {
    padding: 24px 0 0;
    border-top: 1px solid rgba(20, 184, 166, 0.24);
    border-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 28px 0 42px;
  }

  .hero-modern .breadcrumb {
    margin-bottom: 24px;
  }

  .hero-modern h1 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-modern .hero-lead {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-modern .hero-cta {
    gap: 12px;
  }

  .hero-modern .hero-cta .btn-lg {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
  }

  .hero-modern .hero-link-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-action-note {
    display: block;
    max-width: 100%;
    text-align: left;
  }

  .hero-guidance-block {
    margin-top: 22px;
    padding-top: 18px;
  }

  .hero-guidance-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-guidance-list li {
    font-size: 13px;
  }

  .hero-info-heading strong {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .hero-modern h1 {
    font-size: 30px;
  }

  .hero-info-row,
  .hero-info-row:last-child {
    grid-template-columns: 94px minmax(0, 1fr);
  }
}

/* Глобальная смена визуальной системы: легче шрифты и холодная trust-палитра вместо желтого акцента. */
:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-danger: #0f766e;
  --accent-light: #eff6ff;
  --accent-glow: rgba(37, 99, 235, 0.10);
  --bg: #f5f8fb;
  --bg-alt: #ffffff;
  --text: #0f172a;
  --text-muted: #536579;
  --border: rgba(15, 23, 42, 0.09);
  --ui-bg: #f5f8fb;
  --ui-surface: #ffffff;
  --ui-surface-2: #f8fbff;
  --ui-text: #0f172a;
  --ui-text-soft: #2f4054;
  --ui-muted: #64748b;
  --ui-line: rgba(15, 23, 42, 0.10);
  --ui-line-soft: rgba(15, 23, 42, 0.065);
  --ui-primary: #2563eb;
  --ui-primary-2: #0f9f8a;
  --ui-cta: #2563eb;
  --ui-cta-hover: #1d4ed8;
  --ui-radius: 12px;
  --ui-radius-sm: 8px;
  --ui-shadow: 0 12px 30px rgba(15, 23, 42, 0.075);
  --ui-shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.052);
}

body {
  font-family: Inter, "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--ui-text);
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--ui-primary);
}

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

h1,
h2,
h3,
h4,
.section h2,
.section-alt h2,
.toc h2 {
  color: var(--ui-text);
  font-weight: 720;
  letter-spacing: 0;
}

h2,
.section h2,
.section-alt h2,
.toc h2 {
  font-size: 28px;
  line-height: 1.18;
}

h3 {
  font-weight: 680;
}

.logo,
.footer-brand {
  font-weight: 760;
}

.logo-mark {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

.logo-icon {
  background: rgba(37, 99, 235, 0.14);
  color: #60a5fa;
}

.logo-mark svg,
.logo-mark i,
.logo-icon svg,
.logo-icon i {
  color: #60a5fa !important;
  stroke: currentColor;
}

.logo-accent,
.footer-brand span {
  color: #60a5fa;
}

.btn,
.btn-lg,
.table-download-btn,
.os-download-btn,
.final-cta-redesign .btn,
.sticky-bar .btn {
  background: linear-gradient(135deg, #2f7df4 0%, #245dd8 100%);
  color: #ffffff;
  border-color: transparent;
  font-weight: 720;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.btn:hover,
.btn-lg:hover,
.table-download-btn:hover,
.os-download-btn:hover,
.final-cta-redesign .btn:hover,
.sticky-bar .btn:hover {
  background: linear-gradient(135deg, #276fe5 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.btn-outline {
  color: var(--ui-primary);
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
}

.btn-outline:hover {
  color: var(--ui-primary);
  background: #eff6ff;
}

th,
.os-download-table th,
.download-table th,
.os-table thead,
.req-table thead,
.program-version-table th {
  background: #eaf3ff;
  color: #16335f;
  border-bottom-color: rgba(37, 99, 235, 0.20);
}

tr:hover td,
tr:nth-child(even):hover td,
.os-download-table tr:hover td,
.os-table tbody tr:hover,
.req-table tbody tr:hover,
.compare-table .winner {
  background: rgba(37, 99, 235, 0.055);
}

.toc-link.active,
.toc-link:hover,
.toc a.active,
.toc a:hover,
.toc-item:hover,
.accordion-btn span svg,
.toc h3 svg,
.verified,
.rating-security svg,
.feature-list li::before,
.hero-info-row dt svg,
.hero-info-row dt i,
.trust-icon,
.check {
  color: var(--ui-primary-2);
}

.toc-link.active::before,
.toc-link:hover::before,
.toc a.active,
.rating-bar > div,
.version-tag,
.step-number,
.scroll-top {
  background: var(--ui-primary);
}

.lead-callout,
.highlight-box,
.security-box,
.quick-facts,
.rating-summary,
.toc-card,
.accordion-btn[aria-expanded="true"] {
  border-color: rgba(37, 99, 235, 0.16);
  background: #ffffff;
}

.lead-callout {
  border-left-color: var(--ui-primary);
}

.desc-highlight,
.desc-highlight-redesign {
  border-left-color: var(--ui-primary);
}

.stepper-line {
  background: rgba(37, 99, 235, 0.12);
}

.download-section-redesign,
.section,
.section-alt,
.final-cta-redesign {
  background: var(--ui-bg);
}

.final-cta-redesign {
  color: var(--ui-text);
}

.final-cta-redesign h2 {
  color: var(--ui-text);
  font-weight: 720;
}

.final-cta-redesign p,
.final-cta-meta {
  color: var(--ui-muted);
}

.hero-modern {
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.055) 0%, rgba(37, 99, 235, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 56%, #edf6f8 100%);
}

.hero-modern h1 {
  font-weight: 780;
}

.hero-modern h1 span {
  background: linear-gradient(120deg, #2563eb 0%, #0f9f8a 78%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-modern .hero-lead {
  color: #2f4054;
  font-weight: 400;
}

.hero-modern .hero-cta .btn-lg {
  background: linear-gradient(135deg, #2f7df4 0%, #245dd8 100%);
  color: #ffffff;
  font-weight: 760;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-modern .hero-cta .btn-lg:hover {
  background: linear-gradient(135deg, #276fe5 0%, #1d4ed8 100%);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}

.hero-info-kicker,
.hero-guidance-label {
  color: var(--ui-primary-2);
}

.hero-guidance-list i,
.hero-info-row dt svg,
.hero-info-row dt i,
.trust-strip .trust-icon,
.trust-strip svg {
  color: var(--ui-primary-2) !important;
}

.hero-info-heading strong,
.hero-info-row dd,
.os-table-program,
.os-table-name,
.version-item-name {
  color: var(--ui-text);
}

.hero-info-row dd {
  font-weight: 760;
}

.trust-strip .trust-item {
  color: #344054;
  font-weight: 620;
}

.sticky-bar {
  background: rgba(15, 23, 42, 0.88);
}

a:focus-visible,
button:focus-visible,
.accordion-btn:focus-visible,
.faq-q:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.72);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  h2,
  .section h2,
  .section-alt h2,
  .toc h2 {
    font-size: 25px;
  }

  .hero-modern h1 {
    font-weight: 760;
  }
}

/* Финальный ритм страницы: меньше пустоты и без дублирующей карточки в содержании. */
.section,
.section-alt,
.download-section-redesign {
  padding-top: 52px;
  padding-bottom: 52px;
}

.toc-layout {
  grid-template-columns: minmax(0, 680px);
  gap: 0;
  margin-bottom: 0;
}

.toc-layout > .sidebar-rating-card {
  display: none;
}

.toc-layout-title,
.toc-list {
  max-width: 680px;
}

.section-lead,
.section-byline {
  margin-bottom: 24px;
}

.animate-in,
.animate-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .section,
  .section-alt,
  .download-section-redesign {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .toc-layout {
    grid-template-columns: 1fr;
  }
}

/* Карточки скачивания по ОС вместо короткой таблицы. */
.os-download-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.os-download-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
}

.os-download-card.is-unavailable {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.22);
}

.os-download-card-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--ui-primary);
  background: #eff6ff;
}

.os-download-card-icon svg,
.os-download-card-icon i {
  width: 26px;
  height: 26px;
}

.os-download-card.is-unavailable .os-download-card-icon {
  color: #94a3b8;
  background: #f1f5f9;
}

.os-download-card-main {
  min-width: 0;
}

.os-download-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 6px;
}

.os-download-card-kicker {
  color: var(--ui-primary-2);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.os-download-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #334155;
  font-size: 13px;
  font-weight: 680;
}

.os-download-card-status.is-muted {
  color: #94a3b8;
}

.os-download-card h3 {
  margin: 0;
  color: var(--ui-text);
  font-size: 21px;
  font-weight: 760;
  line-height: 1.22;
}

.os-download-card p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.55;
}

.os-download-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.os-download-card-meta div {
  min-width: 116px;
  padding: 10px 12px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 12px;
  background: #f8fbff;
}

.os-download-card-meta dt {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.os-download-card-meta dd {
  margin: 0;
  color: var(--ui-text);
  font-size: 14px;
  font-weight: 720;
}

.os-download-card.is-unavailable .os-download-card-meta div {
  background: #f8fafc;
  border-color: rgba(148, 163, 184, 0.18);
}

.os-download-card.is-unavailable .os-download-card-meta dd,
.os-download-card.is-unavailable h3 {
  color: #64748b;
}

.os-download-card-action {
  display: flex;
  justify-content: flex-end;
}

.os-download-card-action .btn {
  min-width: 126px;
  min-height: 42px;
  gap: 7px;
  border-radius: 12px;
}

.os-download-card-action .btn svg,
.os-download-card-action .btn i {
  width: 15px;
  height: 15px;
}

@media (max-width: 820px) {
  .os-download-card {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 18px;
  }

  .os-download-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .os-download-card-action {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .os-download-card-action .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .os-download-card {
    grid-template-columns: 1fr;
  }

  .os-download-card-icon {
    width: 44px;
    height: 44px;
  }

  .os-download-card h3 {
    font-size: 19px;
  }

  .os-download-card-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .os-download-card-meta div {
    min-width: 0;
  }
}

/* Единый стандарт контентных блоков: возможности без аккордеона и аккуратный финальный CTA. */
html,
body {
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

.section,
.section-alt,
.download-section-redesign,
.final-cta-redesign {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section h2,
.section-alt h2,
.toc h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 760;
  line-height: 1.18;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ui-muted);
  font-size: 15px;
  line-height: 1.55;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.feature-group-card {
  display: flex;
  gap: 14px;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.feature-card-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ui-primary-2);
  background: #eefcf9;
}

.feature-card-icon svg,
.feature-card-icon i {
  width: 19px;
  height: 19px;
}

.feature-card-copy {
  min-width: 0;
}

.feature-card-num {
  display: block;
  margin-bottom: 5px;
  color: #64748b;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
}

.feature-card h3,
.feature-group-card h3 {
  margin: 0;
  color: var(--ui-text);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.35;
}

.feature-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-group-card {
  display: block;
  min-height: 0;
}

.feature-group-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.feature-group-card .feature-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.feature-list li {
  font-size: 14px;
  line-height: 1.45;
}

.final-cta-redesign {
  background: var(--ui-bg);
}

.final-cta-inner-redesign {
  max-width: 760px;
  padding: 30px 28px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.final-cta-redesign h2 {
  margin-bottom: 8px;
  color: var(--ui-text);
  font-size: 25px;
  font-weight: 760;
  line-height: 1.18;
}

.final-cta-redesign p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.5;
}

.final-cta-actions {
  gap: 12px;
}

.final-cta-redesign .btn.btn-lg {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 13px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
}

.final-cta-redesign .btn.btn-lg svg,
.final-cta-redesign .btn.btn-lg i {
  width: 17px !important;
  height: 17px !important;
}

.final-cta-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ui-muted);
}

.final-cta-secondary:hover {
  color: var(--ui-primary);
}

.final-cta-meta {
  margin-top: 10px;
  margin-bottom: 0 !important;
  color: #94a3b8;
  font-size: 12px;
}

@media (max-width: 768px) {
  .section,
  .section-alt,
  .download-section-redesign,
  .final-cta-redesign {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section h2,
  .section-alt h2,
  .toc h2 {
    font-size: 24px;
  }

  .feature-card-grid,
  .feature-group-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-inner-redesign {
    padding: 24px 20px;
  }

  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-cta-redesign .btn.btn-lg {
    width: 100%;
  }

  .final-cta-secondary {
    justify-content: center;
  }
}

/* Пропорциональная унификация основных блоков страницы. */
:root {
  --ui-card-radius: 16px;
  --ui-card-border: rgba(37, 99, 235, 0.11);
  --ui-card-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
  --ui-section-gap: 26px;
}

.toc-layout,
.toc-list,
.final-cta-inner-redesign {
  max-width: none;
}

.toc-layout {
  grid-template-columns: 1fr;
}

.toc-layout-title {
  max-width: none;
  margin-bottom: 16px;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.toc-link,
.toc a,
.toc-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--ui-card-border);
  box-shadow: none;
}

.screenshots-grid-main,
.feature-card-grid,
.feature-group-grid,
.os-download-cards,
#faq [role="list"] {
  margin-top: var(--ui-section-gap);
}

.screenshot-main-card,
.feature-card,
.feature-group-card,
.os-download-card,
.faq-item-redesign,
.final-cta-inner-redesign {
  border-radius: var(--ui-card-radius);
  border-color: var(--ui-card-border);
  box-shadow: var(--ui-card-shadow);
}

.screenshots-grid-main {
  gap: 14px;
}

.screenshot-main-card img {
  aspect-ratio: 16 / 9.5;
}

.feature-card,
.feature-group-card {
  min-height: 112px;
  padding: 20px;
}

.feature-card h3,
.feature-group-card h3 {
  font-size: 15px;
  line-height: 1.38;
}

.os-download-cards {
  gap: 14px;
}

.os-download-card {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  min-height: 164px;
  gap: 18px;
  padding: 20px;
}

.os-download-card-icon {
  width: 54px;
  height: 54px;
}

.os-download-card h3 {
  font-size: 20px;
}

.os-download-card p {
  max-width: 640px;
  font-size: 13px;
  line-height: 1.5;
}

.os-download-card-meta {
  margin-top: 14px;
}

.os-download-card-meta div {
  min-width: 108px;
  padding: 9px 11px;
}

.faq-item-redesign {
  margin-bottom: 10px;
  background: #ffffff;
}

.faq-q-redesign {
  min-height: 50px;
  padding: 15px 18px;
  font-size: 14px;
  line-height: 1.3;
}

.faq-a.open {
  padding: 0 18px 16px;
}

.stepper {
  margin-top: var(--ui-section-gap);
}

.final-cta-inner-redesign {
  width: calc(100% - 48px);
  max-width: 1062px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 28px;
  text-align: left;
  padding: 28px 30px;
}

.final-cta-inner-redesign h2,
.final-cta-inner-redesign p,
.final-cta-meta {
  grid-column: 1;
  margin-left: 0;
  margin-right: 0;
}

.final-cta-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  justify-content: flex-end;
}

.final-cta-redesign h2 {
  font-size: 24px;
}

.final-cta-redesign p {
  max-width: 560px;
}

@media (max-width: 768px) {
  .toc-list {
    grid-template-columns: 1fr;
  }

  .screenshots-grid-main,
  .feature-card-grid,
  .feature-group-grid,
  .os-download-cards,
  #faq [role="list"],
  .stepper {
    margin-top: 20px;
  }

  .feature-card,
  .feature-group-card,
  .os-download-card {
    min-height: 0;
    padding: 16px;
  }

  .os-download-card {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .os-download-card h3 {
    font-size: 18px;
  }

  .final-cta-inner-redesign {
    width: calc(100% - 48px);
    max-width: 100%;
    display: block;
    text-align: center;
    padding: 24px 20px;
  }

  .final-cta-redesign p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Финальная сборка дизайн-кода: один ритм секций, навигации, CTA и карточек. */
:root {
  --ui-cta: #2563eb;
  --ui-cta-hover: #1d4ed8;
  --ui-section-rule: rgba(37, 99, 235, 0.075);
  --ui-section-tint: #f7fbff;
}

.hero-modern .hero-cta .btn-lg,
.download-btn-main,
.os-download-btn,
.table-download-btn,
.final-cta-redesign .btn,
.sticky-bar .btn {
  background: linear-gradient(135deg, #2f7df4 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
}

.hero-modern .hero-cta .btn-lg:hover,
.download-btn-main:hover,
.os-download-btn:hover,
.table-download-btn:hover,
.final-cta-redesign .btn:hover,
.sticky-bar .btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1742b9 100%);
  color: #ffffff;
}

.section > .container > h2,
.download-section-redesign > .container > h2,
.toc-layout-title {
  position: relative;
}

.section > .container > h2::after,
.download-section-redesign > .container > h2::after,
.toc-layout-title::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ui-primary), var(--ui-primary-2));
}

.section-alt,
#download-os,
#faq {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(247,251,255,0.88) 100%),
    var(--ui-bg);
}

.toc-list {
  counter-reset: toc-step;
}

.toc-link {
  gap: 11px;
  color: var(--ui-text-soft);
  font-weight: 660;
}

.toc-link::before {
  counter-increment: toc-step;
  content: counter(toc-step, decimal-leading-zero);
  position: static;
  width: auto;
  min-width: 26px;
  height: auto;
  flex: 0 0 auto;
  border-radius: 0;
  background: transparent !important;
  color: var(--ui-primary-2);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.05em;
}

.toc-link.active,
.toc-link:hover {
  border-color: rgba(37, 99, 235, 0.18);
  background: #f8fbff;
  color: var(--ui-text);
}

.toc-link.active {
  box-shadow: inset 3px 0 0 var(--ui-primary);
}

.feature-card-icon,
.feature-group-head .feature-card-icon,
.os-download-card-icon {
  background: linear-gradient(180deg, #eff6ff 0%, #e8f7f4 100%);
  color: var(--ui-primary);
}

.feature-card:nth-child(even) .feature-card-icon {
  color: var(--ui-primary-2);
}

.feature-card,
.feature-group-card,
.os-download-card,
.faq-item-redesign,
.screenshot-main-card {
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.feature-card:hover,
.feature-group-card:hover,
.os-download-card:hover,
.faq-item-redesign:hover,
.screenshot-main-card:hover {
  border-color: rgba(37, 99, 235, 0.20);
  background-color: #fbfdff;
}

.faq-icon,
.faq-q-redesign .faq-icon,
.faq-q[aria-expanded="true"] .faq-icon {
  color: var(--ui-primary-2);
}

.faq-q-redesign {
  color: var(--ui-text);
}

.faq-q-redesign:hover {
  color: var(--ui-primary);
}

footer ul a:hover,
.nav-dropdown-cat:hover,
.nav-dropdown-title {
  color: #60a5fa;
}

.skip-link,
.scroll-top {
  background: var(--ui-primary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .section > .container > h2::after,
  .download-section-redesign > .container > h2::after,
  .toc-layout-title::after {
    width: 36px;
    margin-top: 10px;
  }

  .toc-link {
    min-height: 46px;
  }
}

/* Характер шаблона: смысловые фоны, product-preview и иерархия download-зоны. */
:root {
  --ui-action: #2563eb;
  --ui-action-dark: #1e40af;
  --ui-trust: #0f9f8a;
  --ui-deep: #101828;
  --ui-canvas: #eef4f7;
  --ui-paper: #fbfdff;
  --ui-panel-tint: #e8f4f3;
}

body {
  background: var(--ui-canvas);
}

.hero-modern {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, #ffffff 0%, #f8fbff 46%, #e9f4f3 100%);
}

.hero-modern h1 span {
  background: linear-gradient(120deg, var(--ui-action) 0%, #155e75 46%, var(--ui-trust) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-info-panel {
  border-left-color: rgba(15, 159, 138, 0.28);
}

.hero-facts-head::before {
  content: "FILE";
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  margin-right: 10px;
  border: 1px solid rgba(15, 159, 138, 0.22);
  border-radius: 999px;
  color: var(--ui-trust);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.trust-bar,
.trust-strip {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.075);
}

#opisanie {
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f8fb 100%);
}

#screenshots {
  background:
    linear-gradient(180deg, #f3f8fb 0%, #eaf3f6 100%);
}

#vozmozhnosti {
  background: #f6fafb;
}

#download-os {
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 0%, rgba(15, 159, 138, 0.04) 100%),
    linear-gradient(180deg, #eaf3f6 0%, #f8fbfd 100%);
}

#ustanovka {
  background: #ffffff;
}

#faq {
  background: linear-gradient(180deg, #f6fafb 0%, #edf4f7 100%);
}

.screenshots-grid-main {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 168px;
  gap: 16px;
}

.screenshot-main-card {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(16, 24, 40, 0.10);
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.screenshot-main-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.screenshot-main-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.screenshot-main-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.72) 100%);
  pointer-events: none;
}

.screenshot-main-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 760;
}

.screenshot-main-caption span {
  color: #8debdc;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.os-download-cards {
  gap: 12px;
}

.os-download-card {
  position: relative;
  overflow: hidden;
}

.os-download-card.is-lead {
  min-height: 206px;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  padding: 26px;
  border-color: rgba(37, 99, 235, 0.20);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 54%, #edf9f7 100%);
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.12);
}

.os-download-card.is-lead::after {
  content: "WINDOWS";
  position: absolute;
  right: 22px;
  bottom: -24px;
  color: rgba(37, 99, 235, 0.055);
  font-size: 76px;
  font-weight: 860;
  line-height: 1;
  pointer-events: none;
}

.os-download-card.is-lead > * {
  position: relative;
  z-index: 1;
}

.os-download-card.is-lead .os-download-card-icon {
  width: 62px;
  height: 62px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ui-action) 0%, #155e75 100%);
}

.os-download-card-recommend {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(15, 159, 138, 0.10);
  color: #0f766e;
  font-size: 11px;
  font-weight: 800;
}

.os-download-card:not(.is-lead) {
  min-height: 132px;
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.os-download-card.is-unavailable {
  background: rgba(255, 255, 255, 0.76);
}

.os-download-card-action .is-disabled,
.os-download-card.is-unavailable .os-download-card-action .btn {
  background: #eef3f7;
  color: #64748b;
  box-shadow: none;
}

.final-cta-redesign {
  background: linear-gradient(180deg, #edf4f7 0%, #dfeaf0 100%);
}

.final-cta-inner-redesign {
  position: relative;
  overflow: hidden;
  max-width: 1062px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #101828 0%, #14334a 58%, #0f766e 100%);
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.20);
}

.final-cta-inner-redesign h2,
.final-cta-redesign h2 {
  color: #ffffff;
}

.final-cta-inner-redesign h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: #8debdc;
}

.final-cta-redesign p,
.final-cta-meta {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta-redesign .btn.btn-lg {
  background: #ffffff;
  color: var(--ui-action-dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.final-cta-redesign .btn.btn-lg:hover {
  background: #eaf3ff;
  color: var(--ui-action-dark);
}

.final-cta-secondary {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta-secondary:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .screenshots-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 168px;
  }

  .os-download-card.is-lead {
    grid-template-columns: 56px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-modern {
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px) 0 0 / 36px 36px,
      linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #e9f4f3 100%);
  }

  .hero-facts-head::before {
    display: none;
  }

  .screenshots-grid-main {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .screenshot-main-card,
  .screenshot-main-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .screenshot-main-card img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .os-download-card.is-lead,
  .os-download-card:not(.is-lead) {
    min-height: 0;
    padding: 18px;
  }

  .os-download-card.is-lead::after {
    display: none;
  }

  .final-cta-inner-redesign {
    text-align: left;
  }

  .final-cta-actions {
    align-items: stretch;
  }
}

/* Шапка сайта: единый production-компонент навигации. */
.site-header,
header[role="banner"].site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.08) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(180deg, rgba(13, 18, 27, 0.98), rgba(10, 14, 21, 0.96));
  border-bottom: 1px solid rgba(141, 235, 220, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 50px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.55), rgba(20, 184, 166, 0.5), transparent);
  pointer-events: none;
}

.site-header .header-inner {
  min-height: 74px;
  padding: 0 24px;
  gap: 24px;
}

.site-logo.logo {
  min-height: 46px;
  gap: 12px;
  color: #ffffff;
  letter-spacing: 0;
}

.site-logo.logo:hover {
  transform: none;
}

.site-logo .logo-icon {
  width: 38px;
  height: 38px;
  margin-right: 0;
  border-radius: 10px;
  color: #93c5fd;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(20, 184, 166, 0.18)),
    rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(147, 197, 253, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 24px rgba(37, 99, 235, 0.18);
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  min-width: 0;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  font-size: 17px;
  font-weight: 780;
  letter-spacing: 0;
}

.logo-wordmark span,
.site-logo.logo span.logo-accent,
.site-logo.logo .logo-wordmark > span {
  color: #2dd4bf;
}

.logo-text small {
  color: rgba(226, 232, 240, 0.58);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav,
header nav[role="navigation"].site-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-nav a,
.site-nav-link,
header nav[role="navigation"].site-nav a,
.site-nav .nav-dropdown-toggle {
  min-height: 40px;
  padding: 0 14px;
  margin: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(226, 232, 240, 0.84);
  font-size: 13px;
  font-weight: 740;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover,
.site-nav-link:hover,
header nav[role="navigation"].site-nav a:hover,
.site-nav .nav-dropdown-toggle:hover,
.site-nav .nav-dropdown-toggle[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.site-nav a:focus-visible,
.site-nav .nav-dropdown-toggle:focus-visible,
.hamburger:focus-visible,
.mobile-nav a:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.95);
  outline-offset: 3px;
}

.site-nav svg {
  color: #a7f3d0;
  flex: 0 0 auto;
}

.site-nav .nav-chevron {
  color: rgba(226, 232, 240, 0.72);
  transition: transform 0.18s ease;
}

.site-nav .nav-dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.site-nav .nav-dropdown {
  position: relative;
  padding-top: 0;
}

.site-nav .nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.site-nav .nav-dropdown-menu {
  top: calc(100% + 14px);
  left: 50%;
  min-width: min(760px, 92vw);
  max-width: 100vw;
  padding: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(17, 24, 39, 0.995), rgba(10, 15, 24, 0.995));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}
.site-nav .nav-dropdown-menu.is-right-aligned {
  left: auto;
  right: 0;
  transform: translateY(0);
}
.site-nav .nav-dropdown-menu.is-right-aligned::before {
  left: auto;
  right: 24px;
  transform: none;
}

.site-nav .nav-dropdown-menu::before {
  border-bottom-color: rgba(17, 24, 39, 0.98);
}

.site-nav .nav-dropdown-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  grid-column: 1 / -1;
  padding: 0 2px 14px;
  margin: 0 0 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  color: #ffffff;
}

.site-nav .nav-dropdown-header span {
  font-size: 15px;
  font-weight: 820;
}

.site-nav .nav-dropdown-header small {
  color: rgba(203, 213, 225, 0.72);
  font-size: 12px;
  font-weight: 640;
}

.site-nav .nav-dropdown-col {
  gap: 4px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.site-nav .nav-dropdown-col:hover {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(45, 212, 191, 0.22);
}

.site-nav .nav-dropdown-cat {
  min-height: 36px;
  padding: 8px 8px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 780;
  white-space: normal;
}

.site-nav .nav-dropdown-cat:hover {
  color: #a7f3d0;
  background: rgba(20, 184, 166, 0.1);
}

.nav-cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #2dd4bf);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.11);
  flex: 0 0 auto;
}

.site-nav .nav-dropdown-app {
  padding: 7px 8px 7px 22px;
  border-radius: 7px;
  color: rgba(203, 213, 225, 0.74);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav .nav-dropdown-app:hover {
  color: #ffffff;
  background: rgba(96, 165, 250, 0.1);
}

.site-header .hamburger {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.site-header .hamburger span {
  background: #e2e8f0;
}

.site-header .mobile-nav {
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  padding: 0 14px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px) 0 0 / 38px 38px,
    #111827;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.site-header .mobile-nav.open {
  padding: 14px;
}

.site-header .mobile-nav a {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  color: rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
}

.site-header .mobile-nav > a:hover,
.site-header .mobile-nav-group a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.site-header .mobile-nav-group {
  padding: 10px 0;
  gap: 7px;
}

.site-header .mobile-nav-group-title {
  padding: 0 4px 6px;
  color: #5eead4;
  letter-spacing: 0.08em;
}

.site-header .mobile-nav-group a {
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(226, 232, 240, 0.82);
}

@media (max-width: 900px) {
  .site-header .header-inner {
    min-height: 66px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav,
  header nav[role="navigation"].site-nav {
    display: none;
  }

  .site-header .hamburger {
    display: flex;
  }

  .logo-text small {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-logo .logo-icon {
    width: 34px;
    height: 34px;
  }

  .logo-wordmark {
    font-size: 15px;
  }
}

/* Точечная доводка hero, возможностей и карточек ОС. */
.hero-facts-head::before {
  content: none !important;
  display: none !important;
}

.hero-info-heading,
.hero-facts-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 18px;
}

.hero-info-heading img,
.hero-facts-head img {
  justify-self: end;
  margin-top: 4px;
}

.hero-guidance-block {
  max-width: 690px;
}

.hero-guidance-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-guidance-list li {
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

.hero-guidance-list i {
  width: 20px;
  height: 20px;
  margin-top: 0;
  color: var(--ui-primary);
}

.feature-card {
  align-items: center;
}

.feature-card-icon {
  flex-direction: column;
  gap: 7px;
  width: 46px;
  height: 58px;
  border-radius: 14px;
}

.feature-card-icon .feature-card-num {
  display: block;
  margin: 0;
  color: #64748b;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
}

.feature-card-copy .feature-card-num {
  display: none;
}

.os-download-card::after {
  position: absolute;
  right: 22px;
  bottom: 8px;
  z-index: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
  white-space: nowrap;
}

.os-download-card > * {
  position: relative;
  z-index: 1;
}

.os-download-card-windows,
.os-download-card-windows.is-lead {
  border-color: rgba(37, 99, 235, 0.22);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 52%, #edf9f7 100%);
}

.os-download-card-windows::after,
.os-download-card-windows.is-lead::after {
  content: "ДЛЯ WINDOWS";
  color: rgba(37, 99, 235, 0.06);
}

.os-download-card-linux {
  border-color: rgba(22, 163, 74, 0.16);
  background:
    linear-gradient(90deg, rgba(22, 163, 74, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, #f1fbf5 100%);
}

.os-download-card-linux::after {
  content: "ДЛЯ LINUX";
  color: rgba(22, 163, 74, 0.055);
}

.os-download-card-macos {
  border-color: rgba(99, 102, 241, 0.16);
  background:
    linear-gradient(90deg, rgba(99, 102, 241, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, #f5f7ff 100%);
}

.os-download-card-macos::after {
  content: "ДЛЯ MACOS";
  color: rgba(99, 102, 241, 0.055);
}

.os-download-card-android {
  border-color: rgba(20, 184, 166, 0.16);
  background:
    linear-gradient(90deg, rgba(20, 184, 166, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, #eefcf9 100%);
}

.os-download-card-android::after {
  content: "ДЛЯ ANDROID";
  color: rgba(20, 184, 166, 0.06);
}

.os-download-card-linux .os-download-card-icon {
  color: #15803d;
  background: linear-gradient(180deg, #ecfdf3 0%, #dcfce7 100%);
}

.os-download-card-macos .os-download-card-icon {
  color: #4f46e5;
  background: linear-gradient(180deg, #f5f7ff 0%, #e8ecff 100%);
}

.os-download-card-android .os-download-card-icon {
  color: #0f766e;
  background: linear-gradient(180deg, #ecfdf9 0%, #dffbf4 100%);
}

@media (max-width: 900px) {
  .hero-guidance-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-guidance-list {
    grid-template-columns: 1fr;
  }

  .hero-guidance-list li {
    min-height: 0;
  }

  .os-download-card::after,
  .os-download-card.is-lead::after {
    display: block;
    right: 14px;
    bottom: 10px;
    font-size: 36px;
  }
}
/* SEO/trust sections for universal software catalog pages. */
.section-head-split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head-split h2,
.section-release h2,
.section-versions h2,
.section-safety h2,
.related-section h2 {
  margin-bottom: 10px;
}

.section-head-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent, #2563eb);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.release-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.release-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.release-summary-card,
.editorial-check-card,
.version-card,
.version-choice-card,
.safety-card,
.related-panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.release-summary-card {
  min-height: 126px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.release-summary-card i,
.version-choice-card i,
.safety-card i {
  width: 24px;
  height: 24px;
  color: var(--accent, #2563eb);
}

.release-summary-card span {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.release-summary-card strong {
  color: #0f172a;
  font-size: 17px;
  line-height: 1.25;
}

.editorial-check-card {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(248,250,252,.9));
}

.editorial-check-head {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.editorial-check-head span {
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.editorial-check-head strong {
  color: #0f172a;
  font-size: 22px;
  line-height: 1.15;
}

.editorial-check-list {
  display: grid;
  gap: 14px;
}

.editorial-check-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.editorial-check-row i {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--accent, #2563eb);
}

.editorial-check-row strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 14px;
}

.editorial-check-row p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.requirements-fallback-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.version-card-list {
  display: grid;
  gap: 14px;
}

.version-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.version-card-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.version-card-version,
.version-card-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.version-card-version {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.version-card-status.is-ok {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.version-card-status.is-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #92400e;
}

.version-card h3 {
  margin: 0 0 6px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.25;
}

.version-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.version-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.version-card-meta div {
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.82);
}

.version-card-meta dt {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.version-card-meta dd {
  margin: 4px 0 0;
  color: #0f172a;
  font-weight: 900;
}

.version-card-action {
  display: flex;
  justify-content: flex-end;
}

.version-card-action .btn,
.os-download-card-action .btn {
  white-space: nowrap;
}

.version-choice-grid,
.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.safety-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.version-choice-card,
.safety-card {
  padding: 20px;
}

.version-choice-card h3,
.safety-card h3 {
  margin: 14px 0 8px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
}

.version-choice-card p,
.safety-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.related-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, .86), rgba(240, 253, 250, .86)),
    #fff;
}

.related-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.related-apps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-app {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.related-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.25);
}

.related-app img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  flex-shrink: 0;
}

.related-app-name {
  display: block;
  color: #0f172a;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.related-app-desc {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 2px;
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

@media (max-width: 1024px) {
  .release-layout,
  .version-card,
  .related-panel {
    grid-template-columns: 1fr;
  }

  .safety-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .version-card-action,
  .related-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .section-head-split {
    display: grid;
  }

  .release-summary-grid,
  .version-choice-grid,
  .safety-card-grid {
    grid-template-columns: 1fr;
  }

  .version-card {
    padding: 16px;
  }

  .version-card-meta {
    grid-template-columns: 1fr;
  }
}
/* Download-intent blocks for universal software catalog pages. */
section[id] {
  scroll-margin-top: 96px;
}

.download-variant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.download-variant-card,
.use-case-card,
.edition-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.download-variant-card {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.download-variant-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent, #2563eb);
}

.download-variant-icon i,
.use-case-card i,
.edition-card i {
  width: 22px;
  height: 22px;
}

.download-variant-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.download-variant-main {
  min-width: 0;
}

.download-variant-card h3,
.use-case-card h3,
.edition-card h3 {
  margin: 10px 0 8px;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.25;
}

.download-variant-card h3 {
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.2;
}

.download-variant-card p,
.use-case-card p,
.edition-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.download-variant-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.download-variant-card dl div {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.82);
}

.download-variant-card dt {
  color: #64748b;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-variant-card dd {
  margin: 0;
  color: #0f172a;
  font-weight: 900;
}

.download-variant-card.is-muted {
  background: rgba(248, 250, 252, 0.8);
}

.download-variant-action {
  display: flex;
  justify-content: flex-end;
  min-width: 150px;
}

.download-variant-action .btn {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.use-case-grid,
.edition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.edition-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.use-case-card,
.edition-card {
  padding: 20px;
}

.use-case-card i,
.edition-card i {
  color: var(--accent, #2563eb);
}

@media (max-width: 1180px) {
  .download-variant-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .download-variant-action {
    grid-column: 2;
    min-width: 0;
    justify-content: flex-start;
  }

  .download-variant-action .btn {
    width: auto;
    min-width: 180px;
  }

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

@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 86px;
  }

  .download-variant-grid,
  .use-case-grid,
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .download-variant-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .download-variant-card h3 {
    font-size: 18px;
  }

  .download-variant-card dl {
    grid-template-columns: 1fr;
  }

  .download-variant-action {
    grid-column: auto;
  }

  .download-variant-action .btn {
    width: 100%;
    min-width: 0;
  }
}

.dc-catalog-redo,
.dc-category-redo {
  max-width: 1180px;
  padding: 34px 24px 76px;
}

.dc-home-hero,
.dc-category-hero {
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.07) 0%, rgba(37, 99, 235, 0) 34%),
    radial-gradient(circle at 88% 18%, rgba(15, 159, 138, 0.10) 0%, rgba(15, 159, 138, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 54%, #edf6f8 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.075);
}

.dc-home-hero {
  grid-template-columns: minmax(0, 1fr) 286px;
  padding: 50px;
}

.dc-category-hero {
  padding: 42px;
  margin-bottom: 30px;
}

.dc-home-hero::before,
.dc-category-hero::before {
  display: none;
}

.dc-page-kicker {
  color: var(--ui-primary-2);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.dc-page-title {
  color: var(--ui-text);
  font-size: 42px;
  font-weight: 780;
  line-height: 1.12;
}

.dc-page-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb 0%, #0f9f8a 100%);
}

.dc-page-intro {
  color: var(--ui-text-soft);
  font-size: 17px;
  line-height: 1.64;
}

.dc-badge,
.dc-trust-bar,
.dc-home-hero-widget,
.dc-category-counter,
.dc-stat-card,
.dc-soft-panel,
.dc-side-panel {
  border-color: rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.dc-badge {
  color: #16335f;
  background: #eff6ff;
  font-weight: 720;
}

.dc-badge i,
.dc-badge svg,
.dc-trust-bar i,
.dc-trust-bar svg,
.dc-btn i,
.dc-btn svg {
  color: var(--ui-primary-2);
}

.dc-home-big-num,
.dc-stat-num,
.dc-category-counter strong {
  color: var(--ui-primary);
  font-weight: 780;
}

.dc-home-widget-rating span {
  color: var(--ui-primary-2);
}

.dc-trust-bar {
  justify-content: flex-start;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 14px;
}

.dc-trust-bar span {
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f8fbff;
  color: #344054;
  font-size: 13px;
  font-weight: 680;
}

.dc-stats-row {
  gap: 16px;
  margin-bottom: 32px;
}

.dc-stat-card {
  padding: 22px 18px;
  text-align: left;
}

.dc-stat-card::before {
  background: linear-gradient(90deg, #2563eb 0%, #0f9f8a 100%);
}

.dc-stat-label,
.dc-home-num-label,
.dc-category-counter span {
  color: var(--ui-muted);
  font-weight: 680;
}

.dc-catalog-layout {
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 28px;
}

.dc-section-heading {
  margin-bottom: 16px;
}

.dc-section-title {
  color: var(--ui-text);
  font-size: 25px;
  font-weight: 760;
}

.dc-section-title a:hover,
.dc-list-app-title:hover,
.dc-section-link,
.dc-breadcrumb a:hover {
  color: var(--ui-primary);
}

.dc-section-link {
  padding: 8px 12px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 720;
}

.dc-category-section + .dc-category-section {
  border-top-color: rgba(37, 99, 235, 0.10);
}

.dc-app-list {
  gap: 12px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dc-list-app {
  position: relative;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 116px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.052);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.dc-list-app:last-child {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.dc-list-app:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.24);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.075);
}

.dc-list-app-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.dc-list-app-icon,
.dc-list-app-main,
.dc-list-app-meta {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.dc-list-app-actions,
.dc-list-app-actions * {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.dc-list-app-icon {
  width: 56px;
  height: 56px;
  padding: 7px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
}

.dc-list-app-title {
  color: var(--ui-text);
  font-size: 18px;
  font-weight: 760;
}

.dc-list-app-brief {
  max-width: 680px;
  color: var(--ui-muted);
  font-size: 14px;
  line-height: 1.56;
}

.dc-list-app-meta {
  color: var(--ui-muted);
}

.dc-list-app-size {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155;
}

.dc-btn {
  border-radius: 12px;
  font-weight: 740;
}

.dc-btn-primary {
  background: linear-gradient(135deg, #2f7df4 0%, #245dd8 100%);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.18);
}

.dc-btn-primary:hover {
  background: linear-gradient(135deg, #276fe5 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.20);
}

.dc-btn-secondary,
.dc-btn-outline {
  background: #ffffff;
  color: var(--ui-primary);
  border-color: rgba(37, 99, 235, 0.18);
}

.dc-btn-secondary:hover,
.dc-btn-outline:hover {
  background: #eff6ff;
  color: var(--ui-primary);
  border-color: rgba(37, 99, 235, 0.28);
}

.dc-side-panel {
  top: 22px;
  padding: 22px;
  border-radius: 20px;
}

.dc-side-title {
  color: var(--ui-text);
  font-size: 21px;
  font-weight: 760;
}

.dc-top-list-item {
  border-radius: 14px;
  border-color: rgba(37, 99, 235, 0.08);
}

.dc-top-list-item:hover {
  background: #f8fbff;
  border-color: rgba(37, 99, 235, 0.18);
}

.dc-breadcrumb {
  margin-bottom: 18px;
  color: var(--ui-muted);
}

.dc-category-counter {
  border-radius: 18px;
}

@media (max-width: 920px) {
  .dc-home-hero,
  .dc-category-hero {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .dc-catalog-layout {
    grid-template-columns: 1fr;
  }

  .dc-side-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .dc-catalog-redo,
  .dc-category-redo {
    padding: 24px 16px 58px;
  }

  .dc-page-title {
    font-size: 31px;
  }

  .dc-page-title::after {
    margin-top: 14px;
  }

  .dc-page-intro {
    font-size: 16px;
  }

  .dc-list-app {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }

  .dc-list-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .dc-list-app-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 68px;
  }
}

/* Production rewrite for homepage TOP programs sidebar. */
.dc-top-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 6%, rgba(15, 159, 138, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.09);
}

.dc-top-panel::before {
  content: "";
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #2563eb 0%, #0f9f8a 100%);
}

.dc-top-panel-head {
  padding: 22px 22px 14px;
}

.dc-top-kicker {
  margin: 0 0 8px;
  color: #0f9f8a;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dc-top-panel .dc-side-title {
  margin: 0;
  color: #0f172a;
  font-size: 23px;
  font-weight: 780;
  line-height: 1.12;
}

.dc-top-lead {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.dc-top-panel .dc-top-list {
  display: grid;
  gap: 0;
  padding: 0 20px 10px;
}

.dc-top-panel .dc-top-list-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 42px minmax(0, 1fr) 34px;
  gap: 11px;
  align-items: center;
  min-height: 74px;
  padding: 12px 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.dc-top-panel .dc-top-list-item::after {
  content: "";
  position: absolute;
  inset: 6px -8px;
  opacity: 0;
  pointer-events: none;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.07), rgba(15, 159, 138, 0.045));
  transition: opacity 0.18s ease;
}

.dc-top-panel .dc-top-list-item:last-child {
  border-bottom: 0;
}

.dc-top-panel .dc-top-list-item:hover,
.dc-top-panel .dc-top-list-item:focus-within {
  transform: translateX(2px);
  border-color: rgba(37, 99, 235, 0.16);
  background: transparent;
  box-shadow: none;
}

.dc-top-panel .dc-top-list-item:hover::after,
.dc-top-panel .dc-top-list-item:focus-within::after {
  opacity: 1;
}

.dc-top-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.dc-top-rank,
.dc-top-icon,
.dc-top-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.dc-top-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #eef5ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
}

.dc-top-rank-1 .dc-top-rank,
.dc-top-rank-2 .dc-top-rank,
.dc-top-rank-3 .dc-top-rank {
  background: linear-gradient(135deg, #2563eb 0%, #0f9f8a 100%);
  color: #ffffff;
  box-shadow: none;
}

.dc-top-icon {
  width: 42px;
  height: 42px;
  padding: 5px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 13px;
  object-fit: contain;
  background: #f8fbff;
  box-shadow: none;
}

.dc-top-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.dc-top-content b {
  display: block;
  overflow: hidden;
  color: #0f172a;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dc-top-content small {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dc-top-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  color: #0f766e;
  font-size: 11px;
  font-weight: 740;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dc-top-download {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.86);
  color: #2563eb;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.dc-top-download svg,
.dc-top-download i {
  width: 17px;
  height: 17px;
}

.dc-top-download:hover,
.dc-top-download:focus {
  transform: scale(1.04);
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.22);
}

.dc-top-panel-more {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0 20px 18px;
  border: 0;
  border-top: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 0;
  background: transparent;
  color: #2563eb;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.dc-top-panel-more:hover,
.dc-top-panel-more:focus {
  background: transparent;
  color: #1d4ed8;
  text-decoration: none;
}

@media (max-width: 920px) {
  .dc-top-panel {
    position: static;
  }

  .dc-top-panel .dc-top-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dc-top-panel-head {
    padding: 20px 18px 12px;
  }

  .dc-top-panel .dc-top-list {
    grid-template-columns: 1fr;
    padding: 0 18px 12px;
  }

  .dc-top-panel .dc-top-list-item {
    grid-template-columns: 28px 42px minmax(0, 1fr) 34px;
    min-height: 74px;
  }
}

@media (max-width: 480px) {
  .dc-home-hero,
  .dc-category-hero {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .dc-trust-bar span {
    width: 100%;
  }

  .dc-list-app-actions {
    padding-left: 0;
  }
}

.site-nav .nav-dropdown-menu {
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.site-nav .nav-dropdown:hover .nav-dropdown-menu,
.site-nav .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-nav .nav-dropdown:hover .nav-dropdown-menu.is-right-aligned,
.site-nav .nav-dropdown:focus-within .nav-dropdown-menu.is-right-aligned {
  transform: translateY(0);
}

.site-header .mobile-nav {
  visibility: hidden;
  pointer-events: none;
}

.site-header .mobile-nav.open {
  visibility: visible;
  pointer-events: auto;
}

/* Static pages: contact, privacy, terms */
.static-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
}
.static-page .card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.static-page .card-header {
  background: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-size: 28px;
  font-weight: 700;
}
.static-page .card-body {
  padding: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.static-page .card-body p {
  margin-bottom: 1.25rem;
}
.static-page .card-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.static-page .card-body a {
  color: #fc3f1d;
  text-decoration: underline;
}
.static-page .card-body a:hover {
  color: var(--accent-dark);
}
.static-page .card-body ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.static-page .card-body li {
  margin-bottom: 0.5rem;
}
.static-page .form-group {
  margin-bottom: 1.25rem;
}
.static-page .control-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.static-page .form-control {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.static-page .form-control:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.15);
  outline: none;
}
.static-page .btn-primary {
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: var(--radius-lg);
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(255,204,0,0.35);
  transition: all var(--transition);
}
.static-page .btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,204,0,0.45);
}
@media (max-width: 768px) {
  .static-page {
    padding: 24px 16px;
  }
  .static-page .card {
    padding: 1.5rem;
  }
  .static-page .card-header {
    font-size: 24px;
  }
}

/* Homepage search and download-intent layer. */
.dc-home-search {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(620px, 100%);
  min-height: 58px;
  margin: 24px 0 0;
  padding: 8px 8px 8px 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.dc-home-search svg,
.dc-home-search i {
  width: 20px;
  height: 20px;
  color: #0f9f8a;
}

.dc-home-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  font-weight: 640;
}

.dc-home-search input::placeholder {
  color: #64748b;
  font-weight: 560;
}

.dc-home-search button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #2563eb 0%, #0f9f8a 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.dc-home-search button:hover,
.dc-home-search button:focus {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
}

.dc-download-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.1fr);
  gap: 20px 28px;
  align-items: start;
  margin: 0 0 34px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(15, 159, 138, 0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.065);
}

.dc-download-hub-main p:last-child {
  max-width: 520px;
  margin: 12px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.58;
}

.dc-download-hub-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.dc-download-chip {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.dc-download-chip:hover,
.dc-download-chip:focus {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.22);
  background: #ffffff;
  text-decoration: none;
}

.dc-download-chip img {
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 10px;
  object-fit: contain;
  background: #f8fbff;
}

.dc-download-chip span {
  overflow: hidden;
  color: #0f172a;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dc-download-chip svg,
.dc-download-chip i {
  width: 17px;
  height: 17px;
  color: #2563eb;
}

.dc-download-hub-checks {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.dc-download-hub-checks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eefdf9;
  color: #0f766e;
  font-size: 12px;
  font-weight: 760;
}

.dc-download-hub-checks svg,
.dc-download-hub-checks i {
  width: 16px;
  height: 16px;
}

.dc-search-status {
  min-height: 18px;
  margin: 7px 0 0;
  color: #0f766e;
  font-size: 13px;
  font-weight: 720;
}

.dc-list-app[hidden],
.dc-category-section[hidden] {
  display: none !important;
}

.dc-list-app-title {
  margin: 0;
}

.dc-category-download-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 20px;
  align-items: stretch;
  margin: 0 0 18px;
  padding: 18px 22px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(15, 159, 138, 0.06)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.dc-category-download-main p:last-child,
.dc-category-toolbar-lead {
  max-width: 720px;
  margin: 10px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.58;
}

.dc-category-download-facts {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.dc-category-download-facts span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 760;
}

.dc-category-download-facts svg,
.dc-category-download-facts i {
  width: 17px;
  height: 17px;
  color: #0f9f8a;
}

.dc-category-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 10px;
}

.dc-category-search {
  display: grid;
  grid-template-columns: 20px minmax(180px, 260px);
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.055);
}

.dc-category-search svg,
.dc-category-search i {
  width: 18px;
  height: 18px;
  color: #0f9f8a;
}

.dc-category-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 14px;
  font-weight: 650;
}

.dc-category-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
}

.dc-category-guide article {
  padding: 24px;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(15, 159, 138, 0.10), transparent 30%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.dc-category-guide h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.dc-category-guide ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dc-category-guide li {
  position: relative;
  padding-left: 20px;
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
}

.dc-category-guide li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0f9f8a);
  content: "";
}

@media (max-width: 920px) {
  .dc-download-hub {
    grid-template-columns: 1fr;
  }

  .dc-category-download-strip,
  .dc-category-guide {
    grid-template-columns: 1fr;
  }

  .dc-category-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .dc-category-search {
    grid-template-columns: 20px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .dc-home-search {
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 56px;
    padding: 10px 14px;
  }

  .dc-home-search button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .dc-download-hub {
    padding: 20px 16px;
  }

  .dc-download-hub-links {
    grid-template-columns: 1fr;
  }

  .dc-category-download-strip,
  .dc-category-guide article {
    padding: 20px 16px;
  }

  .dc-category-guide h2 {
    font-size: 20px;
  }
}

/* Static pages: contact, privacy, terms */
.static-section {
  padding: 48px 0 64px;
}
.static-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 48px;
}
.static-head {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.static-head h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--text);
}
.static-body {
  max-width: 820px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.static-body p {
  margin-bottom: 16px;
}
.static-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 14px;
  color: var(--text);
}
.static-body ul,
.static-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.static-body li {
  margin-bottom: 8px;
}
.static-body b,
.static-body strong {
  font-weight: 700;
  color: var(--text);
}

/* Contact form */
.static-form {
  margin-top: 8px;
}
.static-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.static-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.static-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.static-input,
.static-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.static-input:focus,
.static-textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.static-textarea {
  resize: vertical;
  min-height: 140px;
}
.static-form .btn {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .static-section {
    padding: 28px 0 40px;
  }
  .static-card {
    padding: 24px 20px;
  }
  .static-head h1 {
    font-size: 26px;
  }
  .static-body {
    font-size: 15px;
  }
  .static-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* UX fixes */
.required .control-label::after { content: ' *'; color: #e74c3c; }
.card-body p, .section-text, .desc-text { max-width: 720px; }

/* File checksums */
.file-checksums {
    margin-top: 24px;
    padding: 20px 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
}
.file-checksums h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.file-checksums h3 i {
    width: 18px;
    height: 18px;
    color: #2b7a39;
}
.file-checksums dl {
    margin: 0;
    padding: 0;
}
.checksum-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.checksum-row dt {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    min-width: 64px;
}
.checksum-row dd {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.checksum-row dd code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 13px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 10px;
    word-break: break-all;
    color: #212529;
    flex: 1;
}
.copy-btn {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    background: #495057;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}
.copy-btn:hover {
    background: #343a40;
}
.checksum-note {
    font-size: 13px;
    color: #6c757d;
    margin: 14px 0 0 0;
    line-height: 1.5;
}
.checksum-note a {
    color: #0d6efd;
    text-decoration: underline;
}
.checksum-note code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 12px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 2px 6px;
}

/* Compact checksums inside cards */
.os-download-card-meta code,
.version-card-meta code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 11px;
    background: #f1f3f5;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 2px 5px;
    word-break: break-all;
    color: #212529;
}

/* SEO block collapse */
.dc-category-seo {
  margin: 28px 0 0;
}

.dc-seo-content {
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dc-seo-content.collapsed {
  max-height: 320px;
}

.dc-seo-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dc-seo-content.collapsed .dc-seo-fade {
  opacity: 1;
}

.dc-seo-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  border: none;
  border-radius: 16px;
  background: #ffcc00;
  color: #21201f;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(255,204,0,0.35);
}

.dc-seo-toggle:hover {
  background: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,204,0,0.45);
}

.dc-seo-toggle:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .dc-seo-content.collapsed {
    max-height: 260px;
  }

  .dc-seo-toggle {
    width: 100%;
    padding: 12px 22px;
  }
}


/* Intro spoiler */
.dc-intro-wrapper {
  position: relative;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.dc-intro-wrapper.collapsed {
  max-height: 120px;
}
.dc-intro-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dc-intro-wrapper.collapsed .dc-intro-fade {
  opacity: 1;
}
.dc-intro-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 18px;
  border: none;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.dc-intro-toggle:hover {
  background: rgba(37, 99, 235, 0.14);
}
@media (max-width: 640px) {
  .dc-intro-wrapper.collapsed {
    max-height: 100px;
  }
  .dc-intro-toggle {
    width: 100%;
    padding: 10px 18px;
  }
}
