*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --white: #ffffff;
  --off-white: #f8f6f1;
  --navy: #1a1a2e;
  --gold: #b8860b;
  --text-dark: #2d2d2d;
  --text-mid: #666666;
  --text-light: #999999;
  --border: #e8e8e8;
  --border-light: #f0f0f0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  margin-top: 70px;
}
.ticker {
  display: flex;
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-item span.flag {
  font-size: 1.1rem;
}
.ticker-item .divider {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 10px;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}
@media (min-width: 769px) {
  .ticker-wrap {
    margin-top: 84px;
  }
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-links a:hover::after {
  width: 100%;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch span {
  color: var(--text-light);
  font-size: 0.8rem;
}
.lang-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px !important;
}
.lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.lang-link.active {
  color: var(--navy);
  font-weight: 600;
}
.lang-link.active::after {
  width: 100% !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-burger span {
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.4s ease;
  display: block;
  transform-origin: center;
}
.nav-burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.nav-burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  animation: slideInMenu 0.5s ease forwards;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-menu a:hover {
  color: var(--gold);
  transform: translateX(8px);
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.mobile-menu a:hover::after {
  width: 100%;
}
.mobile-menu.active a:nth-child(2) {
  animation-delay: 0.1s;
}
.mobile-menu.active a:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-menu.active a:nth-child(4) {
  animation-delay: 0.3s;
}
.mobile-menu.active a:nth-child(5) {
  animation-delay: 0.4s;
}
.mobile-menu.active a:nth-child(6) {
  animation-delay: 0.5s;
}
@keyframes slideInMenu {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-lang-switch {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  animation: slideInMenu 0.5s ease 0.6s forwards;
  opacity: 0;
}
.mobile-lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.mobile-lang-switch a:hover {
  color: var(--gold);
}
.mobile-lang-switch a.active {
  color: var(--gold);
  font-weight: 600;
}
.mobile-close {
  display: none;
}
/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background: var(--white);
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content {
  padding-right: 20px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.05;
}
.hero-subtitle-ru {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}
.hero-subtitle-en {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-description {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 480px;
}
.hero-regions {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 40px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-shape {
  position: absolute;
  width: 85%;
  height: 90%;
  background: var(--navy);
  border-radius: 20px;
  top: 5%;
  right: -3%;
  z-index: 0;
  opacity: 0.08;
}
.hero-shape-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: -30px;
  right: -20px;
  z-index: 1;
  opacity: 0.4;
}
.hero-photo {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  height: 560px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 30px 60px rgba(26, 26, 46, 0.1);
}
.hero-gold-line {
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 3;
}
/* ---- SECTION BASE ---- */
.section {
  padding: 120px 0;
}
.section-alt {
  background: var(--off-white);
}
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 60px;
}
.section-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 60px;
}
/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  border: 1px solid var(--border);
  padding: 44px 36px;
  transition: all 0.4s ease;
  position: relative;
  background: var(--white);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.06);
}
.service-card:hover::before {
  height: 100%;
}
.service-number {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}
.service-card:hover .service-number {
  color: var(--gold);
}
.service-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 28px;
  line-height: 1.3;
}
.service-list {
  list-style: none;
}
.service-list li {
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.service-list li strong {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
/* ---- EXPERIENCE ---- */
.exp-scroll-wrap {
  overflow-x: auto;
  margin: 0 -40px;
  padding: 0 40px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.exp-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.exp-cards {
  display: flex;
  gap: 30px;
  min-width: max-content;
}
.exp-card {
  min-width: 360px;
  max-width: 360px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.4s ease;
  position: relative;
}
.exp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.exp-card:hover::after {
  width: 100%;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 26, 46, 0.06);
}
.exp-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.exp-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.exp-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.exp-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 1px;
}
/* ---- COOPERATION ---- */
.coop-list {
  max-width: 700px;
}
.coop-item {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
  transition: all 0.3s ease;
}
.coop-item:hover {
  padding-left: 12px;
}
.coop-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
  padding-left: 16px;
  border-left: 2px solid var(--gold);
}
.coop-text h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.coop-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
}
/* ---- TRACK RECORD ---- */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.track-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  background: var(--white);
}
.track-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.track-item i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.track-item p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}
/* ---- CONTACT ---- */
.contact-section {
  background: var(--navy);
  padding: 100px 0;
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-left .section-label {
  color: var(--gold);
}
.contact-left h2 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-left p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
}
.contact-cta:hover {
  background: #d4a017;
  transform: translateY(-2px);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-row i {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-row .label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}
.contact-row .value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.contact-row .value a:hover {
  color: var(--gold);
}
/* ---- FOOTER ---- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.footer-links a.creator-credit {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--gold);
}
/* ---- WHATSAPP FAB ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    padding-right: 0;
    order: 2;
  }
  .hero-photo-wrap {
    order: 1;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-photo {
    max-width: 340px;
    height: 420px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .track-grid {
    grid-template-columns: 1fr;
  }
  .exp-card {
    min-width: 300px;
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .hero {
    padding: 120px 0 70px;
    min-height: auto;
    margin-top: 0;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-subtitle-ru {
    font-size: 1.05rem;
  }
  .section {
    padding: 80px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .stat-number {
    font-size: 2.4rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-item::after {
    display: none;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .hero-cta {
    padding: 14px 32px;
  }
  .exp-scroll-wrap {
    margin: 0 -24px;
    padding: 0 24px 20px;
  }
  .coop-item {
    gap: 20px;
  }
  .coop-num {
    font-size: 1.5rem;
    min-width: 40px;
  }
  .footer-links {
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  .whatsapp-fab{
    bottom: 15px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero-photo {
    max-width: 280px;
    height: 350px;
  }
  .service-card {
    padding: 32px 28px;
  }
  .stats-bar {
    padding: 40px 0;
  }
  .stat-number {
    font-size: 2rem;
  }
}