@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/syne-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/syne-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/syne-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2');
}

:root {
  --sma-bg-darkest: #090b0e;
  --sma-bg-dark: #0f1217;
  --sma-bg-card: #151921;
  --sma-bg-card-hover: #1b202a;
  --sma-bg-glass: rgba(21, 25, 33, 0.85);
  --sma-gold-primary: #d4af37;
  --sma-gold-light: #f3e5ab;
  --sma-gold-dark: #aa8624;
  --sma-gold-gradient: linear-gradient(135deg, #f5d77f 0%, #d4af37 50%, #997519 100%);
  --sma-gold-border: rgba(212, 175, 55, 0.18);
  --sma-gold-border-bright: rgba(212, 175, 55, 0.45);
  --sma-text-white: #ffffff;
  --sma-text-light: #e5e7eb;
  --sma-text-muted: #949ca9;
  --sma-border-subtle: rgba(255, 255, 255, 0.06);
  --sma-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --sma-font-heading: 'Syne', sans-serif;
  --sma-font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 14px;
  background-color: var(--sma-bg-darkest);
}

body {
  font-family: var(--sma-font-body);
  background-color: var(--sma-bg-darkest);
  color: var(--sma-text-light);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--sma-transition);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.sma-container {
  width: 100%;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.sma-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  background-color: rgba(9, 11, 14, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sma-gold-border);
  transition: var(--sma-transition);
}

.sma-header.sma-scrolled {
  background-color: rgba(9, 11, 14, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.sma-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 12px;
  width: 100%;
  flex-wrap: nowrap;
}

.sma-brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sma-brand-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
}

.sma-desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.sma-nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.sma-nav-item {
  position: relative;
  flex-shrink: 0;
}

.sma-nav-anchor {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--sma-text-muted);
  padding: 5px 2px;
  display: inline-block;
  transition: var(--sma-transition);
  white-space: nowrap;
}

.sma-nav-anchor:hover,
.sma-nav-anchor.sma-active {
  color: var(--sma-gold-light);
}

.sma-nav-anchor::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sma-gold-gradient);
  transition: var(--sma-transition);
}

.sma-nav-anchor:hover::after,
.sma-nav-anchor.sma-active::after {
  width: 100%;
}

.sma-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.sma-lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sma-gold-border);
  border-radius: 4px;
  padding: 2px;
  flex-shrink: 0;
}

.sma-lang-link {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 3px;
  color: var(--sma-text-muted);
  letter-spacing: 0.4px;
  line-height: 1;
}

.sma-lang-link.sma-active-lang {
  background: var(--sma-gold-gradient);
  color: #000000;
}

.sma-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--sma-transition);
}

.sma-btn-gold {
  background: var(--sma-gold-gradient);
  color: #0d0f12;
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.22);
}

.sma-btn-gold:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f5d77f 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(212, 175, 55, 0.35);
}

.sma-btn-outline {
  background: transparent;
  color: var(--sma-gold-light);
  border: 1px solid var(--sma-gold-border-bright);
}

.sma-btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--sma-gold-light);
  color: #ffffff;
  transform: translateY(-1px);
}

.sma-burger-toggle {
  display: none;
  background: transparent;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--sma-gold-border);
  border-radius: 4px;
  padding: 0;
  flex-shrink: 0;
}

.sma-burger-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background-color: var(--sma-gold-light);
  border-radius: 1px;
  transition: var(--sma-transition);
}

.sma-burger-bar:nth-child(1) {
  transform: translate(-50%, -6px);
}

.sma-burger-bar:nth-child(2) {
  transform: translate(-50%, -1px);
}

.sma-burger-bar:nth-child(3) {
  transform: translate(-50%, 4px);
}

.sma-burger-toggle.sma-open .sma-burger-bar:nth-child(1) {
  transform: translate(-50%, -1px) rotate(45deg);
}

.sma-burger-toggle.sma-open .sma-burger-bar:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -1px) scale(0);
}

