﻿/* Theme variables to maintain dark background and orange accent */
:root {
  --theme-dark: #131722;
  --theme-darker: #0a0d14;
  --theme-light: #1d2332;
  --theme-accent: #ff6b35;
  --theme-accent-soft: rgba(255, 107, 53, 0.1);
  --theme-text: #f2f5fa;
  --theme-text-muted: #9aa5bf;
  --theme-success: #0cce6b;
  --theme-danger: #ff5252;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, sans-serif;
  background-color: var(--theme-dark);
  color: var(--theme-text);
  line-height: 1.6;
}

.text-secondary {
  color: rgb(185, 185, 185) !important;
}

a {
  color: var(--theme-accent);
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus {
  color: #ffa270;
  opacity: 0.85;
}

.navbar {
  background: rgba(10, 13, 20, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar .nav-link {
  color: var(--theme-text-muted);
  font-weight: 500;
}

.navbar-nav {
  --bs-nav-link-padding-y: 0.9rem;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--theme-text);
}

.hero-section {
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.18), transparent 45%),
              radial-gradient(circle at bottom right, rgba(255, 107, 53, 0.18), transparent 50%),
              var(--theme-dark);
  padding: 6rem 0 5rem;
}

.hero-badge {
  background: var(--theme-accent-soft);
  color: var(--theme-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-cta .btn {
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}

.hero-metrics {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
}

.hero-metrics .hero-metric {
  flex: 1 1 0;
}

.hero-metric {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.12), rgba(16, 21, 34, 0.92));
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.hero-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.22), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-metric:hover::after {
  transform: translateX(6px) translateY(-6px) scale(1.05);
  opacity: 0.9;
}

.hero-metric-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.1));
  color: #fff;
  font-size: 1.35rem;
}

.hero-metric-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0.35;
}

.hero-working-card {
  padding: 2.5rem 2.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(24, 29, 45, 0.95), rgba(10, 13, 20, 0.9));
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-working-header {
  width: 100%;
  gap: 1.25rem;
}

.hero-working-badge {
  letter-spacing: 0.18em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.18) !important;
}

.hero-working-metric {
  position: relative;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  min-width: 168px;
}

.hero-working-metric::before {
  content: "";
  position: absolute;
  inset: -40% 25% 70% -25%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-working-metric-value {
  background: linear-gradient(120deg, #ffffff, rgba(255, 107, 53, 0.85));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-working-features {
  gap: 1.2rem !important;
}

.hero-working-feature {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hero-working-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero-working-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 107, 53, 0.08));
  color: rgba(16, 21, 34, 0.95);
  box-shadow: 0 18px 32px rgba(255, 107, 53, 0.25);
}

.hero-working-feature:hover .hero-working-icon {
  color: #0b0e14;
  box-shadow: 0 20px 36px rgba(255, 107, 53, 0.35);
}

