/* ===== GLOBAL OVERFLOW FIX ===== */
*, *::before, *::after { box-sizing: border-box !important; }

html {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  min-height: 100vh;
}

/* WordPress specific resets */
#page, #content, .site, .site-content, .site-primary,
.ast-container, .ast-flex, .entry-content,
#main, .wp-site-blocks {
  max-width: 100% !important;
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove WordPress admin bar space */
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

/* Images */
img { max-width: 100%; height: auto; display: block; }


:root {
  --blue: #3A78B5;
  --blue-light: #5B9BD5;
  --blue-pale: #EBF4FF;
  --blue-dark: #1A3A5C;
  --pink: #E91E8C;
  --pink-dark: #C2185B;
  --white: #ffffff;
  --gray-50: #F7FAFF;
  --gray-100: #EEF3FA;
  --gray-200: #D8E6F5;
  --gray-400: #7A98B8;
  --gray-600: #4A6080;
  --gray-900: #0F1E2E;
  --shadow-sm: 0 2px 8px rgba(58,120,181,0.08);
  --shadow-md: 0 8px 30px rgba(58,120,181,0.12);
  --shadow-lg: 0 20px 60px rgba(58,120,181,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid var(--gray-200) !important;
  padding: 0 40px !important;
  box-sizing: border-box !important;
}
/* Компенсація висоти хедера — без JS */
body {
  padding-top: 70px !important;
}
@media (max-width: 600px) {
  body { padding-top: 64px !important; }
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  font-family: 'Manrope', sans-serif;
}
.logo-text { font-size: 20px; font-weight: 800; color: var(--blue-dark); }
.logo-text span { color: var(--blue-light); }
.logo-sub { font-size: 9px; color: var(--gray-400); letter-spacing: 2px; display: block; margin-top: -2px; }
.nav { display: flex; gap: 6px; flex: 1; }
.nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: all .2s;
}
.nav a:hover, .nav a.active { background: var(--blue-pale); color: var(--blue); }
.header-btns { display: flex; gap: 10px; }
.btn-login {
  padding: 9px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.btn-login:hover { background: var(--blue); color: white; }
.btn-reg {
  padding: 9px 20px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(233,30,140,0.3);
}
.btn-reg:hover { opacity: 0.88; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #F0F7FF 0%, #FAFCFF 40%, #F0F4FF 100%);
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,155,213,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233,30,140,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp .6s ease both;
}
.hero-badge-dot {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.hero-h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
  animation: fadeInUp .6s .1s ease both;
}
.hero-h1 .accent { color: var(--blue); }
.hero-h1 .accent-pink { color: var(--pink); }
.hero-sub {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp .6s .2s ease both;
}
.hero-stats {
  display: flex;
  gap: 0;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  overflow: hidden;
  animation: fadeInUp .6s .3s ease both;
}
.hero-stat {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  display: block;
}
.hero-stat-label {
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 2px;
}
.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  animation: fadeInUp .6s .4s ease both;
}
.soc-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.soc-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.soc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.soc-fb { background: #1877F2; }
.soc-yt { background: #FF0000; }
.soc-tt { background: #010101; }
.soc-tg { background: #0088cc; }
.soc-li { background: #0077B5; }
.soc-tw { background: #1DA1F2; }

/* ===== REG CARD ===== */
.reg-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  animation: fadeInRight .7s .2s ease both;
}
.reg-card-header { text-align: center; margin-bottom: 24px; }
.reg-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 12px;
}
.reg-title { font-size: 20px; font-weight: 800; color: var(--gray-900); }
.reg-sub { font-size: 13px; color: var(--gray-400); margin-top: 4px; }
.reg-card input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  margin-bottom: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.reg-card input:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.12);
  background: white;
}
.reg-card input::placeholder { color: var(--gray-400); }
.btn-register {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 6px 20px rgba(233,30,140,0.3);
  transition: all .2s;
  font-family: 'Manrope', sans-serif;
}
.btn-register:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(233,30,140,0.4); }
.reg-login { text-align: center; margin-top: 14px; font-size: 13px; color: var(--gray-400); }
.reg-login a { color: var(--blue); font-weight: 700; text-decoration: none; }
.reg-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 12px; color: var(--gray-400); }