.sma-burger-toggle.sma-open .sma-burger-bar:nth-child(3) {
  transform: translate(-50%, -1px) rotate(-45deg);
}

.sma-mobile-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: calc(100vh - 64px);
  background-color: rgba(9, 11, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 16px 14px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--sma-transition);
  border-bottom: 2px solid var(--sma-gold-primary);
}

.sma-mobile-drawer.sma-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sma-mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.sma-mobile-nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sma-text-light);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: block;
}

.sma-mobile-nav-link:hover,
.sma-mobile-nav-link.sma-active {
  color: var(--sma-gold-light);
  padding-left: 6px;
}

.sma-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sma-hero-arch {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 50px;
  background-color: var(--sma-bg-darkest);
  overflow: hidden;
}

.sma-hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sma-hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) contrast(1.1);
}

.sma-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12) 0%, rgba(9, 11, 14, 0.85) 60%, rgba(9, 11, 14, 0.98) 100%);
}

.sma-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.sma-hero-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
}

.sma-hero-text-col {
  flex: 1 1 500px;
  max-width: 650px;
}

.sma-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--sma-gold-border);
  border-radius: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sma-gold-light);
  margin-bottom: 12px;
}

.sma-badge-dot {
  width: 4px;
  height: 4px;
  background-color: var(--sma-gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--sma-gold-primary);
}

.sma-hero-title {
  font-family: var(--sma-font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
}

.sma-hero-title span {
  background: var(--sma-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.sma-hero-lead {
  font-size: 0.9rem;
  color: #d1d5db;
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.sma-hero-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.sma-hero-side-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--sma-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  padding: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.sma-hero-side-title {
  font-family: var(--sma-font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sma-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--sma-border-subtle);
  padding-bottom: 6px;
}

.sma-hero-stat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sma-hero-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--sma-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 6px;
}

.sma-hero-stat-label {
  color: var(--sma-text-muted);
}

.sma-hero-stat-val {
  font-weight: 700;
  color: #ffffff;
}

.sma-page-banner {
  position: relative;
  padding-top: 105px;
  padding-bottom: 40px;
  background-color: var(--sma-bg-dark);
  border-bottom: 1px solid var(--sma-gold-border);
  overflow: hidden;
}

.sma-page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sma-page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) contrast(1.15);
}

.sma-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.8) 0%, rgba(9, 11, 14, 0.96) 100%);
}

.sma-page-banner-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.sma-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sma-text-muted);
  margin-bottom: 10px;
}

.sma-breadcrumbs a:hover {
  color: var(--sma-gold-light);
}

.sma-page-title {
  font-family: var(--sma-font-heading);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 10px;
}

.sma-page-lead {
  font-size: 0.88rem;
  color: #c5c9d3;
  line-height: 1.55;
}

.sma-section {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.sma-section-alt {
  background-color: var(--sma-bg-dark);
}

.sma-section-darkest {
  background-color: var(--sma-bg-darkest);
}

.sma-section-header {
  margin-bottom: 35px;
}

.sma-section-header.sma-center {
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.sma-section-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--sma-gold-primary);
  margin-bottom: 6px;
  display: block;
}

.sma-section-title {
  font-family: var(--sma-font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
}

.sma-section-desc {
  font-size: 0.84rem;
  color: var(--sma-text-muted);
  margin-top: 8px;
  line-height: 1.55;
}

.sma-arch-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--sma-gold-border);
  background-color: var(--sma-bg-card);
  border-radius: 6px;
  overflow: hidden;
}

.sma-arch-column-item {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border-right: 1px solid var(--sma-gold-border);
  border-bottom: 1px solid var(--sma-gold-border);
  position: relative;
  transition: var(--sma-transition);
  background: transparent;
}

.sma-arch-column-item:last-child {
  border-right: none;
}

.sma-arch-column-item:hover {
  background: var(--sma-bg-card-hover);
}

.sma-arch-column-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sma-gold-gradient);
  transition: var(--sma-transition);
}

