@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #0A192F;
  --bg-secondary: #081426;
  --bg-card: rgba(255, 255, 255, 0.05);
  --accent: #00D4AA;
  --accent-dark: #00B894;
  --gold: #FFD700;
  --gold-dark: #FFC700;
  --text-primary: #FFFFFF;
  --text-secondary: #B8C5D6;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(0, 212, 170, 0.2);
  --whatsapp: #25D366;
  --telegram: #0088cc;
  --input-bg: rgba(255, 255, 255, 0.05);
  --shadow: rgba(0, 0, 0, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }

.preloader-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: logoPulse 1.5s ease-in-out infinite;
}

.preloader-logo i { font-size: 50px; color: white; }

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--glass-border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.preloader-text {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 600;
  animation: fadeIn 1s ease;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 20px 0 !important;
  min-height: 140px !important;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px !important;
}

.logo-link {
  display: block;
  text-decoration: none;
  margin-left: -250px !important;
  margin-right: auto !important;
  flex-shrink: 0;
}

.logo {
  height: 180px !important;
  width: auto;
  max-width: 350px !important;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.95);
  transform: translateY(10px);
  transition: all 0.3s ease;
  display: block;
}

.logo-link:hover .logo {
  transform: scale(1.1) translateY(10px);
  filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(0, 212, 170, 0.8));
}

.header-right {
  display: flex !important;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.lang-btn.active { color: var(--accent); }
.lang-btn:hover { color: var(--accent); }
.lang-divider { color: var(--text-secondary); opacity: 0.5; }

.phone {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  white-space: nowrap;
}

.social-icons { display: flex; gap: 12px; }

.social-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: iconPulse 2s infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.3s; }
.social-icon:nth-child(3) { animation-delay: 0.45s; }
.social-icon:nth-child(4) { animation-delay: 0.6s; }

@keyframes iconPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 212, 170, 0); }
}

.social-icon:hover {
  background: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
}

.header-right .btn-gold {
  padding: 12px 28px;
  font-weight: 700;
  font-size: 14px;
}

.mobile-menu-btn {
  display: none !important;
  background: transparent !important;
  border: none !important;
  color: var(--accent) !important;
  font-size: 24px !important;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

/* BUTTONS */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

.btn-gold { background: var(--gold); color: var(--bg-primary); }
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-accent { background: var(--accent); color: var(--bg-primary); }
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

.btn-telegram { background: var(--telegram); color: white; }
.btn-telegram:hover {
  background: #006699;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2070') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  padding: 160px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(8, 20, 38, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero .accent {
  color: var(--accent);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.2s both;
}

/* FORMS */
.glass-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  animation: fadeInUp 1s ease 0.4s both;
}

.input-name {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  transition: all 0.3s;
}

.input-name:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.input-name::placeholder { color: var(--text-secondary); }

.input-name.error {
  border-color: #ff4757 !important;
  background: rgba(255, 71, 87, 0.1) !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-select {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300D4AA' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 40px;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-select.error {
  border-color: #ff4757 !important;
  animation: shake 0.3s ease;
}

.field-error {
  color: #ff4757;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 10px;
  animation: shake 0.3s ease;
}

.form-note {
  margin-top: 15px;
  font-size: 12px;
  color: var(--text-secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* SECTIONS */
.section { padding: 100px 0; }

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.line {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 60px;
  border-radius: 3px;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px var(--shadow);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent);
}

.card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.center-btn { text-align: center; }

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 212, 170, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--accent);
  transition: all 0.3s;
}

.why-item:hover .why-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: rotateY(360deg);
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* SOCIAL */
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.social-icon-large {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
}

.social-icon-large.telegram { background: var(--telegram); color: white; }
.social-icon-large.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
.social-icon-large.tiktok {
  background: #000;
  color: white;
  border: 2px solid #fff;
}

.social-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.social-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.8;
}

.quick-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.quick-form { text-align: center; }
.quick-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

/* CONTACTS */
.contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contacts-info h3 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: var(--accent);
  width: 30px;
}

.contact-item strong { display: block; margin-bottom: 5px; }

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-item a:hover { opacity: 0.8; }