.hero-working-feature h6 {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-working-cta {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.hero-working-cta-btn {
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  box-shadow: 0 16px 30px rgba(255, 107, 53, 0.35);
}

.hero-working-cta-btn:hover,
.hero-working-cta-btn:focus {
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.45);
}

@media (max-width: 991px) {
  .hero-working-card {
    margin-top: 2rem;
  }

  .hero-working-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .hero-working-metric {
    text-align: left !important;
  }
}

@media (max-width: 575px) {
  .hero-working-card {
    padding: 2rem 1.6rem;
  }

  .hero-working-feature {
    grid-template-columns: 48px 1fr;
    padding: 1rem;
  }

  .hero-working-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

.talent-form-card {
  position: relative;
  background: linear-gradient(165deg, rgba(21, 26, 40, 0.95), rgba(8, 11, 18, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.talent-form-card::before {
  content: "";
  position: absolute;
  inset: -40% 50% 50% -30%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

.talent-form-card > * {
  position: relative;
  z-index: 1;
}

.talent-form-header .badge {
  letter-spacing: 0.16em;
}

.talent-form-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.14));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 18px 34px rgba(255, 107, 53, 0.28);
}

.talent-input {
  position: relative;
  display: flex;
  align-items: center;
}

.talent-input i {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.talent-input .form-control,
.talent-input textarea {
  padding-left: 2.6rem;
  background: rgba(6, 8, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.talent-input textarea {
  min-height: 140px;
}

.talent-input .form-control:focus,
.talent-input textarea:focus {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
  transform: translateY(-2px);
}

.talent-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
  transform: translateY(-2px);
}

.talent-form-actions .btn {
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.talent-form-actions .btn:hover,
.talent-form-actions .btn:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.talent-form-actions i {
  font-size: 1rem;
}

.talent-network-card::before {
  inset: -45% 35% 45% -25%;
  background: radial-gradient(circle at 5% 20%, rgba(255, 107, 53, 0.32), transparent 70%);
}

.talent-network-card .talent-form-icon {
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.55), rgba(255, 107, 53, 0.18));
}

@media (max-width: 991px) {
  .talent-form-card {
    margin-top: 2rem;
  }

  .talent-form-card .talent-form-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

@media (max-width: 575px) {
  .talent-form-card {
    padding: 2rem 1.75rem;
  }

  .talent-form-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }
}

.press-request-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 28, 45, 0.95), rgba(10, 13, 20, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.press-request-card::before {
  content: "";
  position: absolute;
  inset: -45% 40% 45% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.3), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.press-request-card > * {
  position: relative;
  z-index: 1;
}

.press-request-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.52), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.28);
}

.press-request-meta {
  gap: 0.75rem;
}

.press-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.press-meta-chip i {
  color: var(--theme-accent);
  font-size: 0.9rem;
}

.press-request-form .row > div {
  position: relative;
}

.press-input {
  position: relative;
  display: flex;
  align-items: center;
}

.press-input i {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.press-input .form-control,
.press-input textarea {
  padding-left: 2.6rem;
  background: rgba(6, 8, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.press-input textarea {
  min-height: 140px;
}

.press-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
  transform: translate(-0.1rem, -50%);
}

.press-input .form-control:focus,
.press-input textarea:focus {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
  transform: translateY(-2px);
}

.press-input.align-items-start i {
  top: 1.15rem;
  transform: none;
}

.press-request-actions .btn {
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.press-request-actions .btn:hover,
.press-request-actions .btn:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.press-request-actions i {
  font-size: 1rem;
}

.press-request-actions a {
  color: rgba(255, 255, 255, 0.85);
}

.press-request-actions a:hover,
.press-request-actions a:focus {
  color: #ffffff;
}

@media (max-width: 991px) {
  .press-request-card {
    margin-top: 2rem;
  }

  .press-request-card .press-request-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

.newsletter-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 44, 0.95), rgba(9, 12, 20, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: -40% 45% 45% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.newsletter-card > * {
  position: relative;
  z-index: 1;
}

.newsletter-header .badge {
  letter-spacing: 0.16em;
}

.newsletter-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.48), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 18px 32px rgba(255, 107, 53, 0.28);
}

.newsletter-form {
  margin-top: 0.5rem;
}

.newsletter-input {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(6, 8, 14, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 2.8rem;
  gap: 0.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-input i {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.newsletter-input input:focus {
  outline: none;
  background: transparent;
  color: #ffffff;
}

.newsletter-input button {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.newsletter-input button:hover,
.newsletter-input button:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.newsletter-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.newsletter-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.hero-login {
  position: relative;
  padding-top: 6.5rem;
}

.login-perks-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(9, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.login-perks-card::before {
  content: "";
  position: absolute;
  inset: 0% 45% 0% -20%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.login-perks-card > * {
  position: relative;
  z-index: 1;
}

.login-perks-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.15rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.login-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.login-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.login-perk:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.login-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1.05rem;
}

.login-perk strong {
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
}

.login-form-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.96), rgba(8, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.login-form-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.3), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.login-form-card > * {
  position: relative;
  z-index: 1;
}

.login-form-glow {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.login-field label {
  letter-spacing: 0.02em;
}

.login-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem 0.55rem 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.88);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.login-input i {
  position: absolute;
  left: 1.05rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.login-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.login-input input:focus {
  outline: none;
  background: transparent;
  color: #ffffff;
}

.login-toggle {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.login-toggle:hover,
.login-toggle:focus {
  color: #ffffff;
}

.login-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.login-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.login-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-divider {
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-divider span {
  padding: 0 0.75rem;
  background: transparent;
}

.login-social .btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
}

@media (max-width: 991px) {
  .login-form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 991px) {
  .login-perks-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-login {
    padding-top: 6rem;
  }

  .login-perks-card {
    padding: 1.6rem;
  }

  .login-input {
    padding: 0.85rem 1rem 0.85rem 3rem;
    flex-wrap: wrap;
  }

  .login-toggle {
    margin-left: auto;
  }
}

.hero-register {
  position: relative;
  padding-top: 6.5rem;
}

.register-perks-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(9, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.register-perks-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.register-perks-card > * {
  position: relative;
  z-index: 1;
}

.register-perks-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.15rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.register-perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.register-perk {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.register-perk:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.register-perk-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1.05rem;
}

.register-form-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.96), rgba(8, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.register-form-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.3), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.register-form-card > * {
  position: relative;
  z-index: 1;
}

.register-form-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.register-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem 0.55rem 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.88);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.register-input i {
  position: absolute;
  left: 1.05rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.register-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.register-input input:focus {
  outline: none;
  color: #ffffff;
  background: transparent;
}

.register-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.register-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.register-toggle {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.register-toggle:hover,
.register-toggle:focus {
  color: #ffffff;
}

.register-gold-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.96), rgba(8, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.register-gold-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.32), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.register-gold-card > * {
  position: relative;
  z-index: 1;
}

.register-gold-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.55), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.15rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.register-gold-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.register-gold-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.register-gold-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.register-gold-bullet {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1rem;
}

@media (max-width: 575px) {
  .register-gold-card {
    padding: 1.6rem;
  }

  .register-gold-grid {
    grid-template-columns: 1fr;
  }
}

.register-divider {
  position: relative;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.register-divider::before,
.register-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.register-divider::before {
  left: 0;
}

.register-divider::after {
  right: 0;
}

.register-divider span {
  padding: 0 0.75rem;
}

.register-social .btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
}

@media (max-width: 991px) {
  .register-perks-card,
  .register-form-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-register {
    padding-top: 6rem;
  }

  .register-perks-card,
  .register-form-card {
    padding: 1.6rem;
  }

  .register-input {
    padding: 0.85rem 1rem 0.85rem 3rem;
    flex-wrap: wrap;
  }

  .register-toggle {
    margin-left: auto;
  }
}

.plan-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(8, 11, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.32), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 60px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 107, 53, 0.45);
}

.plan-card-header {
  letter-spacing: 0.02em;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.plan-badge-featured {
  background: rgba(255, 193, 7, 0.35);
  border-color: rgba(255, 193, 7, 0.45);
  color: #1d2129;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.plan-price-value {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.plan-price-period {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
}

.plan-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plan-card-featured {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 32px 60px rgba(255, 193, 7, 0.18);
}

.plan-card-featured::before {
  background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.38), transparent 70%);
}

.plan-card-featured:hover {
  box-shadow: 0 36px 66px rgba(255, 193, 7, 0.25);
}

@media (max-width: 575px) {
  .plan-card {
    padding: 1.8rem;
  }
}

.checkout-section-card,
.checkout-summary-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(8, 11, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.checkout-section-card::before,
.checkout-summary-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.32), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.checkout-section-card > *,
.checkout-summary-card > * {
  position: relative;
  z-index: 1;
}

.checkout-section-header h4 {
  letter-spacing: 0.01em;
}

.checkout-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.6rem 0.55rem 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.88);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.checkout-input i {
  position: absolute;
  left: 1.05rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.checkout-input input,
.checkout-input select {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.checkout-input select {
  padding-left: 0;
}

.checkout-input input:focus,
.checkout-input select:focus {
  outline: none;
  background: transparent;
  color: #ffffff;
}

.checkout-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.checkout-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.checkout-summary-card {
  padding: 2.2rem;
}

.checkout-summary-header {
  letter-spacing: 0.01em;
}

.checkout-summary-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.checkout-summary-line,
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0;
}

.checkout-summary-total {
  font-size: 1.05rem;
}

.checkout-summary-card .btn {
  border-radius: 999px;
}

@media (max-width: 991px) {
  .checkout-summary-card {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 575px) {
  .checkout-section-card,
  .checkout-summary-card {
    padding: 1.7rem;
  }

  .checkout-input {
    padding: 0.85rem 1rem 0.85rem 3rem;
  }
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.newsletter-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.65rem 0.65rem 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.88);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input i {
  position: absolute;
  left: 1.15rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.newsletter-input input:focus {
  outline: none;
}

.newsletter-input button {
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.newsletter-input button:hover,
.newsletter-input button:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.newsletter-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.newsletter-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.newsletter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-chip i {
  color: var(--theme-accent);
  font-size: 0.9rem;
}

@media (max-width: 575px) {
  .newsletter-card {
    margin-top: 2rem;
  }

  .newsletter-icon {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .newsletter-input {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.1rem 3rem;
  }

  .newsletter-input button {
    width: 100%;
  }

  .newsletter-meta {
    gap: 0.5rem;
  }

  .newsletter-chip {
    width: 100%;
    justify-content: center;
  }
}

.faq-search-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.94), rgba(10, 13, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.faq-search-card::before {
  content: "";
  position: absolute;
  inset: 0% 40% 0% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.faq-search-card > * {
  position: relative;
  z-index: 1;
}

.faq-search-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(6, 8, 14, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.6rem 0.5rem 2.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-search-input i {
  position: absolute;
  left: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.faq-search-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
}

.faq-search-input input:focus {
  outline: none;
  background: transparent;
  color: #ffffff;
}

.faq-search-input button {
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.32);
}

.faq-search-input button:hover,
.faq-search-input button:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.faq-search-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.faq-search-input:focus-within i {
  color: rgba(255, 107, 53, 0.75);
}

.faq-search-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.faq-search-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-search-chip:hover,
.faq-search-chip:focus {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.5);
  color: #ffffff;
}

.faq-search-meta {
  margin-top: 1rem;
}

.faq-quick-card {
  position: relative;
  background: linear-gradient(165deg, rgba(23, 27, 42, 0.95), rgba(8, 11, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.faq-quick-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.26), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.faq-quick-card > * {
  position: relative;
  z-index: 1;
}

.faq-quick-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.52), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.3rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.28);
}

.faq-quick-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-quick-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  color: inherit;
  text-decoration: none;
}

.faq-quick-item:hover,
.faq-quick-item:focus {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.faq-quick-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1.05rem;
}

.faq-quick-item i:last-child {
  margin-left: auto;
}

.faq-quick-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.faq-tip-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion {
  --faq-accordion-border: rgba(255, 255, 255, 0.08);
  --faq-accordion-active-border: rgba(255, 107, 53, 0.55);
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 0.85rem;
}

.faq-accordion .accordion-item:last-of-type {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--faq-accordion-border);
  color: var(--theme-text);
  padding: 1rem 1.15rem;
  gap: 1rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.16), rgba(16, 21, 34, 0.88));
  border-color: var(--faq-accordion-active-border);
  color: #ffffff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.2);
}

.faq-accordion .accordion-button:hover {
  border-color: var(--faq-accordion-active-border);
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: "\f282";
  font-family: "bootstrap-icons";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--theme-accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  background: var(--theme-accent);
  color: #0b0e14;
}

.faq-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.faq-accordion-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-accordion-text {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-accordion-icon {
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.55), rgba(255, 255, 255, 0.16));
  color: #0b0e14;
  transform: scale(1.05);
}

.faq-accordion .accordion-body {
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .faq-search-card {
    margin-top: 2rem;
  }

  .faq-quick-card {
    margin-top: 2rem;
  }

  .faq-quick-card .faq-quick-header {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .faq-accordion .accordion-button {
    padding: 0.95rem 1rem;
  }
}

@media (max-width: 575px) {
  .faq-search-card {
    padding: 1.4rem 1.5rem;
  }

  .faq-search-input {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.1rem 3rem;
  }

  .faq-search-input button {
    width: 100%;
  }

  .faq-search-tags {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .faq-quick-card {
    padding: 1.75rem;
  }

  .faq-quick-item {
    flex-wrap: wrap;
  }

  .faq-quick-item i:last-child {
    width: 100%;
    margin-left: 0;
    text-align: right;
    opacity: 0.8;
  }

  .faq-accordion .accordion-button {
    padding: 0.85rem 0.95rem;
  }

  .faq-accordion-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 0.9rem 1rem;
  }

  .faq-accordion .accordion-button::after {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 575px) {
  .press-request-card {
    padding: 2rem 1.75rem;
  }

  .press-meta-chip {
    width: 100%;
    justify-content: center;
  }
}

.hero-metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--theme-text);
}

.hero-metric .text-secondary {
  opacity: 0.85;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.22), rgba(22, 28, 43, 0.92));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0.9;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.1);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.highlight-card > * {
  position: relative;
  z-index: 1;
}

.highlight-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 107, 53, 0.55);
}