.sma-arch-column-item:hover::before {
  width: 100%;
}

.sma-arch-num {
  font-family: var(--sma-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sma-gold-primary);
  opacity: 0.6;
  margin-bottom: 10px;
}

.sma-arch-col-title {
  font-family: var(--sma-font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.sma-arch-col-text {
  font-size: 0.8rem;
  color: var(--sma-text-muted);
  line-height: 1.5;
}

.sma-card-flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sma-card-flex-3 {
  flex: 1 1 calc(33.333% - 18px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--sma-transition);
}

.sma-card-flex-3:hover {
  transform: translateY(-3px);
  border-color: var(--sma-gold-border-bright);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sma-card-flex-2 {
  flex: 1 1 calc(50% - 18px);
  min-width: 270px;
  display: flex;
  flex-direction: column;
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--sma-transition);
}

.sma-card-flex-2:hover {
  transform: translateY(-3px);
  border-color: var(--sma-gold-border-bright);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.sma-card-media {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.sma-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sma-card-flex-3:hover .sma-card-media img,
.sma-card-flex-2:hover .sma-card-media img {
  transform: scale(1.03);
}

.sma-card-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(9, 11, 14, 0.88);
  border: 1px solid var(--sma-gold-border);
  padding: 2px 7px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sma-gold-light);
  border-radius: 3px;
}

.sma-card-body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  flex-grow: 1;
}

.sma-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sma-gold-primary);
  margin-bottom: 6px;
}

.sma-card-title {
  font-family: var(--sma-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.sma-card-text {
  font-size: 0.81rem;
  color: var(--sma-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.sma-card-features-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 10px;
}

.sma-card-feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--sma-text-light);
}

.sma-card-feature-bullet {
  width: 4px;
  height: 4px;
  background-color: var(--sma-gold-primary);
  border-radius: 50%;
}

.sma-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sma-split-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.sma-split-col {
  flex: 1 1 350px;
}

.sma-split-media {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--sma-gold-border);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.sma-split-media img {
  width: 100%;
  height: auto;
  display: block;
}

.sma-feature-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.sma-feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sma-check-box {
  width: 16px;
  height: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--sma-gold-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sma-check-box svg {
  width: 9px;
  height: 9px;
  stroke: var(--sma-gold-light);
}

.sma-feature-check-text strong {
  display: block;
  font-size: 0.84rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.sma-feature-check-text p {
  font-size: 0.78rem;
  color: var(--sma-text-muted);
  line-height: 1.45;
}

.sma-spec-table-wrap {
  width: 100%;
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 18px;
}

.sma-spec-row {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
}

.sma-spec-row:last-child {
  border-bottom: none;
}

.sma-spec-row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.015);
}

.sma-spec-label {
  flex: 0 0 180px;
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--sma-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.sma-spec-value {
  flex: 1 1 auto;
  font-size: 0.8rem;
  color: var(--sma-text-light);
}

.sma-form-card {
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  padding: 24px 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.sma-form-flex-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sma-form-group {
  flex: 1 1 calc(50% - 12px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
}

.sma-form-group.sma-full-width {
  flex: 1 1 100%;
}

.sma-form-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--sma-text-light);
  margin-bottom: 5px;
}

.sma-form-label span {
  color: var(--sma-gold-primary);
}

.sma-form-input,
.sma-form-select,
.sma-form-textarea {
  background-color: rgba(9, 11, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 0.81rem;
  transition: var(--sma-transition);
}

.sma-form-input:focus,
.sma-form-select:focus,
.sma-form-textarea:focus {
  border-color: var(--sma-gold-primary);
  background-color: rgba(9, 11, 14, 0.95);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
}

.sma-form-select option {
  background-color: var(--sma-bg-card);
  color: #ffffff;
}

.sma-form-textarea {
  min-height: 80px;
  resize: vertical;
}

.sma-form-disclaimer-box {
  background: rgba(212, 175, 55, 0.06);
  border-left: 3px solid var(--sma-gold-primary);
  padding: 10px 12px;
  border-radius: 0 4px 4px 0;
  margin-top: 4px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  color: var(--sma-text-muted);
  line-height: 1.45;
}

.sma-form-status {
  padding: 8px 12px;
  border-radius: 4px;
  margin-top: 12px;
  font-size: 0.78rem;
  display: none;
}

.sma-form-status.sma-success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.sma-form-status.sma-error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.sma-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sma-faq-item {
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-border-subtle);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--sma-transition);
}

.sma-faq-item.sma-open {
  border-color: var(--sma-gold-border);
}

.sma-faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--sma-font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  gap: 10px;
}

