:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-soft: rgba(255, 255, 255, 0.035);
  --text: #f5f2ea;
  --muted: rgba(245, 242, 234, 0.58);
  --line: rgba(255, 255, 255, 0.1);
  --gold: #ebc95e;
  --gold-2: #d3b454;
  --gold-dark: #907b38;
  --black: #050505;
  --content-max: 1040px;
  --page-pad: clamp(16px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: var(--gold-dark) #090909;
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 13px;
}

body::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(235, 201, 94, 0.08), transparent 18%, transparent 82%, rgba(235, 201, 94, 0.08)),
    #090909;
}

body::-webkit-scrollbar-thumb {
  border: 3px solid #090909;
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--gold), var(--gold-dark));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, var(--gold-2), var(--gold));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
select,
label,
.btn {
  cursor: pointer;
}

.site-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(235, 201, 94, 0.56);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px var(--page-pad);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.brand {
  min-width: 0;
}

.brand-mark {
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 34px rgba(235, 201, 94, 0.22);
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(235, 201, 94, 0.18));
}

.brand b span {
  color: var(--gold);
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-nav a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--gold);
}

.lang-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lang-switch a.is-active {
  background: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.btn.dark {
  background: var(--black);
  color: var(--gold);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: center;
  overflow: hidden;
  padding: 132px var(--page-pad) 68px;
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(120px);
  pointer-events: none;
}

.hero::before {
  top: 10%;
  right: -8%;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  background: rgba(235, 201, 94, 0.24);
}

.hero::after {
  right: 18%;
  bottom: -15%;
  width: min(34vw, 440px);
  height: min(34vw, 440px);
  background: rgba(144, 123, 56, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--content-max));
  max-width: var(--content-max);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid rgba(235, 201, 94, 0.24);
  border-radius: 999px;
  background: rgba(235, 201, 94, 0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 84px);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.88;
  text-transform: uppercase;
}

.gold-text {
  display: inline-block;
  background: linear-gradient(110deg, var(--gold-dark), var(--gold), var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-style: italic;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 820px);
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-stats article {
  padding: 18px;
  background: rgba(5, 5, 5, 0.82);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 20px;
  font-style: italic;
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 84px var(--page-pad);
  border-top: 1px solid var(--line);
}

.section > * {
  width: min(100%, var(--content-max));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(30px, 3.9vw, 48px);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.section-lead {
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.cards {
  display: flex;
  gap: 18px;
}

.section > .service-carousel {
  position: relative;
  width: min(calc(100vw - var(--page-pad) * 2), 1360px);
  max-width: none;
  overflow: hidden;
  padding: 4px 0 12px;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.service-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  cursor: grab;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.service-viewport::-webkit-scrollbar {
  display: none;
}

.service-viewport.is-dragging {
  cursor: grabbing;
}

.service-carousel::before,
.service-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(10vw, 130px);
  content: "";
  pointer-events: none;
}

.service-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(5, 5, 5, 0));
}

.service-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), rgba(5, 5, 5, 0));
}

.service-track {
  display: flex;
  width: max-content;
  gap: 22px;
}

.service-track .card {
  opacity: 1;
  transform: none;
}

.card {
  position: relative;
  flex: 0 0 clamp(280px, 25vw, 350px);
  min-height: 235px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-soft);
  padding: 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(235, 201, 94, 0.34);
  background: rgba(235, 201, 94, 0.05);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 32px;
  border-radius: 21px;
  background: rgba(235, 201, 94, 0.12);
  color: var(--gold);
  font-size: 23px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.card h3,
.price-card h3 {
  margin: 0 0 16px;
  font-size: 21px;
  font-style: italic;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.card p,
.price-card p,
.faq-answer {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.showcase-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(235, 201, 94, 0.14), transparent 42%),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12), transparent 30%),
    var(--panel);
}

.mockup-stack {
  position: absolute;
  inset: 42px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 14px;
}

.mockup {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.mockup img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(0.92) brightness(0.72);
}

.mockup::before,
.mockup::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.mockup::before {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.02) 34%, rgba(5, 5, 5, 0.24)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mockup::after {
  background:
    radial-gradient(circle at 22% 16%, rgba(235, 201, 94, 0.24), transparent 28%),
    linear-gradient(180deg, transparent 35%, rgba(5, 5, 5, 0.38));
  mix-blend-mode: screen;
  opacity: 0.58;
}

.mockup.one {
  z-index: 3;
  grid-column: 1 / 6;
  grid-row: 1 / 5;
}

.mockup.two {
  z-index: 2;
  grid-column: 4 / 9;
  grid-row: 3 / 8;
  background: rgba(235, 201, 94, 0.12);
}