.highlight-card:hover::before {
  transform: translateY(-10px) translateX(6px) scale(1.1);
  opacity: 1;
}

.filtered-search {
  background: rgba(29, 35, 50, 0.95);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.filtered-search .form-control,
.filtered-search .form-select {
  background-color: rgba(6, 8, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  color: var(--theme-text);
}

.filtered-search .form-control::placeholder {
  color: rgba(242, 245, 250, 0.4);
}

.filtered-search .btn {
  border-radius: var(--radius-sm);
}

.explorer-form {
  position: relative;
  background: linear-gradient(160deg, rgba(24, 28, 42, 0.96), rgba(10, 13, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.explorer-form::before {
  content: "";
  position: absolute;
  inset: -45% 55% 50% -30%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.explorer-form:hover::before {
  transform: translate3d(12px, -10px, 0);
  opacity: 0.85;
}

.explorer-form .badge-soft-accent {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.explorer-form .explorer-reset {
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

.explorer-form .explorer-body {
  position: relative;
  z-index: 1;
}

.explorer-input {
  position: relative;
}

.explorer-input i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.explorer-input .form-select,
.explorer-input .form-control {
  padding-left: 2.5rem;
  background: rgba(5, 7, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.explorer-input .form-select:focus,
.explorer-input .form-control:focus {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.explorer-chips .explorer-chip {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  color: var(--theme-text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.explorer-chips .explorer-chip:hover,
.explorer-chips .explorer-chip:focus {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.explorer-actions .btn {
  border-radius: 999px;
}

.explorer-meta i {
  font-size: 1rem;
}

.explorer-form .range-wrap .text-secondary {
  opacity: 0.85;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-caption {
  color: var(--theme-text-muted);
  max-width: 640px;
}

.restaurant-card {
  position: relative;
  background: linear-gradient(160deg, rgba(14, 18, 29, 0.94), rgba(28, 35, 54, 0.94));
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.restaurant-card img {
  transition: transform 0.35s ease;
}

.restaurant-card > * {
  position: relative;
  z-index: 1;
}

.restaurant-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(255, 107, 53, 0.18));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.55);
}

.restaurant-card:hover img {
  transform: scale(1.05);
}

.restaurant-card:hover::before {
  opacity: 1;
}

.restaurant-card .badge {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.category-pill {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.24), rgba(255, 255, 255, 0.08));
  color: var(--theme-text);
  border: 1px solid rgba(255, 107, 53, 0.4);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.32), rgba(255, 255, 255, 0.16));
  box-shadow: 0 10px 16px rgba(255, 107, 53, 0.15);
}

.bg-gradient {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), transparent);
}

.stats-card {
  position: relative;
  background: linear-gradient(200deg, rgba(255, 107, 53, 0.18), rgba(11, 14, 22, 0.92));
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: -30% -10% 40% 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
  opacity: 0.7;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.stats-card:hover::before {
  transform: translateY(-12px) translateX(18px) scale(1.1);
  opacity: 0.95;
}

.stats-card > * {
  position: relative;
  z-index: 1;
}

.stats-card .display-6 {
  color: var(--theme-accent);
}

.order-progress {
  background: rgba(255, 107, 53, 0.18);
  border-radius: var(--radius-sm);
  height: 8px;
  overflow: hidden;
}

.order-progress .progress-bar {
  background: var(--theme-accent);
}

.footer {
  position: relative;
  background: linear-gradient(160deg, rgba(10, 13, 20, 0.94), rgba(6, 8, 14, 0.9));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.22), transparent 65%);
  filter: blur(0);
  opacity: 0.8;
  z-index: 0;
}

.footer::before {
  top: -120px;
  right: -80px;
}

.footer::after {
  bottom: -140px;
  left: -100px;
}

.footer .container,
.footer .row {
  position: relative;
  z-index: 1;
}

.footer a {
  color: rgb(185, 185, 185);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer a:hover,
.footer a:focus {
  color: rgb(185, 185, 185);
  opacity: 0.9;
}

.footer .navbar-brand span {
  color: var(--theme-accent);
}

.footer .navbar-brand {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer .navbar-brand + p {
  max-width: 320px;
}

.footer .navbar-brand + p + .d-flex a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--theme-text);
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer .navbar-brand + p + .d-flex a:hover {
  background: rgba(255, 107, 53, 0.25);
  transform: translateY(-3px);
}

.footer h6 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--theme-text);
}

.footer .list-unstyled li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--theme-text-muted);
}

.footer .list-unstyled li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.35rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.5);
}

.footer .list-unstyled li a {
  color: inherit;
}

.footer form .form-control {
  border-radius: var(--radius-sm);
  border-color: rgba(255, 255, 255, 0.08);
}

.footer form .form-control:focus {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 0 0.15rem rgba(255, 107, 53, 0.15);
}

.footer form .btn {
  border-radius: var(--radius-sm);
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.btn-accent {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  color: #0b0e14;
}

.btn-accent:hover,
.btn-accent:focus {
  background: #ff8249;
  border-color: #ff8249;
  color: #0b0e14;
}

.btn-outline-accent {
  color: var(--theme-accent);
  border-color: rgba(255, 107, 53, 0.5);
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
  background: var(--theme-accent);
  border-color: var(--theme-accent);
  color: #0b0e14;
}

.tag {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-text-muted);
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.card-dark {
  position: relative;
  background: linear-gradient(170deg, rgba(16, 21, 34, 0.92), rgba(10, 13, 20, 0.88));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.card-dark::before {
  content: "";
  position: absolute;
  inset: 0% 0% 0% 0%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.card-dark:hover::before {
  transform: translateX(12px) translateY(-8px) scale(1.1);
  opacity: 0.85;
}

.card-dark > * {
  position: relative;
  z-index: 1;
}

.featured-dish {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.featured-dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-dish:hover img {
  transform: scale(1.05);
}

.featured-dish::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.8));
}

.featured-dish .content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(170deg, rgba(13, 16, 25, 0.85), rgba(13, 16, 25, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.badge-soft-accent {
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
}

.list-group-dark .list-group-item {
  background: transparent;
  color: var(--theme-text);
  border-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.list-group-dark .list-group-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 107, 53, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.list-group-dark .list-group-item:hover::after {
  opacity: 1;
}

.form-control-dark {
  background: rgba(6, 8, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--theme-text);
  border-radius: var(--radius-sm);
}

@media (max-width: 991px) {
  .hero-rating-card {
    margin-top: 1.75rem;
  }

  .hero-section {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
  }

  .hero-metric {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .explorer-form {
    padding: 1.75rem;
  }

  .explorer-actions {
    flex-direction: column;
    align-items: stretch !important;
    gap: 1rem;
  }

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

@media (max-width: 575px) {
  .filtered-search {
    padding: 0.75rem;
  }

  .highlight-card {
    padding: 1.25rem;
  }

  .explorer-chips .explorer-chip {
    width: 100%;
    justify-content: center;
  }
}

.order-form {
  position: relative;
  background: linear-gradient(155deg, rgba(23, 28, 42, 0.95), rgba(9, 12, 18, 0.92));
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.order-form::before {
  content: "";
  position: absolute;
  inset: -40% 40% 40% -40%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.35), transparent 65%);
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.order-form::after {
  content: "";
  position: absolute;
  inset: 60% -20% -30% 50%;
  background: radial-gradient(circle at center, rgba(72, 84, 121, 0.22), transparent 70%);
  opacity: 0.5;
  filter: blur(12px);
}

.order-form:hover::before {
  transform: translateY(-12px) translateX(18px) scale(1.05);
  opacity: 0.8;
}

.order-form-body {
  position: relative;
  z-index: 1;
}

.order-form .badge-soft-accent {
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  border-radius: 999px;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
}

.order-form .glow-btn {
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.order-form .glow-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-form .glow-btn:hover::after {
  opacity: 1;
}

.order-form .input-with-icon {
  position: relative;
}

.order-form .input-with-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

.order-form .input-with-icon .form-control,
.order-form .input-with-icon .form-select {
  padding-left: 2.5rem;
  background: rgba(5, 7, 12, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form .input-with-icon .form-control:focus,
.order-form .input-with-icon .form-select:focus {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.order-form .smart-tags .tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--theme-text);
}

.order-form .smart-tags .tag:hover {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.35);
}

.order-form .reassurance i {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .order-form {
    padding: 1.5rem;
  }

  .order-form .glow-btn {
    display: none;
  }

  .order-form .badge-soft-accent {
    font-size: 0.65rem;
  }

  .order-form .smart-tags .tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.85rem;
  }
}
.highlight-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(185, 185, 185);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.highlight-card a::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.highlight-card a:hover::after,
.highlight-card a:focus::after {
  opacity: 1;
}

.highlight-card a i,
.highlight-card a svg,
.highlight-card a span {
  pointer-events: none;
}

.highlight-card a:hover,
.highlight-card a:focus {
  color: var(--theme-text);
  transform: translateX(4px);
  padding: 0 10px;
}


.highlight-card a .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--theme-text);
  font-size: 0.75rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.highlight-card a:hover .arrow-icon {
  background: var(--theme-accent);
  color: #0b0e14;
  transform: translateX(4px);
}

.tasting-card {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 22, 33, 0.96), rgba(10, 13, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.tasting-card::before {
  content: "";
  position: absolute;
  inset: -40% 50% 50% -30%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.tasting-card::after {
  content: "";
  position: absolute;
  inset: 45% -25% -35% 60%;
  background: radial-gradient(circle at center, rgba(88, 101, 139, 0.2), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  filter: blur(10px);
}

.tasting-card > * {
  position: relative;
  z-index: 1;
}

.tasting-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.1));
  color: #0b0e14;
  font-size: 1.3rem;
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.25);
}

.tasting-form-body .form-label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tasting-input .input-shell {
  position: relative;
  display: flex;
  align-items: center;
}

.tasting-input .input-shell i {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.tasting-input .input-shell .form-control,
.tasting-input .input-shell .form-select,
.tasting-input .input-shell textarea {
  padding-left: 2.5rem;
  background: rgba(6, 8, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tasting-input textarea {
  min-height: 120px;
}

.tasting-input .input-shell .form-control:focus,
.tasting-input .input-shell .form-select:focus,
.tasting-input .input-shell textarea:focus {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
}

.tasting-pills .pill {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--theme-text);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tasting-pills .pill:hover,
.tasting-pills .pill:focus {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.tasting-actions .btn {
  border-radius: 999px;
}

.tasting-actions .btn i {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .tasting-card {
    padding: 1.75rem;
  }

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

  .tasting-pills .pill {
    width: 100%;
    justify-content: center;
  }
}
.hero-rating-card {
  position: relative;
  background: linear-gradient(155deg, rgba(20, 24, 37, 0.95), rgba(10, 13, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-rating-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 50% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-rating-card > * {
  position: relative;
  z-index: 1;
}

.rating-burst {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.12));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 22px rgba(255, 107, 53, 0.25);
}

.rating-score {
  font-size: 2rem;
  font-weight: 600;
  color: var(--theme-text);
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--theme-text);
  font-size: 0.85rem;
}

.rating-chip i {
  color: var(--theme-accent);
}

.about-metrics-card {
  position: relative;
  background: linear-gradient(155deg, rgba(24, 29, 44, 0.95), rgba(10, 13, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.about-metrics-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.about-metrics-card > * {
  position: relative;
  z-index: 1;
}

.about-metrics-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.18));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.28);
}

.about-metrics-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-item h5 {
  font-weight: 600;
  font-size: 1.4rem;
}

.metric-badge {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.25rem 0.75rem;
  color: var(--theme-text);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rating-breakdown {
  margin-top: 1.5rem;
  padding: 1.2rem 1rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 1.5rem;
  align-items: center;
}

.rating-score-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.rating-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--theme-accent);
}

.rating-stars i {
  font-size: 1rem;
}

.rating-score-wrap small {
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.rating-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rating-progress .progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.rating-progress .progress-bar {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(255, 255, 255, 0.45));
}

.rating-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (max-width: 991px) {
  .rating-breakdown {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .rating-pill-grid {
    grid-template-columns: 1fr;
  }
}
.quick-filters-card {
  position: relative;
  background: linear-gradient(155deg, rgba(20, 25, 38, 0.95), rgba(11, 15, 24, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
}

.quick-filters-card::before {
  content: "";
  position: absolute;
  inset: -40% 55% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

.quick-filters-card > * {
  position: relative;
  z-index: 1;
}

.quick-filters-card h5 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quick-filters-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.1));
  color: #0b0e14;
  font-size: 1.1rem;
}

.filter-item {
  position: relative;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.filter-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.45);
}

.filter-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.filter-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--theme-text);
}

.filter-stat-chip i {
  color: var(--theme-accent);
}

.quick-filters-card .badge {
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  .quick-filters-card {
    padding: 1.6rem;
  }
}
.menu-explorer {
  position: relative;
  background: linear-gradient(160deg, rgba(24, 28, 42, 0.96), rgba(10, 13, 20, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.menu-explorer::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.menu-explorer > * {
  position: relative;
  z-index: 1;
}

.menu-explorer-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.1));
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.25);
}

.menu-explorer-actions .btn {
  border-radius: 999px;
}

.menu-explorer-chips .explorer-chip {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--theme-text);
}

.menu-explorer-chips .explorer-chip:hover,
.menu-explorer-chips .explorer-chip:focus {
  background: rgba(255, 107, 53, 0.18);
  border-color: rgba(255, 107, 53, 0.4);
}

.menu-explorer-reset {
  border-radius: 999px;
  padding: 0.4rem 1rem;
}

@media (max-width: 991px) {
  .menu-explorer {
    margin-top: 1.75rem;
    padding: 1.8rem;
  }
}

@media (max-width: 575px) {
  .menu-explorer-chips .explorer-chip {
    width: 100%;
    justify-content: center;
  }
}
.hero-menu-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
}

.hero-menu-card .btn {
  border-radius: 999px;
  padding: 0.35rem 1.15rem;
}

.hero-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hero-menu-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.45);
}

.hero-menu-item small {
  font-size: 0.75rem;
}

@media (max-width: 991px) {
  .hero-menu-card {
    margin-top: 1.25rem;
  }
}
.gold-benefits-card {
  position: relative;
  background: linear-gradient(155deg, rgba(21, 26, 39, 0.96), rgba(11, 14, 22, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.gold-benefits-card::before {
  content: "";
  position: absolute;
  inset: -45% 55% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.3), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

.gold-benefits-card > * {
  position: relative;
  z-index: 1;
}

.gold-burst {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(255, 107, 53, 0.55), rgba(255, 255, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--theme-text);
  font-size: 1.35rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.gold-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.gold-benefit-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.gold-benefit-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gold-benefit-item:hover::after {
  opacity: 0.6;
}

.gold-benefit-item h6 {
  font-size: 0.95rem;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

.credit-tier-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.credit-tier-card::before {
  content: "";
  position: absolute;
  inset: -35% 50% 45% -25%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.25), transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

.credit-tier-card > * {
  position: relative;
  z-index: 1;
}

.tier-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.4), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 14px 30px rgba(255, 107, 53, 0.25);
}

.credit-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.credit-tier-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  position: relative;
}

.credit-tier-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 107, 53, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.credit-tier-item:hover::after {
  opacity: 0.6;
}

.tier-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.22);
  color: var(--theme-accent);
  font-size: 1.2rem;
}

.tier-badge {
  align-self: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.32), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.9rem;
  color: var(--theme-text);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-align: center;

  text-transform: uppercase;
  box-shadow: 0 8px 14px rgba(255, 107, 53, 0.25);
}