.sma-faq-icon {
  width: 18px;
  height: 18px;
  border: 1px solid var(--sma-gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--sma-transition);
}

.sma-faq-item.sma-open .sma-faq-icon {
  transform: rotate(180deg);
  background: var(--sma-gold-primary);
}

.sma-faq-item.sma-open .sma-faq-icon svg {
  stroke: #000000;
}

.sma-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
  padding-right: 16px;
}

.sma-faq-item.sma-open .sma-faq-content {
  max-height: 500px;
  padding-bottom: 14px;
}

.sma-faq-text {
  font-size: 0.8rem;
  color: var(--sma-text-muted);
  line-height: 1.55;
}

.sma-legal-container {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.sma-legal-block {
  background-color: var(--sma-bg-card);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  padding: 26px 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.sma-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--sma-gold-light);
  border-bottom: 1px solid var(--sma-border-subtle);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.sma-legal-sections-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sma-legal-section-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 14px;
}

.sma-legal-section-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sma-legal-num-heading {
  font-family: var(--sma-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sma-legal-num-heading span {
  color: var(--sma-gold-primary);
  font-size: 0.85rem;
}

.sma-legal-paragraph {
  font-size: 0.8rem;
  color: var(--sma-text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.sma-legal-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 6px;
  margin-left: 5px;
}

.sma-legal-bullet-item {
  position: relative;
  padding-left: 14px;
  font-size: 0.78rem;
  color: var(--sma-text-muted);
  line-height: 1.5;
}

.sma-legal-bullet-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  background-color: var(--sma-gold-primary);
  border-radius: 50%;
}

.sma-info-box-notice {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--sma-gold-border-bright);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.sma-info-box-title {
  font-family: var(--sma-font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sma-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}

.sma-info-box-text {
  font-size: 0.78rem;
  color: #e5e7eb;
  line-height: 1.5;
}

.sma-footer {
  background-color: #06070a;
  border-top: 1px solid var(--sma-gold-border);
  padding-top: 45px;
  padding-bottom: 25px;
  position: relative;
}

.sma-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}

.sma-footer-col-brand {
  flex: 2 1 280px;
  display: flex;
  flex-direction: column;
}

.sma-footer-col-links {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
}

.sma-footer-brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 10px;
}

.sma-footer-brand-desc {
  font-size: 0.78rem;
  color: var(--sma-text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: 300px;
}

.sma-footer-org-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.72rem;
  color: #c0c6d4;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 8px 10px;
}

.sma-footer-col-title {
  font-family: var(--sma-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sma-gold-light);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 6px;
}

.sma-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--sma-gold-gradient);
}

.sma-footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sma-footer-link-item a {
  font-size: 0.74rem;
  color: var(--sma-text-muted);
  display: inline-block;
}

.sma-footer-link-item a:hover {
  color: var(--sma-gold-light);
  transform: translateX(3px);
}