.mockup.three {
  z-index: 1;
  grid-column: 1 / 4;
  grid-row: 5 / 9;
}

.pricing-controls {
  display: flex;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 36px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.pricing-controls button {
  min-width: 118px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-controls button.is-active {
  background: var(--gold);
  color: var(--black);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel-soft);
  padding: 26px;
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(235, 201, 94, 0.06);
  color: var(--gold);
  font-size: 24px;
}

.price-card.featured {
  border-color: rgba(235, 201, 94, 0.38);
  background: rgba(235, 201, 94, 0.055);
}

.price {
  margin: 16px 0 24px;
  color: var(--gold);
  font-size: 42px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.price small {
  color: var(--muted);
  font-size: 16px;
  letter-spacing: 0;
}

.price-text {
  max-width: 100%;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.feature-list li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "✓";
}

.price-card .btn {
  margin-top: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.trust-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: end;
}

.trust-head > div {
  max-width: 820px;
}

.trust-head .section-lead {
  align-self: end;
  max-width: 430px;
  margin: 0 0 0 auto;
}

.quote {
  display: flex;
  flex-direction: column;
  min-height: 128px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  will-change: transform;
}

.quote:hover {
  border-color: rgba(235, 201, 94, 0.44);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  transform: scale(1.05);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(235, 201, 94, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.contact-form {
  display: grid;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  padding: clamp(22px, 3vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form .full {
  width: 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.58);
  color: var(--text);
  outline: none;
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(235, 201, 94, 0.62);
  box-shadow: 0 0 0 4px rgba(235, 201, 94, 0.08);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: rgba(255, 143, 143, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 143, 143, 0.08);
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.turnstile-widget {
  min-height: 65px;
}

.contact-form .btn {
  width: fit-content;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--gold);
}

.form-status.is-error {
  color: #ff8f8f;
}

.quote p {
  font-size: 15px;
}

.quote footer {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  transform-origin: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item:hover {
  border-color: rgba(235, 201, 94, 0.34);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  transform: scaleX(1.01);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-style: italic;
  font-weight: 900;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 26px 26px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta {
  width: min(calc(100% - var(--page-pad) * 2), var(--content-max));
  margin: 0 auto 96px;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: clamp(36px, 5vw, 68px);
  text-align: center;
}

.cta h2 {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: clamp(32px, 4.8vw, 60px);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.cta p {
  max-width: 620px;
  margin: 0 auto 42px;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  opacity: 0.78;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: 44px var(--page-pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer > p {
  font-size: 12px;
  line-height: 1.55;
}

.footer .brand b {
  display: grid;
  gap: 1px;
  line-height: 0.95;
}

.footer .brand b span {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.quote.reveal.is-visible {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.quote.reveal.is-visible:hover {
  transform: scale(1.05);
}

.faq-item.reveal.is-visible {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-item.reveal.is-visible:hover {
  transform: scaleX(1.01);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold);
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 980px) {
  .primary-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.is-open .primary-nav {
    position: absolute;
    top: 100%;
    right: var(--page-pad);
    left: var(--page-pad);
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.96);
  }

  .site-header.is-open .primary-nav a {
    padding: 14px;
  }

  .section-head,
  .split,
  .footer {
    align-items: start;
  }

  .split,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
  }

  .section-head > div,
  .section-head .section-lead {
    width: 100%;
    max-width: 100%;
  }

  .section-head .section-lead {
    margin: 0;
  }

  .trust-head {
    grid-template-columns: 1fr;
  }

  .trust-head .section-lead {
    max-width: 100%;
    margin: 0;
  }

  .price-grid,
  .testimonial-grid,
  .hero-stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .showcase-panel {
    min-height: 400px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .site-header .brand {
    gap: 7px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }

  .site-header .brand-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .site-header .brand b {
    display: grid;
    gap: 1px;
  }

  .site-header .brand b span {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 56px;
  }

  .hero h1,
  .section h2,
  .cta h2 {
    letter-spacing: -0.035em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-actions,
  .footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .pricing-controls button {
    width: 100%;
  }

  .pricing-controls {
    display: flex;
    width: 100%;
  }

  .section {
    padding-block: 60px;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .card,
  .price-card {
    border-radius: 22px;
    padding: 20px;
  }

  .card {
    flex-basis: min(82vw, 310px);
  }

  .showcase-panel {
    min-height: 320px;
    border-radius: 26px;
  }

  .mockup-stack {
    inset: 24px;
  }

  .cta {
    width: calc(100% - 32px);
    margin-bottom: 72px;
    border-radius: 26px;
  }
}
