

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip-card,
#goog-gt-tt,
.goog-te-menu-frame {
  display: none !important;
}

.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

:root {
  
  --bg: #050505;
  --bg-2: rgba(5, 5, 5, 0.92);
  --text: #fff5f0;
  --surface: #0f0a08;
  --surface-2: #1a1008;
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(232, 77, 28, 0.18);

  
  --accent: #e84d1c;
  --accent-2: #f59e0b;
  --accent-3: #ff8c42;
  --glow: rgba(232, 77, 28, 0.35);
  --glow-2: rgba(245, 158, 11, 0.2);

  --muted: #8a6a5a;
  --inv-bg: #ffffff;
  --inv-text: #000000;
  --nav-bg: rgba(5, 5, 5, 0.85);
  --font-size: 15px;
}

html.ts-lg {
  --font-size: 18px;
}

html.ts-xl {
  --font-size: 20px;
}

html {
  font-size: var(--font-size);
}

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

html {
  scroll-behavior: auto;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

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

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

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 10px;
}

.t-bg {
  background-color: var(--bg) !important;
}

.t-surface {
  background-color: var(--surface) !important;
}

.t-text {
  color: var(--text) !important;
}

.t-muted {
  color: var(--muted) !important;
}

.t-border {
  border-color: var(--border) !important;
}

.t-inv {
  background-color: var(--inv-bg) !important;
  color: var(--inv-text) !important;
}

.waves { display: none; }
.wave { display: none; }

.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fade-in {
  animation: fadeIn 0.3s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1
  }

  75%,
  100% {
    transform: scale(2.2);
    opacity: 0
  }
}

@keyframes shimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.ping {
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

html.a-gray {
  filter: grayscale(100%);
}

html.a-contrast {
  filter: contrast(160%);
}

html.a-motion * {
  animation: none !important;
  transition: none !important;
}

html.a-lineh p,
html.a-lineh span,
html.a-lineh div {
  line-height: 2 !important;
}

html.a-wordsp p,
html.a-wordsp span,
html.a-wordsp div {
  word-spacing: 0.2rem !important;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  padding: 0 3rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
}

@media (max-width:1024px) {
  #nav {
    padding: 0 1.25rem;
  }
}

.nav-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
  transition: opacity 0.25s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.logo-name {
  font-family: 'Playfair Display', 'Outfit', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ff7043, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width:1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, var(--accent), var(--accent-2));
  border-radius: 9999px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.lang-wrap {
  position: relative;
  display: none;
}

@media (min-width:640px) {
  .lang-wrap {
    display: block;
  }
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(232, 77, 28, 0.1);
  color: var(--text);
  border-color: rgba(232, 77, 28, 0.4);
}

.lang-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.acc-wrap {
  position: relative;
}

.acc-toggle {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  transition: all 0.2s;
  line-height: 0;
}

.acc-toggle:hover {
  background: rgba(232, 77, 28, 0.12);
  color: var(--text);
  border-color: rgba(232, 77, 28, 0.4);
}

.acc-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  width: 300px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  backdrop-filter: blur(20px);
  padding: 20px;
  z-index: 110;
  display: none;
  animation: fadeIn 0.18s ease;
}

.acc-panel.open {
  display: block;
}

.acc-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.acc-panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
}

.acc-x {
  color: var(--muted);
  line-height: 0;
  transition: color 0.2s;
}

.acc-x:hover {
  color: var(--text);
}

.acc-opt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: all 0.2s;
}

.acc-opt:hover {
  border-color: rgba(232, 77, 28, 0.5);
  color: var(--text);
}

.acc-opt.on {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(232, 77, 28, 0.08);
}

.acc-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: all 0.25s;
}

.acc-opt.on .acc-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--glow);
}

.nav-auth {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: #050505;
  padding: 0 22px;
  height: 40px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: all 0.25s;
  box-shadow: none;
}

@media (min-width:640px) {
  .nav-auth {
    display: flex;
  }
}

.nav-auth:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--glow);
}

.hamburger {
  display: flex;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  line-height: 0;
  transition: all 0.2s;
}

.hamburger:hover {
  background: rgba(232, 77, 28, 0.1);
  color: var(--text);
}

@media (min-width:1024px) {
  .hamburger {
    display: none;
  }
}

#mob-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 250;
  animation: fadeIn 0.18s ease;
}
#mob-backdrop.open {
  display: block;
}

#mob-menu {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, calc(100vw - 32px));
  z-index: 260;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  backdrop-filter: blur(20px);
  padding: 20px;
  flex-direction: column;
}
#mob-menu.open {
  display: flex;
  animation: fadeIn 0.18s ease;
}

.mob-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.mob-panel-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
}

.mob-close {
  display: block;
  color: var(--muted);
  line-height: 0;
  transition: color 0.2s;
}
.mob-close:hover {
  color: var(--text);
}

.mob-link {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: all 0.2s;
}

.mob-link::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: all 0.25s;
}
.mob-link:hover {
  border-color: rgba(232, 77, 28, 0.5);
  color: var(--text);
}
.mob-link.active {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(232, 77, 28, 0.08);
}
.mob-link.active::after {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--glow);
}

.mob-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #050505;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  width: 100%;
  transition: background 0.2s;
}

#theme-btn { display: none !important; }

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 6rem 4rem 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), var(--accent-2), transparent);
}

@media (max-width:768px) {
  footer {
    padding: 4rem 1.5rem 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 5fr 2fr 2fr 3fr;
  gap: 4rem;
  max-width: 90rem;
  margin: 0 auto 4rem;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.925rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 340px;
}

.footer-col-h {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-3);
  margin-bottom: 1.75rem;
}

.footer-lnks {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-lnk {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-lnk:hover {
  color: var(--text);
}

.footer-ver {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-3);
  margin-bottom: 1rem;
  background: rgba(124, 58, 237, 0.07);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  opacity: 0.5;
  max-width: 90rem;
  margin: 0 auto;
}

@media (min-width:768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-cities {
  display: flex;
  gap: 3rem;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-line {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border-2);
  padding: 12px 4px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s;
}

.form-line:focus {
  border-color: var(--accent);
}

.form-box {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-box:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.btn-red {
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s;
  box-shadow: 0 8px 32px var(--glow);
}

.btn-red:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px var(--glow);
}

.btn-red:active {
  transform: translateY(0) scale(0.97);
}

.btn-inv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--inv-bg);
  color: var(--inv-text);
  border-radius: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-inv:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-inv:active {
  transform: scale(0.97);
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  #nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 5, 5, 0.98);
  }
  #mob-menu {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #0f0a08;
  }
  .acc-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #0f0a08;
  }
}
