html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

html a {
  text-decoration: none;
}

:root {
  --brand-red: #ff0a3b;
  --brand-red-glow: rgba(255, 10, 59, 0.4);
  --text-main: #ffffff;
  --text-muted: #888888;
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(255, 255, 255, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========== GLOBAL STYLES ========== */
body {
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 10, 59, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(100, 0, 255, 0.08) 0%, transparent 60%);
  background-color: #0a0a0a;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
  mix-blend-mode: multiply;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
  display: flex;
  justify-content: center;
  padding: 20px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
}

.logo {
  margin-right: auto;
}

.logo-img {
  height: 30px;
  width: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
  transform: scale(1.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 0
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover:not(.btn-fill-liquid) {
  color: var(--brand-red);
}

.btn-fill-liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  min-height: 50px;
  box-shadow: 0 0 0 2px rgba(255, 10, 59, 0.3) inset;
}

.btn-fill-liquid span {
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.btn-fill-liquid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-red);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  border-radius: 30px;
}

.btn-fill-liquid:hover::before {
  transform: scale(1);
}

.btn-primary {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 0 20px var(--brand-red-glow);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--brand-red);
}

/* ========== HERO SECTION ========== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.badge {
  display: inline-block;
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.title {
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.text-red {
  color: var(--brand-red);
}

.glow-text {
  text-shadow: 0 0 30px var(--brand-red-glow);
}

.subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 100px 10%;
}

#features {
  scroll-margin-top: 80px;
}

.section-title h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 80px;
  font-weight: 700;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

.icon-img {
  height: 35px;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card .icon {
  font-size: 35px;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ========== FADE-IN ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ========== SEPARATOR LINE ========== */
.separator-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
  margin: 80px 0;
  opacity: 0.6;
}

/* ========== PRICING SECTION ========== */
#pricing {
  scroll-margin-top: 70px;
}

.pricing {
  padding: 100px 0;
  position: relative;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card:last-child:nth-child(4n) {
  grid-column: 2 / 3;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--brand-red);
  box-shadow: 0 20px 40px rgba(255, 10, 59, 0.1);
}

.pricing-card.featured {
  border-color: var(--brand-red);
  background: linear-gradient(180deg, rgba(255, 10, 59, 0.05) 0%, rgba(255, 10, 59, 0) 100%);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: var(--brand-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 35px;
  transform: rotate(45deg);
}

.plan-header h3 {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.plan-header .price {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 30px;
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.plan-features li .feature-icon {
  width: 25px;
  margin-top: 2px;
  margin-right: -8px;
  vertical-align: middle;
}

.pricing-card .btn-fill-liquid {
  width: 100%;
  color: white;
  text-decoration: none;
  text-align: center;
}

/* ========== GEOGRAPHY SECTION ========== */
#geography {
  scroll-margin-top: 200px;
}

.locations-section {
  padding: 100px 10%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.location-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.flag-icon {
  width: 20px;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s;
  opacity: 0.7;
}

.location-item:hover {
  color: var(--text-main);
  background: rgba(255, 10, 59, 0.08);
  border-color: var(--brand-red);
  transform: scale(1.05);
  z-index: 2;
}

.location-item:hover .flag-icon {
  filter: grayscale(0%);
  opacity: 1;
}

.location-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-red);
  box-shadow: 0 0 10px var(--brand-red);
  transition: width 0.3s ease;
}

.location-item:hover::after {
  width: 100%;
}

.location-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(255, 10, 59, 0.05) 50%, transparent 52%);
  background-size: 200% 200%;
  transition: 0.6s;
  opacity: 0;
}

.location-item:hover::before {
  opacity: 1;
  background-position: 100% 100%;
}

.status-bar {
  margin-top: 60px;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  display: flex;
}

.status-track {
  display: flex;
  width: fit-content;
  animation: scroll-continuous 40s linear infinite;
}

.status-content {
  display: flex;
  flex-shrink: 0;
}

.status-content span {
  font-family: monospace;
  font-size: 12px;
  color: var(--brand-red);
  opacity: 0.6;
  letter-spacing: 2px;
  padding-right: 50px;
}