/* ===== SERVICES ===== */
.section { padding: 80px 40px; }
.section-alt { background: var(--gray-50); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-label {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 38px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub { font-size: 17px; color: var(--gray-400); max-width: 540px; margin: 0 auto; line-height: 1.6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-color, var(--blue));
  transform: scaleX(0);
  transition: transform .25s;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.service-title { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--gray-400); line-height: 1.7; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.stag {
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(91,155,213,0.3);
  padding-bottom: 1px;
  transition: gap .2s;
}
.service-link:hover { gap: 8px; }

/* ===== ADVANTAGES ===== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.adv-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all .2s;
}
.adv-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }
.adv-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue-pale), #D6EAFF);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.adv-title { font-size: 17px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.adv-desc { font-size: 14px; color: var(--gray-400); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 44px; left: calc(16.6% + 20px); right: calc(16.6% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(58,120,181,0.3);
  font-family: 'Manrope', sans-serif;
}
.step-title { font-size: 19px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--gray-400); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue-light); }
.faq-q {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  transition: background .2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-arrow {
  width: 28px; height: 28px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--blue); color: white; }
.faq-a {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1E4A7A 50%, var(--blue-dark) 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,155,213,0.15), transparent 60%);
  border-radius: 50%;
}
.cta-inner { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-size: 42px; font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 36px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary {
  padding: 15px 36px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  border-radius: var(--radius-sm);
  color: white;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(233,30,140,0.4);
  transition: all .2s;
}
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(233,30,140,0.5); }
.cta-btn-secondary {
  padding: 15px 36px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.cta-btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  padding: 50px 40px 30px;
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; }
.footer-brand .logo-text { color: white; font-size: 22px; }
.footer-brand .logo-text span { color: var(--blue-light); }
.footer-brand p { font-size: 14px; margin-top: 10px; line-height: 1.6; max-width: 280px; }
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: 1px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 14px; text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .header { padding: 0 20px; }
  .nav { display: none; }
  .hero, .section, .cta-section { padding-left: 20px; padding-right: 20px; }
}
/* ===== LANG SWITCHER ===== */
.lang-switcher { position: relative; display: flex; align-items: center; margin-right: 10px; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; cursor: pointer; font-size: 13px; font-weight: 700;
  color: var(--gray-600); background: white; transition: all .2s; user-select: none;
}
.lang-current:hover { border-color: var(--blue-light); color: var(--blue); }
.lang-arrow { font-size: 9px; color: var(--gray-400); transition: transform .2s; }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-switcher.open .lang-current { border-color: var(--blue-light); color: var(--blue); background: var(--blue-pale); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: 10px; box-shadow: 0 8px 30px rgba(58,120,181,0.15);
  overflow: hidden; min-width: 130px;
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: all .2s; z-index: 200;
}
.lang-switcher.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 14px; font-weight: 600;
  color: var(--gray-600); text-decoration: none; transition: background .15s;
  border-bottom: 1px solid var(--gray-100);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--blue-pale); color: var(--blue); }
.lang-option.active { color: var(--blue); background: var(--blue-pale); }
.lang-check { color: var(--blue); font-size: 12px; }

