:root {
  --background-color: #10111f;
  --surface-color: #1c1d2b;
  --accent-color: #d89904;
  --secondary-color: #ee4266;
  --text-color: #ffffff;
  --muted-text: #afb3c7;
  --border-radius: 14px;
  --max-width: 1180px;
  --transition: all 0.2s ease-in-out;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h3 {
  margin: 0.35rem 0 0.85rem;
  line-height: 1.25;
}

body.menu-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

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

header {
  background: rgba(16, 17, 31, 0.8);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.brand img {
  display: block;
  width: auto;
  height: auto;
  max-height: 42px;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.language-switch-button {
  border: none;
  background: transparent;
  color: var(--muted-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.language-switch-button:hover,
.language-switch-button:focus-visible {
  color: var(--text-color);
  outline: none;
}

.language-switch-button.is-active {
  background: var(--accent-color);
  color: #111;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0.25rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent-color);
  outline: none;
}

.nav-toggle-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--text-color);
  margin: 0.25rem 0;
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }
}

.hero {
  background: radial-gradient(circle at 20% 20%, rgba(238, 66, 102, 0.15), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(216, 153, 4, 0.18), transparent 55%),
    var(--background-color);
  padding: 6rem 1.75rem 4rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 1.5rem;
  color: var(--muted-text);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: var(--accent-color);
  color: #111;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(216, 153, 4, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero .hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 25px 60px -35px rgba(0, 0, 0, 0.65);
}

.hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 4rem 1.75rem;
  position: relative;
  isolation: isolate;
  background: rgba(8, 9, 18, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(216, 153, 4, 0.18), transparent 55%);
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.section.alt {
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(0, 0, 0, 0.8);
}

.section.alt::before {
  background: radial-gradient(circle at 15% 10%, rgba(238, 66, 102, 0.18), transparent 55%);
}

main > section.section:nth-of-type(even) {
  background: rgba(24, 25, 41, 0.9);
  box-shadow: 0 30px 80px -60px rgba(0, 0, 0, 0.8);
}

main > section.section:nth-of-type(odd) {
  background: rgba(10, 11, 22, 0.78);
}

main > section.section:nth-of-type(even)::before {
  background: radial-gradient(circle at 20% 5%, rgba(216, 153, 4, 0.12), transparent 60%);
}

main > section.section:nth-of-type(odd)::before {
  background: radial-gradient(circle at 80% 10%, rgba(238, 66, 102, 0.14), transparent 60%);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 1.5rem;
}

.section-lead {
  max-width: 640px;
  color: var(--muted-text);
  margin-bottom: 2.5rem;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

.grid.features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-suite {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-suite-card {
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(16, 17, 31, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-suite-card h3 {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0;
  color: var(--text-color);
}

.feature-icon {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--accent-color);
  background: rgba(216, 153, 4, 0.12);
  border: 1px solid rgba(216, 153, 4, 0.25);
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
}

.feature-suite-card p {
  margin: 0;
  color: var(--muted-text);
}

.feature-callout {
  margin-top: 2.75rem;
  padding: 1.75rem 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 11, 22, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-callout p {
  margin: 0;
  color: var(--muted-text);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(8, 9, 18, 0.72);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.85);
}

.feature-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

.feature-shot figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.feedback-callout {
  border-color: rgba(238, 66, 102, 0.22);
  background: linear-gradient(135deg, rgba(238, 66, 102, 0.12), rgba(16, 17, 31, 0.7));
}

.buyer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.buyer-benefit-card {
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 17, 31, 0.72);
}

.buyer-benefit-card h3 {
  margin-top: 0;
  color: var(--text-color);
}

.buyer-benefit-card p {
  margin: 0;
  color: var(--muted-text);
}

.gratitude {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid rgba(216, 153, 4, 0.8);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-text);
  font-size: 0.95rem;
}

.lightcontrol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
  align-items: center;
}

.lightcontrol-media img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 25px 60px -35px rgba(0, 0, 0, 0.65);
}

.lightcontrol-content h2 {
  margin-top: 0.25rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  margin: 0 0 0.75rem;
}

.lightcontrol-list {
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  color: var(--muted-text);
}

.lightcontrol-list li + li {
  margin-top: 0.5rem;
}

.spec-card {
  background: rgba(16, 17, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
}

.spec-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.spec-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted-text);
}

.spec-card li + li {
  margin-top: 0.35rem;
}

.cockpit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  align-items: start;
}

.cockpit-copy .btn {
  margin-top: 1rem;
}

.cockpit-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1.25rem 0 1.75rem;
  color: var(--muted-text);
}

.cockpit-list li + li {
  margin-top: 0.35rem;
}

.cockpit-highlights {
  display: grid;
  gap: 1rem;
}

.cockpit-highlights .card {
  padding: 1.5rem;
}

.cockpit-media {
  display: grid;
  gap: 1.25rem;
}

.cockpit-media figure {
  margin: 0;
  padding: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 18, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cockpit-media img {
  width: 100%;
  border-radius: calc(var(--border-radius) - 4px);
}

.cockpit-media figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.management-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--muted-text);
}

.management-list li + li {
  margin-top: 0.4rem;
}