.credit-tier-card .btn {
  border-radius: 999px;
}

.credit-tier-card .badge-soft-accent {
  letter-spacing: 0.08em;
}

.gold-benefit-footer .btn {
  border-radius: 999px;
}

@media (max-width: 991px) {
  .gold-benefits-card {
    margin-top: 1.75rem;
  }

  .gold-benefit-grid {
    grid-template-columns: 1fr;
  }

  .credit-tier-card {
    margin-top: 1.75rem;
  }
}


.contact-quick-card {
  position: relative;
  background: linear-gradient(155deg, rgba(20, 25, 38, 0.95), rgba(10, 13, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-quick-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.contact-quick-card > * {
  position: relative;
  z-index: 1;
}

.contact-glow {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.18));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 16px 30px rgba(255, 107, 53, 0.28);
}

.contact-quick-grid {
  display: grid;
  gap: 1rem;
}

.contact-quick-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

.contact-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
}

.contact-form-card {
  position: relative;
  background: linear-gradient(160deg, rgba(20, 25, 38, 0.95), rgba(11, 14, 22, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

.contact-form-card > * {
  position: relative;
  z-index: 1;
}

.contact-form-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.45), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 16px 30px rgba(255, 107, 53, 0.25);
}

.contact-input {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-input i {
  position: absolute;
  left: 1rem;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.contact-input .form-control,
.contact-input .form-select,
.contact-input textarea {
  padding-left: 2.5rem;
  background: rgba(6, 8, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-input textarea {
  min-height: 130px;
}

.contact-input .form-control:focus,
.contact-input .form-select:focus,
.contact-input textarea:focus {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.contact-form-actions .btn {
  border-radius: 999px;
}

.contact-form-actions i {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .contact-quick-card {
    margin-top: 1.5rem;
  }

  .contact-form-card {
    margin-top: 1.5rem;
  }
}
.contact-specialists-card {
  position: relative;
  background: linear-gradient(155deg, rgba(21, 26, 38, 0.95), rgba(10, 13, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-specialists-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.contact-specialists-card > * {
  position: relative;
  z-index: 1;
}

.contact-specialist-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.42), rgba(255, 255, 255, 0.14));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.28);
}

.contact-specialist-grid {\n  display: grid;\n  grid-template-columns: repeat(2, minmax(0, 1fr));\n  gap: 1rem;\n}\n

.contact-specialist-item {
  display: flex;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  align-items: flex-start;
}

.contact-specialist-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .contact-specialists-card {
    margin-top: 1.5rem;
  }
}
.contact-specialists-card {
  position: relative;
  background: linear-gradient(155deg, rgba(21, 26, 38, 0.95), rgba(10, 13, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-specialists-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.contact-specialists-card > * {
  position: relative;
  z-index: 1;
}

.contact-specialist-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.42), rgba(255, 255, 255, 0.14));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.28);
}

.contact-specialist-grid {\n  display: grid;\n  grid-template-columns: repeat(2, minmax(0, 1fr));\n  gap: 1rem;\n}\n

.contact-specialist-item {
  display: flex;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  align-items: flex-start;
}

.contact-specialist-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .contact-specialists-card {
    margin-top: 1.5rem;
  }
}

.contact-specialists-card {
  position: relative;
  background: linear-gradient(155deg, rgba(21, 26, 38, 0.95), rgba(10, 13, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.contact-specialists-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.contact-specialists-card > * {
  position: relative;
  z-index: 1;
}

.contact-specialist-glow {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.42), rgba(255, 255, 255, 0.14));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.28);
}

.contact-specialist-grid {\n  display: grid;\n  grid-template-columns: repeat(2, minmax(0, 1fr));\n  gap: 1rem;\n}\n

.contact-specialist-item {
  display: flex;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  align-items: flex-start;
}

.contact-specialist-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .contact-specialists-card {
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .contact-specialist-grid {
    grid-template-columns: 1fr;
  }
}
\n@media (max-width: 575px) {\n  .about-metrics-grid {\n    grid-template-columns: 1fr;\n  }\n}\n
.careers-perks-card {
  position: relative;
  background: linear-gradient(155deg, rgba(21, 26, 39, 0.95), rgba(10, 13, 20, 0.9));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.careers-perks-card::before {
  content: "";
  position: absolute;
  inset: -45% 45% 45% -35%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}

.careers-perks-card > * {
  position: relative;
  z-index: 1;
}

.careers-perks-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.42), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.2rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.careers-perk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.careers-perk-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.careers-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.1rem;
}

.careers-perk-note {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
}

@media (max-width: 767px) {
  .careers-perks-card {
    margin-top: 1.5rem;
  }

  .careers-perk-grid {
    grid-template-columns: 1fr;
  }
}
.order-lookup-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 30, 46, 0.95), rgba(9, 12, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.1rem 2rem;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.order-lookup-card::before {
  content: "";
  position: absolute;
  inset: 0% 40% 0% -20%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.32), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.order-lookup-card > * {
  position: relative;
  z-index: 1;
}

.order-lookup-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.52), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.25rem;
  box-shadow: 0 18px 34px rgba(255, 107, 53, 0.28);
}

