:root {
  --bg: #070b14;
  --card: #ffffff;
  --card-border: #e5e7eb;
  --muted: #9ca3af;
  --muted-2: #6b7280;
  --text: #ffffff;
  --dark-text: #000000;
  --cyan: #00d2c6;
  --cyan-hover: #00e3d6;
  --danger: #ef4444;
  --danger-bg: #fef2f2;
  --footer: #11131a;
  --brand-border: #1a2536;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Helvetica Neue", Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
}

.page-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.brand-mark {
  display: block;
  width: auto;
  height: 36px;
}

.page-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(150, 150, 150, 0.3);
}

.top-shell {
  display: flex;
  width: 100%;
  position: relative;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  background: rgba(3, 18, 29, 0.72);
  backdrop-filter: blur(20px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.header-menu-toggle {
  display: none;
  flex-direction: column;
  padding: 10px;
  gap: 5px;
}

.header-menu-toggle span {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.header-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-item {
  position: relative;
}

.header-link,
.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.header-link:hover,
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  background: rgba(255, 255, 255, 0.05);
  color: #86e9ff;
}

.nav-dropdown > summary {
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 720px;
  padding: 16px;
  border: 1px solid rgba(134, 233, 255, 0.12);
  border-radius: 18px;
  background: rgba(3, 18, 29, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-panel-sm {
  min-width: 240px;
  grid-template-columns: 1fr;
}

.nav-group {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.nav-group h3 {
  margin: 0 0 12px;
  color: #86e9ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links-grid {
  display: grid;
  gap: 8px;
}

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

.nav-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.35;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-panel a:hover {
  background: rgba(0, 209, 209, 0.12);
  color: #00d1d1;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.lang-switcher {
  position: relative;
}

.lang-button {
  min-width: 60px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.25s ease, color 0.25s ease,
    background-color 0.25s ease;
}

.lang-button:hover,
.lang-button[aria-expanded="true"] {
  border-color: #00d1d1;
  color: #00d1d1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  min-width: 140px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 14, 0.96);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.lang-switcher.open .lang-menu {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  transition: background 0.3s ease, color 0.3s ease;
}

.lang-menu a:hover,
.lang-menu a.is-active {
  background: rgba(0, 242, 218, 0.12);
  color: #00ffc8;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(150, 150, 150, 0.5);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease,
    background-color 0.25s ease;
}

.action-link:hover,
.header-menu-toggle:hover {
  border-color: #00d1d1;
  color: #00d1d1;
}

.action-button,
.submit-button {
  border: 0;
  background: linear-gradient(90deg, #28e0b3 0%, #8af7b8 100%);
  color: #15241e;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-button:hover,
.submit-button:hover {
  box-shadow: 0 12px 28px rgba(40, 224, 179, 0.22);
  transform: translateY(-1px);
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.main-content {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 32px 48px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: stretch;
}

.hero-panel {
  padding-top: 0;
  align-self: center;
}

.hero-title {
  margin: 0 0 47px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(270deg, #00FFC8 0%, #B2FFE7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.hero-subtitle p {
  margin: 0;
  white-space: pre-line;
}

.hero-label {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-list li {
  display: flex;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
}

.check-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 2px solid var(--cyan);
  border-radius: 999px;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
}

.brands-block {
  margin-top: 41px;
}

.brands-title {
  margin: 0 0 20px;
  padding-right: 16px;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  background: linear-gradient(270deg, #00FFC8 0%, #B2FFE7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brands-grid {
  display: grid;
  max-width: 512px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 81px;
}

.brand-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-column {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
}

.form-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #E8FFF7 100%);
  padding: 30px 20px;
  height: 100%;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 4px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea,
.select-trigger {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: transparent;
  color: var(--dark-text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field textarea {
  padding: 12px 16px;
}

.field textarea {
  min-height: 96px;
  resize: none;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus,
.select-trigger.is-open,
.select-trigger:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.field input.input-error,
.field textarea.input-error,
.select-trigger.input-error {
  border-color: var(--danger);
  background: var(--danger-bg);
  box-shadow: 0 0 0 1px var(--danger);
}

.select-shell {
  position: relative;
}

.phone-field{
  position: relative;
  z-index: 1;
}

.country-iti-shell, .phone-country-shell{
  position: relative;
}

.country-iti-shell {
  z-index: 1;
}

.phone-country-shell {
  z-index: 1;
}

.country-field{
  position: relative;
  z-index: 1;
}

.country-iti-shell{
  z-index: 1;
}

.country-field:has(.iti__arrow--up),
.phone-field:has(.iti__arrow--up),
.country-iti-shell:has(.iti__arrow--up),
.phone-country-shell:has(.iti__arrow--up) {
  z-index: 80;
}

.country-iti-shell .iti,
.phone-country-shell .iti {
  width: 100%;
}

.country-iti-shell .iti__tel-input,
.phone-country-shell .iti__tel-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: transparent;
  color: var(--dark-text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.country-iti-shell .iti__tel-input {
  padding: 12px 44px 12px 16px !important;
  cursor: pointer;
  pointer-events: none;
}

.phone-country-shell .iti__tel-input {
  cursor: pointer;
}

.country-iti-shell .iti__selected-country {
  width: 100%;
  right: 0;
  left: 0;
  height: 100%;
  padding: 0 16px;
  border: 0;
  background: transparent;
  justify-content: flex-end;
}

.country-iti-shell .iti__dial-code{
  display: none;
}

.country-iti-shell .iti__selected-country-primary {
  width: 100%;
  justify-content: flex-end;
  gap: 0;
  background-color: transparent !important;
}

.country-iti-shell .iti__arrow {
  margin-top: -6px;
  margin-left: 0;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #6b7280;
  border-bottom: 1.5px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.country-iti-shell .iti__arrow.iti__arrow--up {
  margin-top: 0;
  transform: rotate(-135deg) translate(-2px, -2px);
}

.country-iti-shell .iti__country-container {
  z-index: 2;
  right: 0;
  left: 0;
  width: 100%;
}

.country-iti-shell .iti__flag,
.phone-country-shell .iti__flag {
  display: none;
}

.country-iti-shell .iti__dropdown-content,
.phone-country-shell .iti__dropdown-content {
  background: #ffffff;
  width: 100% !important;
  height: auto !important;
}

.country-iti-shell .iti__dropdown-content {
  position: relative;
  z-index: 3;
}

.phone-country-shell .iti__dropdown-content {
  position: relative;
  z-index: 3;
}

.country-iti-shell .iti__search-input,
.phone-country-shell .iti__search-input {
  color: #111827;
  background: #ffffff;
  padding-left: 32px;
  border: 0;
}

.country-iti-shell .iti__country-list,
.phone-country-shell .iti__country-list {
  color: #111827;
  background: #ffffff;
}

.country-iti-shell .iti__country,
.phone-country-shell .iti__country {
  color: #111827;
}

.country-iti-shell .iti__country.iti__highlight,
.phone-country-shell .iti__country.iti__highlight {
  background: #f3f4f6;
}

.country-iti-shell .iti__search-icon,
.phone-country-shell .iti__search-icon {
  left: 10px;
}

.country-iti-shell .iti__dial-code,
.phone-country-shell .iti__dial-code {
  color: #6b7280;
}

.country-iti-shell .iti__country-list .iti__dial-code,
.country-iti-shell .iti__selected-dial-code {
  display: none;
}

.country-iti-shell .iti__selected-country:focus-visible,
.country-iti-shell .iti__tel-input:focus,
.phone-country-shell .iti__selected-country:focus-visible,
.phone-country-shell .iti__tel-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan);
}

.country-iti-shell .iti__tel-input.input-error,
.phone-country-shell .iti__tel-input.input-error {
  border-color: var(--danger);
  background: var(--danger-bg);
  box-shadow: 0 0 0 1px var(--danger);
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  text-align: left;
}

.select-trigger-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-placeholder {
  color: #9ca3af;
}

.select-chevron {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 1.5px solid #6b7280;
  border-bottom: 1.5px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -6px;
}

.select-trigger.is-open .select-chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 30;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.select-search {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #f3f4f6;
  padding: 12px 16px;
  outline: none;
  color: #111827;
}

.select-options {
  max-height: 240px;
  overflow-y: auto;
}

.select-group-label {
  padding: 8px 16px;
  background: rgba(249, 250, 251, 0.8);
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.select-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 10px 16px;
  color: #1f2937;
  font-size: 14px;
  text-align: left;
}

.select-option:hover {
  background: #f3f4f6;
}

.select-option.is-selected {
  background: rgba(0, 210, 198, 0.2);
  color: var(--cyan);
  font-weight: 500;
}

.option-meta {
  color: #9ca3af;
  flex: 0 0 auto;
}

.empty-state {
  padding: 14px 16px;
  color: #9ca3af;
  font-size: 13px;
}

.phone-row {
  display: flex;
  width: 100%;
}

.phone-country-shell {
  width: 100px;
  flex: 0 0 auto;
}

.phone-country-shell .iti__tel-input {
  padding-left: 12px !important;
  padding-right: 32px !important;
  pointer-events: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  background: transparent;
}

.phone-country-shell .iti__selected-country {
  width: 100%;
  height: 100%;
  padding-left: 12px;
  padding-right: 10px;
  justify-content: space-between;
}

.phone-country-shell .iti__selected-country-primary {
  width: 100%;
  justify-content: space-between;
  background-color: transparent !important;
  order: 1;
  margin-left: 6px;
}

.phone-country-shell .iti__arrow {
  margin-top: -6px;
  margin-left: 0;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #6b7280;
  border-bottom: 1.5px solid #6b7280;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.phone-country-shell .iti__arrow.iti__arrow--up {
  margin-top: 0;
  transform: rotate(-135deg) translate(-2px, -2px);
}

.phone-country-shell .iti__selected-dial-code {
  color: #111827;
  font-size: 14px;
  min-width: 40px;
  margin-left: 0;
}

.phone-country-shell .iti__country-container {
  z-index: 2;
  width: 100%;
}

.phone-country-shell .iti__dropdown-content {
  width: var(--phone-dropdown-width, 100%) !important;
}

.phone-input-shell {
  flex: 1;
}

.phone-input-shell input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.error-text {
  margin: 4px 0 0;
  color: var(--danger);
  font-size: 12px;
}

.textarea-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.hint-text {
  color: #9ca3af;
  font-size: 12px;
  white-space: nowrap;
}

.submit-button {
  margin-top: 8px;
  width: 100%;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
}

.submit-button[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}

.submit-button:active {
  transform: scale(0.98);
}

.disclaimer-text {
  margin: 0;
  padding-bottom: 8px;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.6;
}

.submit-feedback {
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.5;
}

.disclaimer-text a {
  color: var(--cyan);
  font-weight: 500;
}

.success-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  text-align: center;
}

.success-card.hidden {
  display: none;
}

.success-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  color: var(--cyan);
}

.success-icon svg {
  width: 80px;
  height: 80px;
}

.success-card h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 30px;
}

.success-card p {
  margin: 0 0 32px;
  color: #4b5563;
  line-height: 1.75;
}

.footer-area {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  padding: 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
  width: 100%;
  max-width: 1280px;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer h4 {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 12px;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #00d1d1;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.socials a:hover {
  color: #00d1d1;
}

.socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#contactForm.hidden {
  display: none;
}

.submit-button{
  background: #01A9BE;
  box-sizing: border-box;
  color: #fff;
}

@media (max-width: 1099px) {
  .header-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-nav {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .header-menu {
    display: none;
    scrollbar-width: none;
  }

  .header-menu::-webkit-scrollbar {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

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

  .header-nav.open .header-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(134, 233, 255, 0.12);
    border-radius: 18px;
    background: rgba(3, 18, 29, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    justify-content: flex-start;
  }

  .header-nav.open .header-actions {
    margin-left: 0;
  }

  .header-nav.open .header-item {
    width: 100%;
  }

  .header-nav.open .header-link,
  .header-nav.open .nav-dropdown > summary {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
  }

  .header-nav.open .nav-panel,
  .header-nav.open .nav-panel-sm {
    position: static;
    min-width: 0;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

  .header-nav.open .nav-links-grid-compact {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .main-content {
    padding: 120px 96px 48px;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 96px;
  }
}

@media (max-width: 1024px) {
  .top-shell,
  .footer-area {
    padding-right: 32px;
    padding-left: 32px;
  }

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

  .hero-title, .hero-subtitle, .hero-label{
    text-align: center;
  }

  .hero-list, .brands-block {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .brands-block {
    margin: 40px auto 0;
  }

  .brands-title{
    font-size: 28px;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .top-shell{
    padding-right: 10px;
    padding-left: 10px;
  }

  .footer-area {
    padding-right: 24px;
    padding-left: 24px;
  }

  .lang-switcher {
    margin-left: auto;
  }

  .header-menu-toggle {
    display: inline-flex;
    margin-left: 0;
    gap: 4px;
  }

  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .header-nav.open {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid rgba(134, 233, 255, 0.12);
    border-radius: 18px;
    background: rgba(3, 18, 29, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .header-menu,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-menu {
    width: 100%;
  }

  .header-actions {
    display: none;
    padding: 0 14px;
  }

  .header-nav.open .header-actions {
    display: flex;
    margin-left: 0;
  }

  .header-link,
  .nav-dropdown > summary,
  .action-link,
  .action-button {
    justify-content: space-between;
    min-height: 44px;
  }

  .header-link,
  .nav-dropdown > summary {
    width: 100%;
  }

  .action-link,
  .action-button {
    width: fit-content;
    min-height: 36px;
  }

  .nav-panel,
  .nav-panel-sm {
    position: static;
    min-width: 0;
    margin-top: 10px;
    grid-template-columns: 1fr;
  }

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

  .brand-link {
    gap: 8px;
  }

  .brand-text {
    font-size: 12px;
  }

  .top-shell {
    padding: 6px 12px;
  }

  .brand-mark{
    height: 28px;
  }

  .header-menu-toggle span{
    width: 16px;
  }

  .main-content {
    padding: 108px 24px 48px;
  }

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

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-list li {
    font-size: 14px;
    line-height: 18px;
  }

  .brands-title {
    font-size: 20px;
    text-align: center;
    line-height: 26px;
  }

  .form-card {
    padding: 24px;
  }

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

  .brands-grid{
    gap: 12px;
  }

  .brand-tile{
    height: 50px;
  }

  .field input,
  .field textarea,
  .select-trigger {
    font-size: 16px;
  }

  .select-trigger{
    max-width: calc(100vw - 96px);
  }
}
