﻿:root {
  --bg: #0e1117;
  --panel: #151a23;
  --panel-soft: #1d2430;
  --text: #f6f8fb;
  --muted: #a9b4c4;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #22d3c5;
  --brand-dark: #0f9289;
  --accent: #f4b740;
  --paper: #fbfcff;
  --ink: #141821;
  --ink-muted: #5b6677;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(14, 17, 23, 0.08);
  background: rgba(251, 252, 255, 0.92);
  backdrop-filter: blur(18px);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #06100f;
  background: var(--brand);
  font-weight: 900;
}

.site-title {
  font-size: 1.05rem;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 12px;
  color: #253041;
  font-weight: 650;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  background: #eef5f6;
  color: #071513;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 16px;
  color: #051311;
  background: var(--brand);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(34, 211, 197, 0.26);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.96) 0%, rgba(8, 11, 17, 0.86) 42%, rgba(8, 11, 17, 0.28) 78%),
    var(--hero-image, url("../images/hero-digital-products.png")) center right / cover no-repeat,
    #0e1117;
}

.hero-inner {
  display: grid;
  min-height: 640px;
  align-items: center;
  padding: 54px 0 64px;
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 670px;
  margin: 24px 0 0;
  color: #d7dee9;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #061211;
  background: var(--brand);
  box-shadow: 0 16px 34px rgba(34, 211, 197, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary-dark {
  border-color: rgba(14, 17, 23, 0.16);
  color: var(--ink);
  background: #ffffff;
}

.hero-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-shortcuts a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #e8eef8;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-shortcuts a:hover {
  border-color: rgba(34, 211, 197, 0.72);
  background: rgba(34, 211, 197, 0.16);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(650px, 100%);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
}

.quick-access {
  position: sticky;
  top: 74px;
  z-index: 40;
  border-bottom: 1px solid rgba(14, 17, 23, 0.08);
  background: rgba(251, 252, 255, 0.94);
  backdrop-filter: blur(16px);
}

.quick-access-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 12px 0;
}

.quick-access a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #1d2736;
  font-size: 0.93rem;
  font-weight: 850;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.quick-access a:hover {
  color: #061211;
  background: #e8fbf9;
}

.quick-access span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #061211;
  background: var(--brand);
  font-size: 0.75rem;
  font-weight: 950;
}

.metric {
  padding: 18px;
  background: rgba(10, 14, 21, 0.62);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: #b9c4d3;
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.section-dark {
  color: var(--text);
  background: var(--bg);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .section-kicker {
  color: var(--brand);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--ink-muted);
}

.section-dark .section-heading p {
  color: #bbc6d5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 275px;
  border: 1px solid rgba(14, 17, 23, 0.10);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  scroll-margin-top: 150px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 197, 0.48);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.14);
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #061211;
  background: #dcfbf8;
  font-weight: 900;
}

.product-card:nth-child(2n) .product-icon {
  background: #fff1cc;
}

.product-card:nth-child(3n) .product-icon {
  background: #e7edff;
}

.product-card-featured {
  color: var(--text);
  background: linear-gradient(135deg, #111827 0%, #13332f 100%);
}

.product-card-featured p {
  color: #cfdae8;
}

.product-card-featured .price {
  color: var(--accent);
}

.product-card h3 {
  margin: 24px 0 10px;
  font-size: 1.28rem;
}

.product-card p {
  margin: 0;
  color: var(--ink-muted);
}

.product-card-featured p {
  color: #cfdae8;
}

.product-card .price {
  display: inline-flex;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 900;
}

.product-card .product-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(14, 17, 23, 0.12);
  border-radius: 8px;
  padding: 9px 13px;
  color: #071513;
  background: #eefbf9;
  font-size: 0.92rem;
  font-weight: 850;
}

.product-card .product-link:hover {
  border-color: rgba(34, 211, 197, 0.55);
  background: #dff8f5;
}

.product-card-featured .product-link {
  border-color: rgba(255, 255, 255, 0.22);
  color: #061211;
  background: var(--brand);
}

.product-card-featured .product-link:hover {
  background: #45e3d8;
}

.offer-panel .offer-secondary {
  margin-top: 10px;
}

.sales-contact .offer-panel {
  align-self: stretch;
}

.sales-cta .button {
  min-width: 190px;
}