.order-lookup-form {
  margin-top: 0.5rem;
}

.order-lookup-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 9, 16, 0.88);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.order-lookup-input i {
  position: absolute;
  left: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s ease;
}

.order-lookup-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--theme-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.order-lookup-input input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
}

.order-lookup-input input:focus {
  outline: none;
  background: transparent;
  color: #ffffff;
}

.order-lookup-input button {
  border-radius: 999px;
  padding: 0.65rem 1.65rem;
  box-shadow: 0 18px 36px rgba(255, 107, 53, 0.35);
}

.order-lookup-input button:hover,
.order-lookup-input button:focus {
  box-shadow: 0 20px 42px rgba(255, 107, 53, 0.45);
}

.order-lookup-input:focus-within {
  border-color: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.18);
}

.order-lookup-input:focus-within i {
  color: rgba(255, 107, 53, 0.8);
}

.order-lookup-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.order-lookup-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.order-lookup-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

@media (max-width: 991px) {
  .order-lookup-card {
    margin-top: 2rem;
  }

  .order-lookup-card .order-lookup-header {
    flex-direction: column;
    align-items: flex-start !important;
  }
}

@media (max-width: 575px) {
  .order-lookup-card {
    padding: 1.9rem;
  }

  .order-lookup-input {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1rem 1.1rem 3.2rem;
  }

  .order-lookup-input button {
    width: 100%;
  }

  .order-lookup-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.hero-legal {
  position: relative;
  padding-top: 6.5rem;
}

.hero-legal-meta {
  margin-top: 1.5rem;
  opacity: 0.85;
}

.hero-legal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-legal-chip i {
  color: var(--theme-accent);
}

.hero-privacy {
  position: relative;
  padding-top: 6.5rem;
}

.privacy-summary-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(9, 12, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.privacy-summary-card::before {
  content: "";
  position: absolute;
  inset: 0% 45% 0% -20%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.privacy-summary-card > * {
  position: relative;
  z-index: 1;
}

.privacy-summary-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.5), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.1rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.privacy-summary-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.privacy-summary-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.privacy-summary-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.privacy-summary-bullet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.18);
  color: var(--theme-accent);
  font-size: 1.05rem;
}