@keyframes scroll-continuous {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ========== FOOTER ========== */
.main-footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 30px 0;
  margin-top: 100px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 0.3fr 0.3fr 0.3fr;
  gap: 40px;
}

.footer-logo-wrapper {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-left: 2px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
}

.footer-column h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  display: inline-block;
  vertical-align: top;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  line-height: 1.4;
}

.footer-column ul li a:hover {
  color: var(--brand-red);
  transform: translateX(5px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.contact-item img {
  width: 18px;
  opacity: 0.6;
}

.contact-item:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* ========== MODAL WINDOWS ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--card-border);
  padding: 40px;
  border-radius: 24px;
  width: 100%;
  max-width: 450px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.modal-close:hover {
  color: var(--brand-red);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
}

.tg-auth-button {
  display: flex;
  margin: 0 auto;
}

.separator {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.separator::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--card-border);
}

.separator span {
  background: #0f0f0f;
  padding: 0 15px;
  color: var(--text-muted);
  font-size: 12px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== FORMS & VALIDATION ========== */
.modal-form .input-group {
  margin-bottom: 15px;
}

.modal-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 15px;
  border-radius: 12px;
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.modal-form input:focus {
  outline: none;
  border-color: var(--brand-red);
  background: rgba(255, 10, 59, 0.05);
}

.login-submit {
  background: rgba(41, 2, 9, 0.438);
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  border: none
}

.login-submit span {
  font-size: 14px;
}

.modal-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--text-muted);
}

.modal-footer a {
  text-decoration: none;
  font-weight: 600;
}

#openLogin {
  display: inline-block;
  transition: transform 0.2s ease;
}

#openLogin:hover {
  transform: scale(1.02);
}

#openRegister {
  display: inline-block;
  transition: transform 0.2s ease;
}

#openRegister:hover {
  transform: scale(1.02);
}

.validation-text {
  font-size: 11px;
  margin-top: 5px;
  color: var(--brand-red);
  opacity: 0;
  transition: 0.3s;
}

.validation-text.visible {
  opacity: 1;
}

.password-check-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.password-check-list li {
  font-size: 11px;
  color: var(--text-muted);
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.password-check-list li::before {
  content: '●';
  margin-right: 5px;
}

.password-check-list li.valid {
  color: #00ff88;
}

.password-check-list li.valid::before {
  content: '●';
}

.match-text {
  font-size: 11px;
  margin-top: 5px;
  color: var(--brand-red);
  opacity: 0;
  transition: 0.3s;
}

.match-text.visible {
  opacity: 1;
}

.match-text.success {
  color: #00ff88;
}

.login-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: grayscale(1);
  pointer-events: none;
}

/* ========== BURGER MENU ========== */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 0px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  z-index: 200;
}

.burger span {
  display: block;
  width: 28px;
  height: 2.5px;
  min-height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
  transform: translateZ(0) scaleY(1.02);
}