.pricing-section {
  background:
    linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

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

.pricing-explainer {
  display: grid;
  gap: 6px;
  margin: -10px 0 24px;
  border: 1px solid rgba(34, 211, 197, 0.28);
  border-radius: 8px;
  padding: 16px 18px;
  background: #eefbf9;
}

.pricing-explainer strong {
  color: #075a53;
  font-size: 1.02rem;
}

.pricing-explainer p {
  margin: 0;
  color: #344154;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(14, 17, 23, 0.10);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.pricing-card.featured {
  border-color: rgba(34, 211, 197, 0.46);
  background:
    linear-gradient(180deg, rgba(34, 211, 197, 0.10), rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.pricing-card-head span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #075a53;
  background: #e5fbf8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.pricing-card strong {
  display: block;
  margin-top: 16px;
  color: #0e1117;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.pricing-card-head p,
.pricing-note {
  color: var(--ink-muted);
}

.pricing-card-head p {
  margin: 8px 0 0;
  font-weight: 700;
}

.package-options {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.package-options div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(14, 17, 23, 0.08);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f8fafc;
}

.package-options span {
  color: #344154;
  font-size: 0.9rem;
  font-weight: 850;
}

.package-options strong {
  margin: 0;
  color: #0f9289;
  font-size: 0.95rem;
  white-space: nowrap;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #344154;
}

.pricing-card li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: #061211;
  background: var(--brand);
  content: "OK";
  font-size: 0.58rem;
  font-weight: 950;
}

.pricing-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.pricing-actions .button {
  min-height: 44px;
  padding-inline: 12px;
}

.pricing-note {
  margin: 22px 0 0;
  border: 1px solid rgba(14, 17, 23, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  background: #f8fafc;
  font-size: 0.95rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.workflow-step {
  padding: 26px;
  background: var(--panel);
}

.workflow-step span {
  color: var(--accent);
  font-weight: 900;
}

.workflow-step h3 {
  margin: 18px 0 8px;
}

.workflow-step p {
  margin: 0;
  color: #b9c4d3;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 40px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.check {
  display: grid;
  width: 28px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #061211;
  background: var(--brand);
  font-size: 0.66rem;
  font-weight: 900;
}

.offer-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 28px;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.offer-panel h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.offer-panel p {
  margin: 0 0 22px;
  color: #bfcbda;
}

.offer-panel .button {
  width: 100%;
}

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

.post-card {
  overflow: hidden;
  border: 1px solid rgba(14, 17, 23, 0.10);
  border-radius: 8px;
  background: #fff;
}

.post-card-image {
  aspect-ratio: 16 / 10;
  background: #e8eef3;
}

.post-card-content {
  padding: 22px;
}

.post-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.post-card p {
  margin: 0;
  color: var(--ink-muted);
}

.cta-band {
  color: #061211;
  background: var(--brand);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
}

.cta-inner p {
  margin: 14px 0 0;
  color: #10312d;
  font-weight: 650;
}

.cta-inner .button {
  color: var(--text);
  background: var(--bg);
}

.site-footer {
  padding: 34px 0;
  color: #bdc8d8;
  background: #080b11;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widgets {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.footer-widget {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.footer-widget .widget-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1rem;
}

.content-area {
  padding: 76px 0;
}

.page-hero {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.96) 0%, rgba(8, 11, 17, 0.82) 58%, rgba(8, 11, 17, 0.42) 100%),
    url("../images/hero-digital-products.png") center right / cover no-repeat,
    var(--bg);
}

.page-hero-inner {
  min-height: 310px;
  padding: 72px 0;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin: 20px 0 0;
  color: #d7dee9;
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: start;
}

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

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

.archive-card,
.entry-card,
.sidebar-card,
.not-found-panel,
.search-panel {
  border: 1px solid rgba(14, 17, 23, 0.10);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.archive-card {
  overflow: hidden;
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 197, 0.45);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.13);
}

.archive-card-image {
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  color: #061211;
  background:
    linear-gradient(135deg, rgba(34, 211, 197, 0.82), rgba(244, 183, 64, 0.66)),
    #e8f7f5;
  font-size: 4rem;
  font-weight: 950;
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card .entry-header,
.archive-card .entry-summary,
.archive-card .read-more-link {
  margin-left: 22px;
  margin-right: 22px;
}

.archive-card .entry-header {
  margin-top: 22px;
}

.archive-card-title {
  margin: 8px 0 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

.archive-card .entry-summary {
  margin-top: 12px;
  color: var(--ink-muted);
}

.archive-card .entry-summary p {
  margin: 0;
}

.read-more-link {
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-weight: 850;
}

.entry {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
}

.entry-card {
  padding: clamp(24px, 4vw, 44px);
}

.entry-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.entry-meta,
.entry-summary {
  color: var(--ink-muted);
}

.entry-content {
  margin-top: 28px;
}

.entry-content a {
  color: var(--brand-dark);
  font-weight: 750;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  line-height: 1.18;
}

.entry-content p,
.entry-content li {
  color: #344054;
}

.entry-content blockquote {
  margin: 28px 0;
  border-left: 4px solid var(--brand);
  padding: 14px 0 14px 18px;
  color: #263244;
  background: #f2fbfa;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.entry-content th,
.entry-content td {
  border: 1px solid rgba(14, 17, 23, 0.10);
  padding: 12px;
  text-align: left;
}

.entry-featured {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 8px;
}

.entry-featured img {
  width: 100%;
}

.single-footer,
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.sidebar-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 22px;
}

.sidebar-card-dark {
  color: var(--text);
  background: linear-gradient(135deg, #111827 0%, #13332f 100%);
}

.sidebar-card h2 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.sidebar-card .widget-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.sidebar-card ul {
  margin: 0;
  padding-left: 18px;
}

.sidebar-card p {
  margin: 0 0 18px;
  color: var(--ink-muted);
}

.sidebar-card-dark p {
  color: #cfdae8;
}

.sidebar-kicker {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sidebar-card-dark .sidebar-kicker {
  color: var(--accent);
}

.sidebar-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-links a {
  display: flex;
  min-height: 42px;
  align-items: center;
  border-radius: 8px;
  padding: 9px 10px;
  background: #f2f6f7;
  color: #223044;
  font-weight: 750;
}

.sidebar-links a:hover {
  background: #dcfbf8;
  color: #061211;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-field {
  min-height: 46px;
  min-width: 0;
  border: 1px solid rgba(14, 17, 23, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(14, 17, 23, 0.14);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(34, 211, 197, 0.24);
  border-color: var(--brand-dark);
}

.search-field:focus {
  outline: 3px solid rgba(34, 211, 197, 0.24);
  border-color: var(--brand-dark);
}

.search-submit {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  color: #061211;
  background: var(--brand);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.search-panel {
  margin-bottom: 18px;
  padding: 18px;
}

.pagination-wrap {
  margin-top: 26px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 17, 23, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  font-weight: 800;
}

.page-numbers.current {
  color: #061211;
  background: var(--brand);
}

.not-found-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}

.not-found-panel h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.not-found-panel p {
  margin: 12px 0 0;
  color: var(--ink-muted);
}

.empty-state {
  display: grid;
  gap: 16px;
}

.comments-area {
  margin-top: 28px;
}

.comments-title,
.comment-reply-title {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.comment-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  border: 1px solid rgba(14, 17, 23, 0.10);
  border-radius: 8px;
  padding: 18px;
  background: #f8fafc;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.comment-author {
  color: var(--ink);
  font-weight: 850;
}

.comment-content p {
  margin-bottom: 0;
}

.reply a,
.comment-edit-link {
  color: var(--brand-dark);
  font-weight: 850;
}

.comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  border: 1px solid rgba(34, 211, 197, 0.18);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(34, 211, 197, 0.08), rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.comment-form p {
  margin: 0;
}

.comment-reply-header {
  margin-top: 34px;
  border-top: 1px solid rgba(14, 17, 23, 0.10);
  padding-top: 28px;
}

.comment-reply-header .section-kicker {
  margin-bottom: 8px;
}

.comment-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 750;
}

.comment-form-comment,
.comment-notes,
.comment-form-cookies-consent,
.form-submit,
.logged-in-as {
  grid-column: 1 / -1;
}

.comment-form-comment textarea {
  min-height: 170px;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]),
.comment-form textarea {
  border-color: rgba(14, 17, 23, 0.12);
  background: #fbfcff;
}

.comment-form input:not([type="checkbox"]):not([type="submit"]):focus,
.comment-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(34, 211, 197, 0.10);
}

.comment-reply-note,
.comment-notes,
.logged-in-as {
  max-width: 720px;
  color: var(--ink-muted);
}

.comment-form-cookies-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(14, 17, 23, 0.08);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.comment-form-cookies-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-dark);
}

.comment-form-cookies-consent label {
  margin: 0;
  color: #465468;
  font-weight: 650;
}

.comment-form .submit {
  width: fit-content;
  cursor: pointer;
  border: 0;
  padding-inline: 22px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 900px) {
  .header-inner,
  .footer-inner,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-navigation ul {
    flex-wrap: wrap;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 11, 17, 0.95) 0%, rgba(8, 11, 17, 0.84) 58%, rgba(8, 11, 17, 0.42) 100%),
      var(--hero-image, url("../images/hero-digital-products.png")) center right / cover no-repeat,
      #0e1117;
  }

  .section-heading,
  .split,
  .cta-inner,
  .content-grid,
  .not-found-panel {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .workflow,
  .pricing-grid,
  .posts-grid,
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar-panel {
    position: static;
  }

  .quick-access {
    position: static;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
  }

  .main-navigation,
  .nav-cta {
    width: 100%;
  }

  .main-navigation ul {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .main-navigation a,
  .nav-cta {
    justify-content: center;
  }

  .hero-inner {
    padding: 46px 0 52px;
  }

  .hero-metrics,
  .product-grid,
  .workflow,
  .pricing-grid,
  .posts-grid,
  .quick-access-inner,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .pricing-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 52px 0;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .comment-form {
    grid-template-columns: 1fr;
  }

  .archive-card .entry-header,
  .archive-card .entry-summary,
  .archive-card .read-more-link {
    margin-left: 18px;
    margin-right: 18px;
  }
}

