:root {
  --accent: #ff6a00;
  --accent-strong: #e65300;
  --accent-soft: #fff0e5;
  --teal: #18b6b0;
  --page-bg: #ffffff;
  --section-bg: #ffffff;
  --band-bg: #f7f8fb;
  --card-bg: #ffffff;
  --text: #171717;
  --muted: #62666f;
  --line: #e5e7eb;
  --hero-text: #ffffff;
  --nav-text: #ffffff;
  --hero-overlay-start: rgba(12, 12, 12, 0.82);
  --hero-overlay-mid: rgba(12, 12, 12, 0.48);
  --hero-overlay-end: rgba(12, 12, 12, 0.08);
  --hero-image: none;
  --subpage-image: none;
  --shadow: 0 18px 55px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  background: #111;
}

.hero {
  position: relative;
  min-height: 82vh;
  color: var(--hero-text);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 48%, var(--hero-overlay-end) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--page-bg));
  opacity: 0.86;
}

.topbar,
.hero-content,
.section-inner,
.footer-inner,
.selector-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  min-height: 74px;
  padding: 14px 0;
  color: var(--nav-text);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand:hover,
.brand:focus {
  color: inherit;
  text-decoration: none;
}

.brand:hover *,
.brand:focus * {
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.topbar .brand span {
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--nav-text);
  font-weight: 650;
}

.site-nav a {
  opacity: 0.9;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
  opacity: 1;
  text-decoration: none;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.language-switcher[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 144px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text);
  box-shadow: var(--shadow);
}

.language-menu a {
  padding: 9px 10px;
  border-radius: 7px;
  color: inherit;
  opacity: 1;
}

.language-menu a:hover,
.language-menu a[aria-current="true"] {
  background: var(--accent-soft);
  color: var(--accent-strong);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--nav-text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(82vh - 74px);
  padding: 58px 0 140px;
}

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

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

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--accent);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 4.15rem;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 22px;
  color: color-mix(in srgb, var(--hero-text) 86%, transparent);
  font-size: 1.28rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: color-mix(in srgb, var(--hero-text) 86%, transparent);
  font-size: 0.96rem;
}

.hero-proof li::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.button:hover *,
.button:focus * {
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.28);
}

.button-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.button-secondary {
  border-color: color-mix(in srgb, var(--hero-text) 34%, transparent);
  background: rgba(255, 255, 255, 0.12);
  color: var(--hero-text);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: color-mix(in srgb, var(--accent) 72%, #fff);
  background: rgba(255, 106, 0, 0.16);
  color: var(--accent);
}

.button-plain {
  border-color: var(--line);
  background: var(--card-bg);
  color: var(--text);
}

.section {
  padding: 84px 0;
  background: var(--section-bg);
}

.section-band {
  background: var(--band-bg);
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 12px;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
}

.download-grid,
.feature-grid,
.pricing-grid,
.screenshot-grid {
  display: grid;
  gap: 18px;
}

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

.download-card,
.feature-card,
.price-card,
.screenshot-frame,
.selector-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.download-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 126px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.download-card:hover,
.download-card:focus {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--line));
  color: inherit;
  text-decoration: none;
}

.download-card:hover *,
.download-card:focus * {
  text-decoration: none;
}

.platform-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.platform-symbol .fa {
  font-size: 2.15rem;
  line-height: 1;
}

.download-card h3,
.feature-card h3,
.price-card h3,
.selector-card h2 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.download-card p,
.feature-card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
}

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

.feature-card {
  min-height: 222px;
  padding: 24px;
  box-shadow: none;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
}

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

.step-item {
  position: relative;
  padding: 24px 24px 24px 74px;
  border-top: 1px solid var(--line);
}

.step-item::before {
  position: absolute;
  top: 22px;
  left: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-weight: 900;
}

.step-item h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.screenshot-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: stretch;
}

.screenshot-frame {
  display: grid;
  min-height: 250px;
  padding: 18px;
  place-items: center;
  overflow: hidden;
}

.screenshot-frame:first-child {
  grid-row: span 2;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pricing-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
}

.currency-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.currency-controls button {
  min-width: 78px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.currency-controls button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.seat-control {
  display: grid;
  gap: 8px;
  min-width: 280px;
}

.seat-control label {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.seat-control input {
  accent-color: var(--accent);
}

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

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
}

.price-card.featured {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 24px 70px rgba(255, 106, 0, 0.18);
}

.price-card .badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 14px 0 18px;
  color: var(--text);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-card li::before {
  display: inline-block;
  width: 7px;
  height: 12px;
  margin-right: 10px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.price-card form {
  margin-top: auto;
}

.price-card .button {
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
  align-items: start;
}

.contact-aside {
  padding-top: 8px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contact-list li {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--card-bg) 92%, #fff);
  color: var(--text);
  outline: none;
  padding: 12px 13px;
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.form_website {
  position: absolute;
  left: -9999px;
}

.footer {
  background: #111;
  color: #fff;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
  text-decoration: none;
}

.footer a:hover *,
.footer a:focus * {
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 20;
  display: none;
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.96);
  color: #fff;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.28);
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner button {
  min-width: 90px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

.selector-page {
  min-height: 100vh;
  background: #121212;
  color: #fff;
}

.selector-hero {
  padding: 72px 0 34px;
}

.selector-hero .brand {
  margin-bottom: 34px;
}

.selector-hero h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.05;
}

.selector-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

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

.selector-card {
  overflow: hidden;
  background: #1b1b1b;
  color: #fff;
  box-shadow: none;
}

.selector-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.selector-card p {
  color: rgba(255, 255, 255, 0.7);
}

.subpage-body {
  background: var(--band-bg);
  color: var(--text);
}

.subpage-header {
  position: relative;
  background: rgba(16, 16, 16, 0.97);
  color: #fff;
}

.subpage-header::before {
  display: none;
}

.subpage-intro {
  position: relative;
  overflow: hidden;
  padding: 50px 0 42px;
  background: #141414;
  color: #fff;
}

.subpage-intro::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.62) 48%, rgba(12, 12, 12, 0.34) 100%),
    var(--subpage-image);
  background-position: center 44%;
  background-size: cover;
}

