:root {
  --bs-primary: #d4a085;
  --bs-primary-rgb: 212, 160, 133;
  --site-bg: #000000;
  --site-text: #ffffff;
  --glass-bg: rgba(0, 0, 0, 0.6);
  --glass-border: rgba(255, 255, 255, 0.2);
  --surface: #111111;
  --surface-alt: #151515;
  --border: #2a2a2a;
  --text-muted: #bfbfbf;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--site-bg);
  color: var(--site-text);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.bg-site {
  background: var(--site-bg);
}

.text-site {
  color: var(--site-text);
}

.nav-glass {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.nav-link-inline {
  font-weight: 500;
  color: var(--site-text);
  transition: color 0.2s ease;
}

.nav-link-inline:hover {
  color: var(--bs-primary);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, #000000 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  max-width: 680px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bs-primary);
  display: inline-block;
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(212, 160, 133, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  margin-bottom: 16px;
}

.icon-chip-sm {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(212, 160, 133, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-spot {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(212, 160, 133, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-pill {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-xs {
  width: 16px;
  height: 16px;
}

.icon-chip svg,
.icon-chip-sm svg,
.icon-spot svg,
.icon-pill svg {
  width: 20px;
  height: 20px;
}

.shadow-primary {
  box-shadow: 0 16px 28px rgba(255, 107, 0, 0.28);
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #000000;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #c99277;
  border-color: #c99277;
  color: #000000;
}

.feature-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 2rem;
  font-weight: 600;
}

.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.image-glow {
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(212, 160, 133, 0.3), rgba(255, 255, 255, 0.08));
  filter: blur(18px);
  z-index: 0;
}

.image-frame img,
.info-card {
  position: relative;
  z-index: 1;
}

.info-card {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.35;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.comparison-table {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  padding: 6px;
}

.comparison-table-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 16px;
}

.comparison-table-table th,
.comparison-table-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.comparison-table-table thead th {
  background: var(--surface-alt);
  font-weight: 600;
  color: var(--site-text);
}

.comparison-table-table tbody td:first-child {
  font-weight: 600;
  color: var(--site-text);
}

.comparison-table-table tbody tr:nth-child(even) {
  background: #101010;
}

.comparison-table-table tbody tr:hover {
  background: #141414;
}

.comparison-table-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table-table thead th:first-child {
  width: 36%;
}

.comparison-table-table thead th:nth-child(2) {
  color: var(--bs-primary);
}

@media (max-width: 768px) {
  .comparison-table-table th,
  .comparison-table-table td {
    padding: 14px 14px;
    font-size: 0.92rem;
  }
}
.comparison-table .table th,
.comparison-table .table td {
  padding: 18px 24px;
  vertical-align: middle;
}

.comparison-table .table thead th {
  background: #f8f9fb;
  font-weight: 600;
  font-size: 0.95rem;
}

.comparison-table .table tbody tr {
  border-top: 1px solid #f1f2f4;
  transition: background 0.2s ease;
}

.comparison-table .table tbody tr:hover {
  background: #fafafa;
}

.model-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.model-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  min-height: 260px;
}

.model-carousel,
.model-carousel .carousel-inner,
.model-carousel .carousel-item {
  height: 100%;
}

.model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.model-card:hover .model-media img {
  transform: scale(1.04);
}

.model-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-section {
  background: #222222;
  padding: 80px 0 40px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-control-dark {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-card-light {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.form-control-light {
  border: 1px solid #e0e0e0;
}

.text-muted {
  color: var(--text-muted) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.py-lg-6 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-top: 140px;
  }

  .image-frame img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .comparison-table .table th,
  .comparison-table .table td {
    padding: 14px 16px;
  }
}

@media (min-width: 992px) {
  .display-lg-3 {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .model-media {
    min-height: 300px;
  }
}