.social-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contacts-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.contact-form h3 {
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form h3 i {
  color: var(--accent);
  margin-right: 10px;
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  padding: 50px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-left p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 5px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-right a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-right a:hover { color: var(--accent); }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-size: 14px;
}

/* MODALS */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal.active { display: flex; }

.modal-content {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover { color: var(--accent); }

.modal-content h3 {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

.thanks-modal { text-align: center; }

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* STICKY & SCROLL */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  padding: 18px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--bg-primary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 998;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CUSTOM COUNTRY SELECTOR (ИСПРАВЛЕННЫЙ)
   ============================================ */
.phone-field {
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--input-bg);
  transition: all 0.3s;
  width: 100%;
}

.phone-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.country-select-wrapper {
  position: relative;
  flex-shrink: 0;
}

.country-select {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: rgba(0, 212, 170, 0.1);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  cursor: pointer;
  min-width: 100px;
  transition: all 0.3s;
  user-select: none;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

.country-select:hover {
  background: rgba(0, 212, 170, 0.15);
}

.country-select.active {
  background: rgba(0, 212, 170, 0.2);
}

.country-select .selected-flag {
  font-size: 18px;
}

.country-select .selected-code {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

.country-select i.fa-chevron-down {
  color: var(--accent);
  font-size: 10px;
  margin-left: auto;
  transition: transform 0.3s;
}

.country-select.active i.fa-chevron-down {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: none;
  max-height: 300px;
  overflow: hidden;
}

.country-dropdown.show {
  display: block;
}

.country-search {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
  z-index: 10;
}

.country-search i {
  color: var(--accent);
  font-size: 14px;
}

.country-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
}

.country-search input::placeholder {
  color: var(--text-secondary);
}

.country-list {
  max-height: 250px;
  overflow-y: auto;
  padding: 5px;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 6px;
  margin-bottom: 2px;
  position: relative;
}

.country-option:hover {
  background: rgba(0, 212, 170, 0.1);
}

.country-option.selected {
  background: rgba(0, 212, 170, 0.15);
}

.country-option .flag {
  font-size: 22px;
  width: 28px;
  text-align: center;
}

.country-option .name {
  flex: 1;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
}

.country-option .code {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-right: 10px;
}

.country-option .checkmark {
  color: var(--accent);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s;
  margin-left: 5px;
}

.country-option.selected .checkmark {
  opacity: 1;
}

.country-option.hidden {
  display: none;
}

/* Scrollbar */
.country-list::-webkit-scrollbar {
  width: 6px;
}

.country-list::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

.country-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.country-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

.input-phone {
  flex: 1;
  padding: 16px 20px;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  outline: none;
  min-width: 0;
}

.input-phone::placeholder {
  color: var(--text-secondary);
}

.phone-field.error {
  border-color: #ff4757 !important;
  animation: shake 0.3s ease;
}

/* POLICY PAGE */
.policy-page {
  padding: 150px 0 80px;
  min-height: 100vh;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.policy-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--accent);
}

.policy-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--accent);
}

.policy-content p,
.policy-content li {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.policy-content ul { padding-left: 20px; }

.policy-content a {
  color: var(--accent);
  text-decoration: none;
}

.policy-content a:hover { text-decoration: underline; }

.back-btn {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.back-btn:hover { text-decoration: underline; }

/* LAZY LOADING */
img[loading="lazy"] {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-secondary) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

img[loading="lazy"][src] {
  background: none;
  animation: none;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 10px 0 !important;
    min-height: 70px !important;
  }
  
  .header-inner {
    height: 60px !important;
    padding: 0 15px;
  }
  
  .logo-link { margin-left: 0 !important; }
  
  .logo {
    height: 50px !important;
    max-width: 150px;
    transform: none !important;
  }
  
  .header-right { display: none !important; }
  
  .mobile-menu-btn {
    display: flex !important;
    background: transparent !important;
    border: none !important;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 1001;
    padding: 80px 30px;
  }
  
  .mobile-menu.active { display: block; }
  
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 30px;
    cursor: pointer;
  }
  
  .mobile-lang-switcher {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 15px;
    background: var(--glass-bg);
    border-radius: 15px;
  }
  
  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mobile-menu nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
  }
  
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .glass-form { padding: 25px; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .cards-grid,
  .why-grid { grid-template-columns: 1fr !important; }
  
  .social-cards {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .social-card { padding: 30px 20px; }
  .social-icon-large {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }
  
  .contacts-wrapper { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .social-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .social-buttons .btn { width: 100%; }
  .sticky-cta { display: block !important; }
  .scroll-top { display: none !important; }
  .modal-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .input-phone,
  .input-name,
  .form-select {
    font-size: 14px;
    padding: 14px 16px;
  }
  
  .policy-page { padding: 100px 0 60px; }
  .policy-content { padding: 25px; }
  .policy-content h1 { font-size: 28px; }
  .policy-content h2 { font-size: 20px; }
  
  .country-dropdown {
    width: 260px;
    left: -5px;
  }
  
  .country-list {
    max-height: 220px;
  }
  
  .country-option .flag {
    font-size: 18px;
    width: 24px;
  }
  
  .country-option .name,
  .country-option .code {
    font-size: 13px;
  }
  
  .country-select {
    min-width: 85px;
    padding: 14px 8px;
  }
  
  .country-select .selected-flag {
    font-size: 16px;
  }
  
  .country-select .selected-code {
    font-size: 13px;
  }
  
  .input-phone {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 968px) {
  .social-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .country-select {
    min-width: 75px;
    padding: 12px 6px;
  }
  
  .country-select .selected-flag {
    font-size: 14px;
  }
  
  .country-select .selected-code {
    font-size: 12px;
  }
  
  .input-phone {
    font-size: 13px;
    padding: 12px 12px;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .country-dropdown {
    width: 240px;
  }
}