:root {
  color-scheme: dark;
  --bg: #080807;
  --surface: #11110f;
  --surface-2: #181613;
  --ink: #fffaf0;
  --muted: #b9afa2;
  --subtle: #82786d;
  --line: rgba(242, 215, 163, 0.17);
  --line-strong: rgba(242, 215, 163, 0.34);
  --gold: #f2d7a3;
  --gold-strong: #ffe5b0;
  --red: #e3262e;
  --red-dark: #b71920;
  --mint: #74d9c8;
  --content: 1160px;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(227, 38, 46, 0.09), transparent 290px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.017) 0 1px, transparent 1px 96px);
  content: "";
  pointer-events: none;
}

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

p,
li,
summary,
strong,
em,
label,
.button {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 18px;
  font-size: 2.12rem;
  line-height: 1.06;
}

h1[data-i18n="heroTitle"] {
  white-space: pre-line;
}

h2 {
  margin-bottom: 14px;
  font-size: 1.72rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #12100d;
  font-weight: 850;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 7, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  font-weight: 850;
}

.brand img {
  display: block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 215, 163, 0.35);
  border-radius: 50%;
  object-fit: contain;
  background: #020202;
}

.brand > span {
  display: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topnav {
  display: none;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: auto;
}

.language-switcher::after {
  position: absolute;
  top: 50%;
  right: 9px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.language-switcher select {
  width: 58px;
  min-height: 40px;
  padding: 0 24px 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  appearance: none;
  background: var(--surface);
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  outline: none;
}

.language-switcher select:focus-visible {
  border-color: var(--mint);
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .language-switcher {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .language-switcher::after {
  right: auto;
  left: 9px;
}

[dir="rtl"] .language-switcher select {
  padding-right: 10px;
  padding-left: 24px;
}

[dir="rtl"] .features li {
  padding-right: 30px;
  padding-left: 0;
}

[dir="rtl"] .features li::before {
  right: 0;
  left: auto;
}

[dir="rtl"] .not-included,
[dir="rtl"] .plan-answer,
[dir="rtl"] .selected-plan-note {
  border-right: 3px solid var(--red);
  border-left: 0;
}

[dir="rtl"] .plan-answer,
[dir="rtl"] .selected-plan-note {
  border-right-color: var(--mint);
}

[dir="rtl"] .not-included span::before {
  margin-right: 0;
  margin-left: 7px;
}

[dir="rtl"] .faq-list summary {
  padding-right: 16px;
  padding-left: 48px;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 17px;
}

[dir="rtl"] .option-row {
  grid-template-columns: 1fr 22px;
}

[dir="rtl"] .option-row input {
  grid-column: 2;
  grid-row: 1;
}

[dir="rtl"] .option-row > span {
  grid-column: 1;
  grid-row: 1;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  max-width: 126px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

html[lang="ar"] h1,
html[lang="hi"] h1,
html[lang="ko"] h1,
html[lang="ja"] h1 {
  line-height: 1.14;
}

html[lang="ar"] h2,
html[lang="hi"] h2,
html[lang="ko"] h2,
html[lang="ja"] h2 {
  line-height: 1.18;
}

html[lang="ar"] h3,
html[lang="hi"] h3,
html[lang="ko"] h3,
html[lang="ja"] h3 {
  line-height: 1.28;
}

main,
footer {
  width: min(100%, calc(var(--content) + 32px));
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero {
  display: grid;
  grid-template-areas:
    "copy"
    "visual";
  gap: 22px;
  min-height: auto;
  align-content: start;
  padding-top: 26px;
  padding-bottom: 34px;
}

.hero__copy {
  grid-area: copy;
  min-width: 0;
}

.hero__copy h1 {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead,
.section-heading > p:last-child,
.booking__copy > p,
.production-card > p,
.support p,
.portfolio-callout p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.54;
}

.hero__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.hero__proof {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(242, 215, 163, 0.2);
  border-bottom: 1px solid rgba(242, 215, 163, 0.2);
}

.hero__proof > strong {
  color: var(--gold-strong);
  font-size: 1.62rem;
  font-weight: 950;
  line-height: 1;
}

.hero__proof span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero__proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.button--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 34px rgba(227, 38, 46, 0.22);
}

.button--primary:hover {
  background: #f12d35;
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button--light {
  background: var(--gold);
  color: #14110d;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
}

.hero__facts li {
  position: relative;
  padding: 8px 10px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero__facts li::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
  transform: translateY(-50%);
}

.hero__visual {
  position: relative;
  grid-area: visual;
  display: grid;
  place-items: center;
  width: min(58vw, 220px);
  height: min(58vw, 220px);
  aspect-ratio: 1;
  margin: 4px auto 0;
  overflow: hidden;
}

.hero__visual::before,
.hero__visual::after {
  display: none;
}

.hero__visual::before {
  inset: 0;
}

.hero__visual::after {
  inset: 12%;
  border-color: rgba(227, 38, 46, 0.2);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  padding: 4px;
  background: #020202;
  box-shadow: var(--shadow);
}

.signal {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(242, 215, 163, 0.25);
  border-radius: var(--radius);
  background: rgba(8, 8, 7, 0.9);
  backdrop-filter: blur(8px);
}

.signal i {
  width: 3px;
  border-radius: 2px;
  background: var(--red);
}

.signal i:nth-child(1),
.signal i:nth-child(9) { height: 8px; }
.signal i:nth-child(2),
.signal i:nth-child(8) { height: 15px; }
.signal i:nth-child(3),
.signal i:nth-child(7) { height: 24px; }
.signal i:nth-child(4),
.signal i:nth-child(6) { height: 32px; }
.signal i:nth-child(5) { height: 38px; background: var(--gold); }

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
}

.result-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-grid {
  display: grid;
  gap: 10px;
}

.result-item {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.result-item > span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.result-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.audio-portfolio-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-listen-hint {
  margin: -8px 0 18px;
  padding-left: 12px;
  border-left: 3px solid var(--mint);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.portfolio-tiers {
  display: grid;
  gap: 16px;
}

.portfolio-tier {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.portfolio-tier--standard {
  border-color: rgba(227, 38, 46, 0.56);
  background: linear-gradient(180deg, rgba(227, 38, 46, 0.09), transparent 180px), var(--surface);
}

.portfolio-tier--premium {
  border-color: rgba(242, 215, 163, 0.42);
  background: linear-gradient(180deg, rgba(242, 215, 163, 0.09), transparent 180px), var(--surface-2);
}

.portfolio-tier__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 16px 18px;
}

.portfolio-tier__header > div {
  min-width: 0;
}

.portfolio-tier__header h3 {
  margin-bottom: 7px;
  font-size: 1.42rem;
}

.portfolio-tier__header p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.portfolio-tier__header > span {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.portfolio-track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-track {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.portfolio-track__title {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  min-width: 0;
}

.portfolio-track__title span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.portfolio-track__title strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.portfolio-track audio {
  display: block;
  width: 100%;
  min-width: 0;
  height: 42px;
}

.portfolio-callout,
.support {
  display: grid;
  gap: 22px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 26px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.portfolio-callout h2,
.support h2 {
  max-width: 700px;
}

.portfolio-callout p,
.support p {
  max-width: 760px;
  margin-bottom: 0;
}

.plans-section {
  padding-top: 78px;
}

.plans-grid {
  display: grid;
  gap: 14px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.plan-card--featured {
  border-color: rgba(227, 38, 46, 0.74);
  background: linear-gradient(180deg, rgba(227, 38, 46, 0.12), transparent 190px), var(--surface);
}

.plan-card--premium {
  border-color: rgba(242, 215, 163, 0.42);
  background: linear-gradient(180deg, rgba(242, 215, 163, 0.1), transparent 190px), var(--surface-2);
}

.plan-card.is-selected {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.badge {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card__label {
  margin-bottom: 7px;
  color: var(--subtle);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card__header h3 {
  margin-bottom: 12px;
  font-size: 1.52rem;
}

.price {
  color: var(--gold-strong);
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1;
}

.price span {
  display: inline;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.plan-card__audience {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.5;
}

.plan-card__audience strong {
  color: var(--ink);
}

.features {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  position: relative;
  min-height: 24px;
  padding-left: 30px;
  color: #f4ede2;
  line-height: 1.42;
}

.features li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(116, 217, 200, 0.12);
  color: var(--mint);
  content: "\2713";
  font-size: 0.8rem;
  font-weight: 900;
}

.not-included {
  margin-top: auto;
  padding: 13px;
  border-left: 3px solid var(--red);
  background: rgba(227, 38, 46, 0.08);
}

.not-included p {
  margin-bottom: 8px;
  color: #ff9a9e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.not-included span {
  display: block;
  color: #e6c6c7;
  font-size: 0.9rem;
  line-height: 1.45;
}

.not-included span::before {
  margin-right: 7px;
  color: var(--red);
  content: "\00d7";
  font-size: 1.1rem;
  font-weight: 900;
}

.plan-answer {
  margin-top: auto;
  padding: 13px;
  border-left: 3px solid var(--mint);
  background: rgba(116, 217, 200, 0.07);
  color: #d4f4ee;
  font-size: 0.9rem;
  line-height: 1.48;
}

.button--card {
  margin-top: 2px;
  border-color: var(--line-strong);
  background: rgba(242, 215, 163, 0.06);
  color: var(--ink);
}

.button--card-primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.plans-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  text-align: center;
}

.production-section {
  padding-top: 54px;
}

.production-grid {
  display: grid;
  gap: 14px;
}

.production-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

.production-card--song {
  border-color: rgba(227, 38, 46, 0.64);
  background: linear-gradient(180deg, rgba(227, 38, 46, 0.12), transparent 210px), var(--surface);
}

.production-card--beat {
  border-color: rgba(242, 215, 163, 0.38);
  background: linear-gradient(180deg, rgba(242, 215, 163, 0.09), transparent 210px), var(--surface-2);
}

.production-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.12;
}

.production-card > p {
  margin: 0;
}

.price--compact {
  font-size: 2.2rem;
}

.price--compact span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support {
  border-color: rgba(116, 217, 200, 0.34);
  background: linear-gradient(90deg, rgba(116, 217, 200, 0.08), transparent 68%), var(--surface-2);
}

.support__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 18px;
}

.support__price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support__price strong {
  color: var(--gold-strong);
  font-size: 2rem;
  line-height: 1;
}

.process {
  display: grid;
  gap: 10px;
}

.process article {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process article > span {
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 1.15rem;
  font-weight: 900;
}

.process h3 {
  margin-bottom: 5px;
}

.process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.faq-list summary {
  position: relative;
  padding: 17px 48px 17px 16px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  line-height: 1.58;
}

.booking {
  display: grid;
  gap: 24px;
  padding-bottom: 88px;
}

.booking__copy {
  align-self: start;
}

.booking__contact {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking__contact span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking__contact strong {
  color: var(--gold-strong);
  font-size: 1.3rem;
}

.order-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.selected-plan-note {
  padding: 12px;
  border-left: 3px solid var(--mint);
  background: rgba(116, 217, 200, 0.07);
  color: #d9f8f2;
  font-size: 0.9rem;
  line-height: 1.45;
}

.order-panel > label {
  display: grid;
  gap: 7px;
  color: var(--gold-strong);
  font-size: 0.88rem;
  font-weight: 800;
}

.order-panel input[type="tel"],
.order-panel select,
.order-panel textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: #090908;
  color: var(--ink);
  outline: none;
}

.order-panel textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.48;
}

.order-panel input:focus,
.order-panel select:focus,
.order-panel textarea:focus {
  border-color: var(--mint);
}

.option-list {
  display: grid;
  gap: 9px;
}

.option-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.option-row--premium {
  border-color: rgba(242, 215, 163, 0.22);
  background: rgba(242, 215, 163, 0.045);
}

.option-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.option-row > span {
  display: grid;
  gap: 4px;
}

.option-row strong {
  color: var(--ink);
  line-height: 1.35;
}

.option-row em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
}

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(242, 215, 163, 0.06);
}

.order-total span {
  color: var(--muted);
  font-weight: 750;
}

.order-total strong {
  color: var(--gold-strong);
  font-size: 1.35rem;
}

.submit-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

footer {
  display: grid;
  gap: 12px;
  padding-top: 28px;
  padding-bottom: 94px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer > span {
  display: inline;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-sticky {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 62px;
  padding: 9px 9px 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12, 12, 10, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.mobile-sticky > div {
  display: grid;
  min-width: 0;
}

.mobile-sticky span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-sticky strong {
  color: var(--gold-strong);
  font-size: 1.22rem;
  line-height: 1.05;
}

.mobile-sticky a,
.mobile-sticky button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 132px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

@media (min-width: 420px) {
  .brand > span {
    display: inline;
    max-width: 132px;
  }

  .topbar__cta {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 600px) {
  main,
  footer {
    width: min(100%, calc(var(--content) + 48px));
    padding-right: 24px;
    padding-left: 24px;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

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

  .portfolio-callout,
  .support {
    padding: 30px;
  }

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

  .process article {
    grid-template-columns: 1fr;
    padding: 20px 0 0;
  }

  .process article > span {
    grid-row: auto;
    margin-bottom: 26px;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (min-width: 820px) {
  .topbar {
    gap: 18px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand > span {
    max-width: none;
  }

  .topnav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }

  .topnav a {
    padding: 9px 10px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 750;
  }

  .topnav a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
  }

  .language-switcher {
    margin-left: 0;
  }

  [dir="rtl"] .language-switcher {
    margin-right: 0;
  }

  .hero {
    grid-template-areas: "copy visual";
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
    align-items: center;
    gap: 58px;
    min-height: min(760px, calc(100svh - 62px));
  }

  .hero__visual {
    width: min(40vw, 500px);
  }

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

  .portfolio-callout,
  .support {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .plan-card {
    padding: 22px;
  }

  .booking {
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 54px;
    align-items: start;
  }

  .booking__copy {
    position: sticky;
    top: 94px;
  }

  .mobile-sticky {
    display: none;
  }

  footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 32px;
  }
}

@media (min-width: 1040px) {
  .portfolio-tiers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .portfolio-tier__header {
    min-height: 178px;
  }
}

@media (min-width: 1100px) {
  h1 {
    font-size: 4.4rem;
  }

  section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
