@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.top-banner {
  background: linear-gradient(90deg, #a8d695 0%, #c5e99b 100%);
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  color: #2c5530;
}
.top-banner p {
  margin: 0;
  font-weight: 500;
}
.top-banner .banner-link {
  color: #2c5530;
  font-weight: 600;
  margin-left: 8px;
  text-decoration: underline;
}
.top-banner .banner-link:hover {
  text-decoration: none;
}

.header {
  background: #ffffff;
  padding: 16px 0;
  border-bottom: 1px solid #e9e9e9;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.header__logo .logo-icon {
  width: 40px;
  height: 40px;
}
.header__logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #222222;
  letter-spacing: -0.5px;
}
.header__nav {
  display: flex;
  gap: 32px;
  margin-left: 48px;
  flex: 1;
}
.header__link {
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease-in-out;
}
.header__link:hover {
  color: #0088cc;
}
.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #0088cc;
  color: #ffffff;
}
.btn-primary:hover {
  background: #006699;
  transform: translateY(-1px);
}
.btn-cta {
  background: #0088cc;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-cta:hover {
  background: #006699;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.btn-cta--large {
  padding: 16px 40px;
  font-size: 18px;
}
.btn-language {
  background: transparent;
  border: 1px solid #dddddd;
  color: #222222;
  padding: 8px 16px;
}
.btn-language:hover {
  background: #f8f9fa;
}
.btn-white {
  background: #ffffff;
  color: #0088cc;
}
.btn-white:hover {
  background: #f8f9fa;
}

.hero {
  padding: 80px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle--1 {
  width: 200px;
  height: 200px;
  background: #ff8c69;
  opacity: 0.3;
  top: -100px;
  left: -50px;
}
.hero-circle--2 {
  width: 150px;
  height: 150px;
  background: #ff6b9d;
  opacity: 0.2;
  bottom: -75px;
  right: 100px;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffd666' fill-opacity='0.2' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.5;
}
.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #222222;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}
.hero__title .highlight {
  position: relative;
}
.hero__title .highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: #ffd666;
  opacity: 0.4;
  z-index: -1;
}
.hero__subtitle {
  font-size: 20px;
  color: #666666;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  position: relative;
  z-index: 1;
}

.social-proof {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}
.social-proof-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
}
.shape--circle-orange {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ff8c69;
  opacity: 0.6;
  top: 50px;
  left: 100px;
}
.shape--circle-pink {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff6b9d;
  opacity: 0.5;
  top: 200px;
  left: 50px;
}
.shape--wave-yellow {
  width: 1400px;
  height: 500px;
  background: #ffd666;
  opacity: 0.1;
  border-radius: 50%;
  top: -200px;
  right: -700px;
}

.section__title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #222222;
  position: relative;
  z-index: 1;
}
.section__subtitle {
  font-size: 18px;
  text-align: center;
  color: #666666;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.partners-grid--second {
  margin-bottom: 0;
}

.partner-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.partner-card--dark {
  background: #2c3e50;
}
.partner-card--dark .partner-logo {
  background: #34495e;
  color: #ffffff;
}
.partner-card .partner-screenshot {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
.partner-card .partner-logo {
  padding: 12px 16px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.partner-card .partner-logo .partner-name {
  font-weight: 600;
  font-size: 14px;
  color: #222222;
}

.features {
  padding: 80px 0;
  background: #ffffff;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature {
  text-align: center;
}
.feature__icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.feature__title {
  font-size: 20px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 12px;
}
.feature__description {
  color: #666666;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
  text-align: center;
}
.cta-section .cta__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}
.cta-section .cta__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 48px 0 24px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand {
  flex: 1;
}
.footer__logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer__links {
  display: flex;
  gap: 80px;
}
.footer__column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}
.footer__column a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 4px 0;
  font-size: 14px;
  transition: color 0.2s ease-in-out;
}
.footer__column a:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer__legal a:hover {
  color: #ffffff;
}

.countries-section {
  padding: 96px 0;
  background: linear-gradient(135deg, rgba(255, 140, 105, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.countries-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.countries-grid--second {
  margin-top: 24px;
}

.country-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: #0088cc;
}
.country-card--featured {
  background: linear-gradient(135deg, #fff 0%, rgba(0, 136, 204, 0.05) 100%);
  border: 2px solid rgba(0, 136, 204, 0.2);
}

.country-flag {
  font-size: 48px;
  margin-bottom: 12px;
}

.country-name {
  font-size: 24px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
}

.country-info {
  font-size: 15px;
  color: #666666;
  margin-bottom: 16px;
}

.country-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dddddd;
}
.country-stats .stat {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

.country-specialties {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.country-specialties li {
  font-size: 15px;
  color: #222222;
  padding: 4px 0;
  position: relative;
  padding-left: 16px;
}
.country-specialties li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff8c69;
  font-weight: bold;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  color: #0088cc;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}
.btn-explore:hover {
  color: #006699;
  transform: translateX(4px);
}

.categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.category {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}
.category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.category:hover .category__icon {
  transform: scale(1.1);
}
.category:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c69 0%, #ff6b9d 100%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.category:hover:before {
  opacity: 1;
}

.category__icon {
  font-size: 48px;
  margin-bottom: 16px;
  transition: transform 0.2s ease-in-out;
}

.category__title {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 8px;
}

.category__description {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.category__count {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
}

.btn-secondary {
  background: transparent;
  color: #0088cc;
  border: 2px solid #0088cc;
}
.btn-secondary:hover {
  background: #0088cc;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .countries-grid,
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .hero__title {
    font-size: 36px;
  }
  .countries-grid,
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .footer__links {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .countries-grid,
  .categories__grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