.sma-responsible-notice {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.sma-responsible-badge-18 {
  font-family: var(--sma-font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #000000;
  background: var(--sma-gold-gradient);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sma-responsible-text {
  flex: 1 1 240px;
  font-size: 0.72rem;
  color: var(--sma-text-muted);
  line-height: 1.45;
}

.sma-responsible-text strong {
  color: var(--sma-gold-light);
}

.sma-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.7rem;
  color: var(--sma-text-muted);
}

.sma-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sma-footer-bottom-links a:hover {
  color: var(--sma-gold-light);
}

.sma-cta-bar {
  background: linear-gradient(135deg, #181d26 0%, #0d0f12 100%);
  border: 1px solid var(--sma-gold-border);
  border-radius: 6px;
  padding: 26px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
}

.sma-cta-content {
  max-width: 520px;
}

.sma-cta-title {
  font-family: var(--sma-font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 6px;
}

.sma-cta-text {
  font-size: 0.8rem;
  color: var(--sma-text-muted);
  line-height: 1.5;
}

.sma-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sma-error-page-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 75px;
  padding-bottom: 45px;
}

.sma-error-code {
  font-family: var(--sma-font-heading);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  background: var(--sma-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.sma-error-title {
  font-family: var(--sma-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sma-error-text {
  font-size: 0.84rem;
  color: var(--sma-text-muted);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

@media (max-width: 1200px) {
  .sma-desktop-nav {
    display: none !important;
  }
  .sma-header-actions .sma-btn {
    display: none !important;
  }
  .sma-burger-toggle {
    display: flex !important;
  }
  .sma-card-flex-3 {
    flex: 1 1 calc(50% - 18px);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13.5px;
  }
  .sma-container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .sma-header {
    height: 56px;
  }
  .sma-nav-wrapper {
    height: 56px;
    gap: 8px;
  }
  .sma-brand-logo {
    height: 26px;
    max-width: 130px;
  }
  .sma-lang-link {
    padding: 2px 5px;
    font-size: 0.65rem;
  }
  .sma-burger-toggle {
    width: 32px;
    height: 32px;
    padding: 0;
  }
  .sma-burger-bar {
    width: 16px;
  }
  .sma-mobile-drawer {
    top: 56px;
    max-height: calc(100vh - 56px);
    padding: 14px 12px;
  }
  .sma-mobile-nav-link {
    font-size: 0.82rem;
    padding: 6px 0;
  }
  .sma-hero-arch {
    padding-top: 70px;
    padding-bottom: 28px;
    min-height: auto;
  }
  .sma-hero-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .sma-hero-lead {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }
  .sma-hero-side-card {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 14px;
  }
  .sma-page-banner {
    padding-top: 68px;
    padding-bottom: 24px;
  }
  .sma-page-title {
    font-size: 1.35rem;
    margin-bottom: 6px;
  }
  .sma-page-lead {
    font-size: 0.78rem;
  }
  .sma-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
  .sma-section-header {
    margin-bottom: 22px;
  }
  .sma-section-title {
    font-size: 1.2rem;
  }
  .sma-card-flex-3,
  .sma-card-flex-2 {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .sma-card-body {
    padding: 12px;
  }
  .sma-card-media {
    height: 160px;
  }
  .sma-arch-column-item {
    flex: 1 1 100%;
    border-right: none;
    padding: 14px 12px;
  }
  .sma-split-col {
    flex: 1 1 100%;
  }
  .sma-split-row {
    gap: 18px;
  }
  .sma-form-card,
  .sma-legal-block,
  .sma-cta-bar {
    padding: 14px 12px;
  }
  .sma-form-group {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .sma-spec-row {
    flex-direction: column;
    gap: 3px;
    padding: 8px 10px;
  }
  .sma-spec-label {
    flex: 0 0 auto;
  }
  .sma-footer {
    padding-top: 30px;
    padding-bottom: 18px;
  }
  .sma-footer-top {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }
  .sma-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .sma-brand-logo {
    height: 24px;
    max-width: 115px;
  }
  .sma-hero-btns {
    width: 100%;
  }
  .sma-hero-btns .sma-btn {
    width: 100%;
  }
  .sma-cta-actions {
    width: 100%;
  }
  .sma-cta-actions .sma-btn {
    width: 100%;
  }
}