.privacy-summary-item strong {
  letter-spacing: 0.02em;
  margin-bottom: 0.1rem;
}

@media (max-width: 991px) {
  .privacy-summary-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-privacy {
    padding-top: 6rem;
  }

  .privacy-summary-card {
    padding: 1.6rem;
  }
}

.legal-summary-card {
  position: relative;
  background: linear-gradient(165deg, rgba(24, 29, 45, 0.95), rgba(8, 11, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.legal-summary-card::before {
  content: "";
  position: absolute;
  inset: 0% 45% 0% -20%;
  background: radial-gradient(circle at top left, rgba(255, 107, 53, 0.28), transparent 70%);
  opacity: 0.55;
  pointer-events: none;
}

.legal-summary-card > * {
  position: relative;
  z-index: 1;
}

.legal-summary-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 107, 53, 0.48), rgba(255, 255, 255, 0.16));
  color: var(--theme-text);
  font-size: 1.15rem;
  box-shadow: 0 16px 32px rgba(255, 107, 53, 0.28);
}

.legal-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.legal-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.legal-summary-list i {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--theme-accent);
  margin-top: 0.2rem;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.legal-summary-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.legal-summary-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.legal-summary-bullet {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.2);
  color: var(--theme-accent);
  font-size: 1.05rem;
}

.legal-summary-item strong {
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

@media (max-width: 991px) {
  .legal-summary-card {
    margin-top: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-legal {
    padding-top: 6rem;
  }

  .legal-summary-card {
    padding: 1.6rem;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
  }
}