/* ===== BURGER ===== */
.burger-btn {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--blue-dark);
  padding: 4px 8px; border-radius: 6px; line-height: 1;
  transition: background .2s; flex-shrink: 0;
}
.burger-btn:hover { background: var(--blue-pale); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: block; position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 199; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s ease;
  visibility: hidden; pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible; pointer-events: auto;
}
.mobile-menu-inner { padding: 24px 20px 40px; display: flex; flex-direction: column; gap: 24px; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block; padding: 13px 14px;
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 16px; font-weight: 600; font-family: 'Manrope', sans-serif;
  border-radius: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: rgba(91,155,213,0.15); color: #5B9BD5; }
.mobile-menu-btns { display: flex; flex-direction: column; gap: 10px; }
.mobile-btn-login {
  display: block; padding: 13px; text-align: center;
  border: 2px solid #5B9BD5; border-radius: 10px;
  color: #5B9BD5; font-size: 15px; font-weight: 700;
  text-decoration: none; font-family: 'Manrope', sans-serif;
}
.mobile-btn-reg {
  display: block; padding: 13px; text-align: center;
  background: linear-gradient(90deg, #E91E8C, #C2185B);
  border-radius: 10px; color: white; font-size: 15px; font-weight: 700;
  text-decoration: none; font-family: 'Manrope', sans-serif;
}
.mobile-lang-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.35); letter-spacing: 2px; margin-bottom: 8px; }
.mobile-lang-btns { display: flex; gap: 10px; }
.mobile-lang-btn {
  flex: 1; display: block; padding: 11px 8px; text-align: center;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.mobile-lang-btn.active { border-color: #5B9BD5; color: #5B9BD5; background: rgba(91,155,213,0.1); }
.mobile-menu-socials { display: flex; gap: 8px; }
.mobile-menu-socials a {
  flex: 1; display: block; padding: 11px 4px; text-align: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; color: rgba(255,255,255,0.65); font-size: 12px; text-decoration: none;
}

/* ===== MODAL OVERLAY ===== */
.ls-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10, 25, 50, 0.6); backdrop-filter: blur(6px);
  z-index: 999999 !important; align-items: center; justify-content: center; padding: 20px;
}
.ls-overlay.active { display: flex; }
.ls-modal {
  background: white; border-radius: 24px; padding: 40px 36px;
  width: 100%; max-width: 420px; position: relative;
  box-shadow: 0 30px 80px rgba(10,25,50,0.25);
  animation: modalIn .3s ease both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.ls-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; background: #F0F4FF; border: none;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 16px; color: #7A98B8;
}
.ls-modal-close:hover { background: #E0EBFF; color: #3A78B5; }
.ls-modal-icon { width: 64px; height: 64px; background: linear-gradient(135deg, #5B9BD5, #3A78B5); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.ls-modal-title { font-size: 22px; font-weight: 900; color: #0F1E2E; text-align: center; margin-bottom: 6px; font-family: 'Manrope', sans-serif; }
.ls-modal-sub { font-size: 14px; color: #7A98B8; text-align: center; margin-bottom: 28px; }
.ls-modal input[type=text], .ls-modal input[type=email], .ls-modal input[type=password] {
  width: 100%; padding: 13px 16px; border: 1.5px solid #D8E6F5;
  border-radius: 10px; font-size: 15px; font-family: 'Manrope', sans-serif;
  color: #0F1E2E; background: #F7FAFF; margin-bottom: 12px;
  box-sizing: border-box; outline: none; transition: border-color .2s;
}
.ls-modal input:focus { border-color: #5B9BD5; background: white; }
.ls-modal input::placeholder { color: #A0B4C8; }
.ls-modal-recaptcha { margin-bottom: 14px; transform: scale(0.88); transform-origin: left top; }
.ls-btn-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(90deg, #E91E8C, #C2185B);
  border: none; border-radius: 10px; color: white;
  font-size: 16px; font-weight: 800; cursor: pointer;
  font-family: 'Manrope', sans-serif; box-shadow: 0 6px 20px rgba(233,30,140,0.3);
}
.ls-modal-footer { text-align: center; margin-top: 16px; font-size: 13px; color: #7A98B8; }
.ls-modal-footer a { color: #3A78B5; font-weight: 700; text-decoration: none; cursor: pointer; }
.ls-forgot { display: block; text-align: right; font-size: 13px; color: #3A78B5; text-decoration: none; margin-bottom: 16px; font-weight: 600; }
.ls-secure { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 12px; color: #A0B4C8; }
.ls-modal-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: #B0C4D8; font-size: 13px; }
.ls-modal-divider::before, .ls-modal-divider::after { content: ''; flex: 1; height: 1px; background: #E8F0F8; }
.ls-contact-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; border: 1.5px solid #D8E6F5; color: #4A6080; transition: all .2s; }
.ls-contact-btn:hover { border-color: #5B9BD5; background: #F0F7FF; color: #3A78B5; }
.ls-modal-contacts { display: flex; justify-content: center; gap: 12px; margin-top: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .hero, .section, .cta-section, .footer-main, .footer-top-bar, .footer-bottom-bar { padding-left: 20px; padding-right: 20px; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-inner { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Header sticky */
  .header {
    padding: 0 16px !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 1px 0 #D8E6F5 !important;
  }
  .header-inner { height: 64px !important; gap: 10px !important; }
  .logo-icon { width: 36px !important; height: 36px !important; font-size: 17px !important; border-radius: 9px !important; flex-shrink: 0 !important; }
  .logo-text { font-size: 14px !important; line-height: 1.2 !important; }
  .logo-sub { display: none !important; }
  .logo { gap: 7px !important; }
  .nav { display: none !important; }
  .lang-switcher { display: none !important; }
  .header-btns { display: flex !important; gap: 8px; }
  .btn-login {
    padding: 9px 16px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
  .btn-reg {
    padding: 9px 16px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
  .burger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    padding: 4px 6px;
  }
  .mobile-menu { display: block; top: 64px; }

  /* Hero */
  .hero { padding: 28px 14px 36px; }
  .hero-h1 { font-size: 28px; line-height: 1.2; }
  .hero-sub { font-size: 15px; overflow-wrap: break-word; }
  .hero-badge { font-size: 12px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid #D8E6F5; padding: 12px; }
  .hero-stat:nth-child(odd) { border-right: 1px solid #D8E6F5 !important; }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .hero-stat-num { font-size: 22px; }
  .soc-pill { padding: 7px 11px; font-size: 12px; }
  .reg-card { padding: 22px 16px; }
  .reg-title { font-size: 18px; }

  /* Sections */
  .section { padding: 36px 14px; }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .adv-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .adv-card { padding: 16px 12px; }
  .adv-title { font-size: 13px; }
  .adv-desc { font-size: 12px; }
  .steps { grid-template-columns: 1fr; gap: 16px; }

  /* CTA */
  .cta-section { padding: 44px 14px; }
  .cta-title { font-size: 26px; }
  .cta-btns { flex-direction: column; }
  .cta-btn-primary, .cta-btn-secondary { padding: 13px 20px; font-size: 15px; width: 100%; text-align: center; }

  /* Footer */
  .footer-top-bar { padding: 12px 14px; }
  .footer-top-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-main { padding: 26px 14px 0; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-bar { padding: 14px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }

  /* Modals */
  .ls-modal { padding: 26px 16px; border-radius: 18px; }
  .ls-modal-contacts { flex-direction: column; gap: 8px; }
  .ls-contact-btn { justify-content: center; }
}

@media (max-width: 380px) {
  .hero-h1 { font-size: 24px; }
  .adv-grid { grid-template-columns: 1fr; }
}

