:root {
  --ink: #16191d;
  --ink-2: #2c3138;
  --paper: #f4f5f7;
  --white: #ffffff;
  --line: #cfd3d8;
  --muted: #68717c;
  --cobalt: #1746a2;
  --cobalt-light: #dce6f8;
  --wine: #8b1e2d;
  --signal: #e8ff4f;
  --header-height: 72px;
  --content: 1320px;
  --font-sans: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

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

html.ip-language-pending body {
  visibility: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

button,
input,
select,
textarea {
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.container,
.nav-inner,
.hero-content,
.hero-prices-grid {
  width: min(var(--content), calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.section-space {
  padding: 112px 0;
}

.gold-text {
  color: var(--wine);
}

.section-tag,
.hero-badge,
.showcase-brand,
.showcase-spec,
.brands-label,
.feature-icon,
.process-num,
.testimonial-stars,
.author-watch,
.footer-col h4,
.why-visual span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-tag {
  margin-bottom: 18px;
  color: var(--cobalt);
}

.section-title {
  margin-bottom: 22px;
  font-size: 50px;
  font-weight: 700;
}

.section-desc {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.showcase-cta:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.btn-primary:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.btn-ghost {
  color: var(--white);
  background: rgba(22, 25, 29, 0.28);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.btn-full {
  width: 100%;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.language-trigger:focus-visible,
.language-option:focus-visible,
.faq-item summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

/* Header */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(244, 245, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(22, 25, 29, 0.08);
}

.nav-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  font-weight: 800;
}

.logo-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 1px;
  font-family: var(--font-mono);
  font-size: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  padding: 24px 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 16px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.language-selector {
  position: relative;
}

.language-trigger {
  display: flex;
  min-width: 116px;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 2px;
  box-shadow: 12px 12px 0 rgba(23, 70, 162, 0.18);
}

.language-option {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 11px;
  background: transparent;
  border-radius: 1px;
  font-size: 13px;
  text-align: left;
}

.language-option small {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.language-option:hover,
.language-option.is-active {
  color: var(--white);
  background: var(--cobalt);
}

.language-option:hover small,
.language-option.is-active small {
  color: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  height: calc(100svh - 104px);
  min-height: 650px;
  max-height: 850px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: rgba(8, 12, 18, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: calc(100% - 148px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 34px;
}

.hero-badge {
  margin-bottom: 22px;
  color: var(--signal);
}

.hero-title {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 68px;
  font-weight: 700;
}

.hero-title .gold-text {
  color: var(--white);
}

.hero-sub {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero-sub strong {
  color: var(--signal);
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-prices-grid {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 148px;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(244, 245, 247, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-price-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}

.hero-price-card:last-child {
  border-right: 0;
}

.hero-price-card img {
  width: 70px;
  height: 96px;
  object-fit: cover;
}

.hero-price-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-price-brand {
  margin-bottom: 7px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-price-market {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-decoration: line-through;
}

.hero-price-offer {
  color: var(--wine);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

/* Brands */
.brands {
  color: var(--white);
  background: var(--cobalt);
}

.brands-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.brands-label {
  margin: 0;
  color: var(--signal);
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.brands-grid span {
  font-size: 14px;
  font-weight: 700;
}

/* Current offers */
.showcase {
  background: var(--white);
}

.showcase .section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.showcase .section-tag {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.showcase .section-title,
.showcase .section-desc {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 300px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showcase-img {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--ink);
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.035);
}

.showcase-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 8px;
  color: var(--ink);
  background: var(--signal);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.showcase-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px 20px;
}

.showcase-brand {
  margin-bottom: 9px;
  color: var(--cobalt);
}

.showcase-info h3 {
  margin-bottom: 9px;
  font-size: 18px;
}

.showcase-spec {
  min-height: 34px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 10px;
}

.showcase-prices {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.showcase-market {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-decoration: line-through;
}

.showcase-offer {
  color: var(--wine);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
}

.showcase-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 1px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.showcase-cta:hover {
  background: var(--cobalt);
}

.showcase-footer {
  padding-top: 28px;
  border-bottom: 1px solid var(--ink);
}

.showcase-footer p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.showcase-footer a {
  color: var(--cobalt);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Why */
.why-us {
  background: var(--cobalt-light);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 74px;
}

.why-visual {
  position: relative;
  min-height: 760px;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-visual span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 15px;
  color: var(--white);
  background: var(--wine);
}

.why-content .section-header {
  margin-bottom: 40px;
}

.features-grid {
  border-bottom: 1px solid var(--ink);
}

.feature-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 20px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
}

.feature-icon {
  grid-row: 1 / 3;
  color: var(--wine);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.feature-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Process */
.process {
  background: var(--paper);
}

.process .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.process .section-tag {
  margin: 0 0 10px;
}

.process .section-title {
  max-width: 650px;
  margin: 0;
  text-align: right;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.process-card {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.process-card:last-child {
  border-right: 0;
}

.process-num {
  margin-bottom: 25px;
  color: var(--wine);
}

.process-img {
  height: 210px;
  margin-bottom: 25px;
  overflow: hidden;
}

.process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Reviews */
.testimonials {
  color: var(--white);
  background: var(--wine);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 80px;
}

.testimonials .section-tag {
  color: var(--signal);
}

.testimonials .section-title {
  margin: 0;
}

.testimonials .gold-text {
  color: var(--white);
}

.testimonial-grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
}

.testimonial-card {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
}

.testimonial-stars {
  margin-bottom: 15px;
  color: var(--signal);
}

.testimonial-text {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 19px;
  font-weight: 600;
}

.testimonial-author {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  font-size: 13px;
}

.author-info span,
.author-watch {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

/* Form */
.sell {
  background: var(--white);
}

.sell-wrapper {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 84px;
}

.sell-info {
  position: sticky;
  top: 110px;
  align-self: start;
}

.sell-desc {
  margin-bottom: 32px;
  color: var(--muted);
}

.sell-benefits {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.sell-benefits li {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.sell-benefits li span {
  color: var(--wine);
  font-family: var(--font-mono);
}

.sell-form {
  display: grid;
  gap: 19px;
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--cobalt);
}

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

.form-group {
  min-width: 0;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1px;
  outline: 0;
}

.form-group input,
.form-group select {
  height: 52px;
}

.form-group textarea {
  min-height: 92px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cobalt);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

/* FAQ */
.faq {
  background: var(--cobalt-light);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 84px;
}

.faq .section-header {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-list {
  border-bottom: 1px solid var(--ink);
}

.faq-item {
  border-top: 1px solid var(--ink);
}

.faq-item summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--wine);
  font-family: var(--font-mono);
  font-size: 23px;
  content: "+";
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item > p {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 76px 0 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(0, 1.8fr);
  gap: 70px;
  padding-bottom: 60px;
}

.footer .logo-icon {
  color: var(--ink);
  background: var(--signal);
}

.footer-brand > p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: var(--signal);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  background: rgba(22, 25, 29, 0.72);
  backdrop-filter: blur(10px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

.modal {
  width: min(480px, 100%);
  padding: 42px;
  background: var(--white);
  border-top: 6px solid var(--cobalt);
  box-shadow: 18px 18px 0 rgba(232, 255, 79, 0.84);
}

.modal-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--white);
  background: var(--wine);
  font-family: var(--font-mono);
  font-size: 11px;
}

.modal h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.modal p {
  margin-bottom: 28px;
  color: var(--muted);
}

/* Motion */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

html[dir="rtl"] .language-option,
html[dir="rtl"] .faq-item summary {
  text-align: right;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .brands-grid {
  direction: rtl;
}

@media (max-width: 1180px) {
  .hero-prices-grid {
    grid-template-columns: repeat(3, 1fr);
    height: 214px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    height: calc(100% - 214px);
  }

  .hero-price-card {
    padding: 10px 14px;
  }

  .hero-price-card img {
    width: 58px;
    height: 78px;
  }

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

  .showcase-img {
    min-height: 260px;
  }

  .why-layout {
    gap: 50px;
  }
}

@media (max-width: 980px) {
  .container,
  .nav-inner,
  .hero-content,
  .hero-prices-grid {
    width: min(var(--content), calc(100% - 48px));
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: 56px;
  }

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

  .why-layout,
  .sell-wrapper,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .why-visual {
    min-height: 560px;
  }

  .sell-info,
  .faq .section-header {
    position: static;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .section-space {
    padding: 76px 0;
  }

  .section-title {
    font-size: 39px;
  }

  .nav-inner {
    grid-template-columns: auto 1fr;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px;
    overflow-y: auto;
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 0;
  }

  .hero-image,
  .hero-overlay {
    bottom: 186px;
    height: auto;
  }

  .hero-content {
    min-height: 620px;
    height: auto;
    padding-top: 80px;
    padding-bottom: 66px;
  }

  .hero-title {
    font-size: 46px;
  }

  .hero-prices-grid {
    position: relative;
    width: 100%;
    height: 186px;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    margin: 0;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .hero-price-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .hero-price-card img {
    width: 54px;
    height: 78px;
  }

  .brands-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase .section-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .showcase .section-tag {
    grid-column: auto;
    margin-bottom: 0;
  }

  .process .section-header {
    display: block;
  }

  .process .section-tag {
    margin-bottom: 18px;
  }

  .process .section-title {
    text-align: left;
  }

  html[dir="rtl"] .process .section-title {
    text-align: right;
  }

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

  .process-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-img {
    height: 320px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .container,
  .nav-inner,
  .hero-content {
    width: calc(100% - 32px);
  }

  .section-space {
    padding: 64px 0;
  }

  .section-title {
    font-size: 33px;
  }

  .logo-text {
    font-size: 13px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-actions {
    gap: 7px;
  }

  .language-trigger {
    min-width: 91px;
    padding: 0 9px;
  }

  #languageCurrent {
    display: block;
    max-width: 62px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
  }

  html[dir="rtl"] .language-menu {
    right: 16px;
    left: 16px;
  }

  .hero-content {
    min-height: 600px;
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .hero-sub {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-prices-grid {
    height: 172px;
    grid-template-columns: repeat(6, minmax(164px, 1fr));
  }

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

  .showcase-card {
    grid-template-columns: minmax(135px, 0.85fr) minmax(0, 1.15fr);
  }

  .showcase-img {
    min-height: 300px;
  }

  .why-layout,
  .sell-wrapper,
  .faq-layout {
    gap: 42px;
  }

  .why-visual {
    min-height: 410px;
  }

  .feature-card {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .process-img {
    height: 230px;
  }

  .testimonial-text {
    font-size: 17px;
  }

  .testimonial-author {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .sell-form {
    padding: 26px 20px;
  }

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

  .faq-item summary {
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}