.burger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scale(0); }
.burger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 5%;
  width: 280px;
  background: rgba(10, 10, 10, 0.97);;
  backdrop-filter: blur(45px) saturate(180%);
  -webkit-backdrop-filter: blur(45px) saturate(180%);
  border: 1px solid rgba(255, 10, 59, 0.25);
  border-radius: 20px;
  padding: 16px 0;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95) rotateX(10deg);
  transform-origin: top right;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 
              0 0 0 1px rgba(255, 10, 59, 0.1), 
              inset 0 0 20px rgba(255, 10, 59, 0.03);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1) rotateX(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(15px);
}
.mobile-menu.active .mobile-link {
  animation: menuSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.mobile-menu.active .mobile-link:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.active .mobile-link:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(4) { animation-delay: 0.2s; }

.mobile-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 10, 59, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-link:hover {
  border-left-color: var(--brand-red);
  padding-left: 26px;
  color: #fff;
  text-shadow: 0 0 12px var(--brand-red-glow);
}
.mobile-link:hover::after { opacity: 1; }

@keyframes menuSlideIn {
  to { opacity: 1; transform: translateX(0); }
}

.mobile-login-btn {
  display: block !important;
  margin: 16px 16px 4px !important;
  border: none;
  background: transparent;
  text-align: center;
  padding: 14px !important;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-login-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-red) 0%, #ff0a3b 100%);
  transition: all 0.4s ease;
  z-index: -1;
  opacity: 0.95;
}
.mobile-login-btn:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.mobile-login-btn:hover {
  box-shadow: 0 5px 15px var(--brand-red-glow), 0 15px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.mobile-login-btn span {
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* ========== UP BUTTON ========== */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-red);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  z-index: 1000;
  color: white;
  padding: 0;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top svg {
  display: block;
  margin: auto;
}

/* ========== MOBILE ADAPTATION (FOR 1024PX) ========== */
@media (max-width: 1024px) {
  .title {
    font-size: 80px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }
}

/* ========== ANOTHER MOBILE ADAPTATION (FOR 768PX) ========== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav-links a:not(.btn-fill-liquid) {
    display: none;
  }

  .nav-links .btn-fill-liquid {
    margin-left: auto;
    margin-right: 10px;
  }

  .header {
    padding: 12px 5%;
    position: relative;
  }

  .logo {
    margin-left: 0%;
  }

  .logo-img {
    height: 24px;
  }

  .btn-fill-liquid {
    padding: 8px 20px !important;
  }

  /* Hero */
  .hero {
    padding: 0 15px;
    min-height: 60vh;
    height: auto;
  }

  .badge {
    font-size: 10px;
  }

  .title {
    font-size: 60px;
  }

  .subtitle {
    font-size: 14px;
    padding: 0 20px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .features {
    padding: 60px 5%;
  }

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing .container {
    padding: 0 15px;
  }

  .pricing-card {
    padding: 25px 20px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .plan-header h3 {
    font-size: 16px;
  }

  .plan-header .price {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .plan-features li {
    font-size: 12px;
    gap: 6px;
  }

  .plan-features li .feature-icon {
    width: 18px;
    margin-top: 0;
    margin-right: 0;
  }

  .popular-badge {
    top: 18px;
    right: -35px;
    font-size: 8px;
    padding: 4px 30px;
  }

  .locations-section {
    padding: 60px 5%;
  }

  .location-item {
    padding: 10px 16px;
    font-size: 10px;
    gap: 8px;
  }

  .flag-icon {
    width: 16px;
  }

  .status-bar {
    margin-top: 30px;
    padding: 10px 0;
  }

  .status-content span {
    font-size: 8px;
    padding-right: 20px;
  }

  .main-footer {
    margin-top: 60px;
    padding: 40px 0 20px;
  }

  .footer-container {
    gap: 25px;
    padding: 0 20px;
  }

  .footer-logo-img {
    height: 24px;
  }

  .footer-desc {
    font-size: 12px;
  }

  .footer-column h3 {
    font-size: 12px;
  }

  .footer-column ul li a {
    font-size: 12px;
  }

  .contact-item {
    font-size: 12px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .modal-form input {
    padding: 12px;
    font-size: 12px;
  }

  .tg-auth-button {
    font-size: 12px;
  }

  .back-to-top {
    display: flex;
  }
}

/* ========== ANOTHER MOBILE ADAPTATION (FOR 580PX) ========== */
@media (max-width: 580px) {
  .title {
    font-size: 10vw;
  }

  .logo {
    margin-left: 0%;
  }

  .nav-controls .btn-fill-liquid {
    display: none;
  }
  .mobile-menu .btn-fill-liquid {
    display: block;
  }

  .modal-content {
    width: 80%;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .cards-container {
    gap: 15px;
  }

  .card {
    padding: 20px 15px;
  }

  .icon-img {
    height: 24px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 12px;
  }

  .pricing-card {
    padding: 20px 15px;
  }

  .plan-header .price {
    font-size: 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-img {
    margin: 0 auto;
  }

  .footer-desc {
    font-size: 12px;
    max-width: 280px;
    margin: 0 auto;
    margin-top: 8px;
  }

  .footer-column h3 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .footer-contacts {
    align-items: center;
    gap: 12px;
  }

  .contact-item {
    font-size: 13px;
    justify-content: center;
  }

  .contact-item img {
    width: 16px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 10px;
    padding: 0 15px;
  }
}