.subpage-intro .section-inner {
  position: relative;
  z-index: 1;
}

.subpage-intro h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.subpage-intro p:not(.section-kicker) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.subpage-main {
  padding: 56px 0 72px;
}

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

.modern-grid.two {
  grid-template-columns: 0.9fr 1.1fr;
}

.modern-grid.checkout-grid {
  grid-template-columns: 360px 1fr;
  align-items: start;
}

.modern-grid.customize-grid {
  grid-template-columns: minmax(380px, 1.25fr) minmax(300px, 1fr) minmax(260px, 0.9fr);
  align-items: start;
}

.modern-card,
.legal-card,
.summary-card,
.preview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.modern-card,
.summary-card,
.preview-card {
  padding: 24px;
}

.legal-card {
  padding: 34px;
}

.modern-card h2,
.summary-card h2,
.preview-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.modern-card p,
.summary-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.modern-form {
  display: grid;
  gap: 18px;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.modern-form .field,
.modern-form .form-group {
  min-width: 0;
  margin: 0;
}

.modern-form label,
.modern-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.modern-form input:not([type="checkbox"]):not([type="radio"]),
.modern-form textarea,
.modern-form select,
.modern-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
}

.modern-form textarea {
  min-height: 108px;
  resize: vertical;
}

.modern-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 650;
}

.modern-check input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.download-delay {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
}

.download-delay strong {
  color: var(--accent-strong);
}

.summary-card {
  position: sticky;
  top: 18px;
}

.summary-price {
  margin: 18px 0;
  color: var(--accent-strong);
  font-size: 2.1rem;
  font-weight: 900;
}

.summary-price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.success-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  display: inline-grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 1.7rem;
  font-weight: 900;
}

.app-preview {
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  border: 1px solid #1883d7;
  background: #fff;
  color: #111;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}

.app-preview-title {
  position: relative;
  min-height: 28px;
  padding: 6px 34px 5px 30px;
  background-color: #fff;
  background-image: url("https://ajrkiwgymq.cloudimg.io/v7/desktopassist.net/images/custom_default_icon16.png");
  background-position: left 7px top 6px;
  background-repeat: no-repeat;
  font-size: 0.78rem;
}

.app-preview-title img {
  position: absolute;
  top: 0;
  right: 0;
}

.app-preview-logo {
  height: 100px;
  background-image: url("https://ajrkiwgymq.cloudimg.io/v7/desktopassist.net/images/custom_default_logo.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.app-preview-message {
  min-height: 44px;
  padding: 10px;
  background: #fff;
}

.app-preview-controls {
  padding: 18px 12px;
  background: #f0f0f0;
}

.preview-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 9px;
  font-size: 0.85rem;
}

.preview-value {
  min-height: 34px;
  border: 1px solid #7a7a7a;
  background: #fff;
  padding: 4px 8px;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 24px;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.82rem;
}

.upload-stack {
  display: grid;
  gap: 18px;
}

.dropzone {
  min-height: 140px;
  border: 2px dashed color-mix(in srgb, var(--accent) 70%, var(--line)) !important;
  border-radius: 8px;
  background: #fff;
}

.dropzone h3 {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 3.1rem;
  }

  .topbar {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 16, 16, 0.96);
    color: #fff;
    overflow: visible;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero-copy,
  .hero-lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .download-grid,
  .feature-grid,
  .pricing-grid,
  .steps,
  .screenshot-grid,
  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .modern-grid,
  .modern-grid.two,
  .modern-grid.checkout-grid,
  .modern-grid.customize-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero-content,
  .section-inner,
  .footer-inner,
  .selector-inner {
    width: min(1180px, calc(100% - 28px));
  }

  .topbar {
    position: relative;
  }

  .menu-toggle {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-grid;
    flex: 0 0 44px;
    place-items: center;
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 16, 16, 0.96);
    color: #fff;
    overflow: visible;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: 78vh;
    background-position: 64% center;
  }

  .hero-content {
    min-height: calc(78vh - 74px);
    padding: 42px 0 108px;
  }

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

  .hero-copy,
  .hero-lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .section {
    padding: 62px 0;
  }

  .section h2,
  .selector-hero h1 {
    font-size: 2rem;
  }

  .download-grid,
  .feature-grid,
  .pricing-grid,
  .steps,
  .screenshot-grid,
  .selector-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: 52px 1fr;
    min-height: 0;
  }

  .platform-symbol {
    width: 52px;
    height: 52px;
  }

  .pricing-tools {
    align-items: stretch;
  }

  .seat-control {
    min-width: 100%;
  }

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

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

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
}

.footer-publisher {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  font-size: .75rem;
}
.publisher-link {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  background: transparent;
}
.publisher-link img { width: 36px; height: 36px; filter: brightness(0) invert(1); }
.publisher-link:hover img { opacity: .8; }
.publisher-link:focus-visible { outline: 3px solid #ff8a3d; outline-offset: 4px; }