.management-media figure {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 14, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.management-media img {
  width: 100%;
  border-radius: calc(var(--border-radius) - 4px);
}

.management-media figcaption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.card {
  background: rgba(16, 17, 31, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 153, 4, 0.12), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: 1.25rem;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pricing-group {
  padding: 1rem 1rem 1.1rem;
  border-radius: calc(var(--border-radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 9, 18, 0.52);
}

.pricing-group-hardware {
  border-color: rgba(238, 66, 102, 0.25);
  background: rgba(26, 12, 19, 0.35);
}

.pricing-group h3 {
  margin: 0;
}

.pricing-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pricing-group .pricing-table-wrapper {
  margin-top: 0.8rem;
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #262626, #111111);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pricing-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: calc(var(--border-radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.pricing-table-compact {
  min-width: 460px;
}

.pricing-table thead th {
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 0.95rem 1rem;
  vertical-align: top;
}

.pricing-table tbody tr {
  background: rgba(8, 9, 18, 0.55);
}

.pricing-table tbody tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table tbody th {
  color: var(--text-color);
  font-weight: 600;
  width: 180px;
}

.pricing-table td {
  color: var(--muted-text);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--accent-color);
  white-space: nowrap;
}

.pricing-card .note {
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border-left: 3px solid rgba(216, 153, 4, 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-tax-note {
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted-text);
}

.placeholder {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius);
  color: var(--muted-text);
  display: grid;
  place-items: center;
  min-height: 200px;
  text-align: center;
  padding: 2rem;
}

.download-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.download-card {
  background: rgba(16, 17, 31, 0.75);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.download-card h4 {
  margin: 0.2rem 0 0.6rem;
  font-weight: 600;
  color: var(--muted-text);
}

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

.download-card .btn {
  justify-content: center;
}

.download-warning {
  margin: 1.5rem 0 2rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(216, 153, 4, 0.45);
  background: linear-gradient(180deg, rgba(216, 153, 4, 0.12), rgba(28, 29, 43, 0.92));
  box-shadow: 0 18px 40px -32px rgba(0, 0, 0, 0.9);
}

.download-warning h3 {
  margin: 0 0 0.75rem;
  color: var(--accent-color);
}

.download-warning p {
  margin: 0.75rem 0 0;
}

.download-warning p:first-of-type {
  margin-top: 0;
}

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

.archive-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 9, 18, 0.55);
}

.archive-file-name {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.archive-meta {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.archive-empty,
.archive-status {
  color: var(--muted-text);
  margin: 0;
}

.archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(8, 9, 18, 0.82);
  z-index: 300;
}

.modal.is-open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  width: min(900px, 100%);
  max-height: 85vh;
  background: rgba(16, 17, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.8);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h3 {
  margin: 0;
}

.modal-body {
  padding: 1rem 1.5rem 1.5rem;
  overflow: auto;
}

.modal-status {
  margin: 0 0 0.75rem;
  color: var(--muted-text);
}

.changelog-frame {
  width: 100%;
  height: min(60vh, 520px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 18, 0.7);
}

.modal-fallback {
  margin: 0.75rem 0 0;
  color: var(--muted-text);
}

body.modal-open {
  overflow: hidden;
}

.legal-section {
  background: rgba(16, 17, 31, 0.85);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-text);
}

.legal-section h3 {
  color: var(--text-color);
  margin-top: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  padding: 0;
}

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text-color);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}

.faq-trigger span:first-child {
  flex: 1;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 3px;
}

.faq-trigger:hover span:first-child {
  color: var(--accent-color);
}

.faq-item--open .faq-trigger span:first-child {
  color: var(--accent-color);
}

.faq-icon {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 999px;
  transition: var(--transition);
}

.faq-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-icon::after {
  transform: translate(-50%, -50%);
}

.faq-item--open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item--open .faq-icon::after {
  opacity: 0;
}

.faq-content {
  padding: 0 1.75rem 1.75rem;
  color: var(--muted-text);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-content p {
  margin: 1rem 0 0;
}

.faq-content p:first-child {
  margin-top: 1.15rem;
}

.seo-hub .section-lead {
  max-width: 900px;
}

.seo-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.seo-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.seo-link-card .btn {
  margin-top: auto;
}

.page-hero {
  padding: 5rem 1.75rem 3rem;
  background: radial-gradient(circle at 12% 18%, rgba(216, 153, 4, 0.16), transparent 52%),
    radial-gradient(circle at 80% 0%, rgba(238, 66, 102, 0.15), transparent 56%),
    var(--background-color);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.page-hero p {
  max-width: 780px;
  color: var(--muted-text);
  margin: 0;
}

.breadcrumbs {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.35);
}

.keyword-points {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted-text);
}

.keyword-points li + li {
  margin-top: 0.45rem;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem 1rem;
  vertical-align: top;
}

.comparison-table thead th {
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
}

.comparison-table tbody tr {
  background: rgba(8, 9, 18, 0.55);
}

.comparison-table tbody tr + tr {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table td {
  color: var(--muted-text);
}

.internal-link-list {
  list-style: disc;
  margin: 1.15rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted-text);
}

.internal-link-list li + li {
  margin-top: 0.35rem;
}

.muted-small {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
  .pricing-table {
    min-width: 600px;
  }

  .faq-trigger {
    padding: 1.25rem 1.35rem;
    font-size: 1rem;
  }
}

footer {
  margin-top: auto;
  background: #0b0c16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(12, 13, 22, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.75rem;
  display: none;
  z-index: 200;
}

.cookie-banner.visible {
  display: block;
  animation: slideUp 0.4s ease;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-text);
  font-size: 0.95rem;
}

.cookie-content .btn {
  flex-shrink: 0;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 1.75rem;
    right: 1.75rem;
    flex-direction: column;
    background: rgba(16, 17, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.5rem;
    text-align: left;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 120;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.35rem 0;
  }

  .language-switch {
    margin: 0.5rem 0 0;
    align-self: flex-start;
  }

  .hero {
    padding-top: 5rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
  }

  .feature-shot img {
    height: auto;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content .btn {
    width: 100%;
    justify-content: center;
  }
}
