.payment-title {
  color: black;
  text-align: center;
  margin-top: 1rem;
}

.p-container {
  width: 100wh;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}
.p-container #paymentForm {
  max-width: 400px;
  margin: 2rem auto;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-flow: column nowrap;
}
.p-container #paymentForm label {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.p-container #paymentForm label input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 0.3rem;
  font-size: 1.1rem;
}
.p-container #paymentForm button {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.3rem;
  transition: background 0.2s ease-in-out;
}
.p-container #paymentForm button:hover {
  background: #0056b3;
}

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

body {
  font-family: "Manrope", "Segoe UI", "Helvetica Neue", sans-serif;
  background-color: #f8fafc;
  color: #1e40af;
  line-height: 1.6;
}

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

h1 {
  color: #ffffff;
  margin-bottom: 0.5em;
}

h2, h3 {
  color: #0f172a;
  margin-bottom: 0.5em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #1e40af;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background-color: rgb(24.7756097561, 52.8546341463, 144.5243902439);
  transform: translateY(-2px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary:focus {
  outline: 2px solid rgb(59.9390243902, 97.8365853659, 221.5609756098);
  outline-offset: 2px;
}

header.header {
  background-color: #0f172a;
  color: #ffffff;
  text-align: center;
}
header.header .top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0f172a;
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header .top-bar .logo {
  display: flex;
  align-items: center;
}
header.header .top-bar .logo img {
  height: 50px;
}
header.header .top-bar .logo a {
  position: absolute;
  z-index: 10;
  width: 5%;
  height: 100%;
}
header.header .top-bar .contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header.header .top-bar .contact-info .phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
header.header .top-bar .contact-info .social-icon {
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s;
}
header.header .top-bar .contact-info .social-icon:hover {
  color: white;
}
header.header .hero-content {
  padding-top: 80px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url("/images/hero-background_small.webp") center/cover no-repeat;
  color: white;
}
header.header .hero-content .hero-text {
  margin-bottom: 1.5rem;
}
header.header .hero-content .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  header.header .hero-content .hero-text h1 {
    line-height: 1.2;
  }
}
header.header .hero-content .hero-text p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 3rem 0;
}

.geography .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .geography .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.features {
  background-color: #ffffff;
  padding: 4rem 0;
}
.features h2 {
  text-align: center;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.features .grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features .feature {
  background-color: #f1f5f9;
  border: none;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.features .feature .feature-icon {
  font-size: 3rem;
  color: #1e40af;
  margin-bottom: 1rem;
  display: inline-block;
}
.features .feature h3 {
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.features .feature p {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
}
.features .feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.country img {
  width: 100%;
  border-radius: 12px;
}

footer.footer {
  background-color: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
}
footer.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  footer.footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
footer.footer .footer-content .logo {
  flex-shrink: 0;
}
footer.footer .footer-content .logo img {
  height: 50px;
}
@media (max-width: 768px) {
  footer.footer .footer-content .logo img {
    height: 40px;
  }
}
footer.footer .footer-content .contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer.footer .footer-content .contact-info .phone {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
footer.footer .footer-content .contact-info .social-icon {
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s;
}
footer.footer .footer-content .contact-info .social-icon:hover {
  color: white;
}

.cases {
  background-color: #fff;
  padding: 3rem 0;
}
.cases h2 {
  text-align: center;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  background: #0f172a;
  color: white;
}
@media (max-width: 768px) {
  .cases h2 {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: #0f172a;
    color: white;
    height: 40px;
    padding-top: 7px;
  }
}
.cases .case-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .cases .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cases .case-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cases .case-card {
  background-color: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.cases .case-card .case-swiper {
  width: 100%;
  aspect-ratio: 4/3;
}
.cases .case-card .case-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cases .case-card .case-info {
  padding: 1rem;
  text-align: center;
}
.cases .case-card .case-info h3 {
  margin: 0.5rem 0;
  color: #1e40af;
}
.cases .case-card .case-info p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.cases .case-card .case-info .btn-primary {
  padding: 0.6rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 30px;
  background-image: linear-gradient(to right, rgb(22.5365853659, 48.0780487805, 131.4634146341), #1e40af);
  color: #fff;
  border: none;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}
.cases .case-card .case-info .btn-primary:hover {
  background-image: linear-gradient(to right, #1e40af, rgb(38.1707317073, 80.2975609756, 217.8292682927));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.cases .case-card .case-info .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.cases .case-card .case-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin-top: 1rem;
}

.case-card .swiper {
  border-radius: 12px;
  overflow: hidden;
}
.case-card .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section {
  background-color: #f8fafc;
  padding: 3rem 0;
}
.form-section h2 {
  text-align: center;
  color: #0f172a;
  margin-bottom: 2rem;
}
.form-section form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.form-section form input,
.form-section form button {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.form-section form input {
  background-color: #fff;
}
.form-section form button {
  background-color: #1e40af;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.form-section form button:hover {
  background-color: rgb(22.5365853659, 48.0780487805, 131.4634146341);
}
.form-section .form-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.form-section .form-social-links a.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  background-color: #0f172a;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.form-section .form-social-links a.btn-secondary i {
  font-size: 1.25rem;
}
.form-section .form-social-links a.btn-secondary:hover {
  background-color: rgb(28.4210526316, 43.5789473684, 79.5789473684);
  transform: translateY(-2px);
}
.form-section .form-social-links a.btn-secondary:active {
  transform: translateY(0);
}
.form-section .form-social-links a.btn-secondary.whatsapp {
  background-image: linear-gradient(45deg, #25D366, #128C7E);
}
.form-section .form-social-links a.btn-secondary.telegram {
  background-image: linear-gradient(45deg, #1DA1F2, #0088cc);
}
.form-section .form-social-links a.btn-secondary.whatsapp:hover {
  background-image: linear-gradient(45deg, rgb(53.7842741935, 219.7157258065, 115.7701612903), rgb(20.9050632911, 162.5949367089, 146.335443038));
}
.form-section .form-social-links a.btn-secondary.telegram:hover {
  background-image: linear-gradient(45deg, rgb(53.1129707113, 171.0292887029, 243.3870292887), rgb(0, 153, 229.5));
}

.segments {
  background-color: #ffffff;
  padding: 4rem 0;
}
.segments h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 600;
}
.segments .grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .segments .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .segments .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.segments .segment-card {
  background-color: #f1f5f9;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.segments .segment-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.segments .segment-card h3 {
  color: #0f172a;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.segments .segment-card p {
  font-size: 0.95rem;
  color: #475569;
}
.segments .segment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.testimonials {
  background-color: #ffffff;
  padding: 4rem 0;
}
.testimonials h2 {
  text-align: center;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.testimonials .testimonial-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testimonials .testimonial-card {
  flex: 0 0 80%;
  max-width: 300px;
  background-color: #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  overflow: hidden;
}
.testimonials .testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .testimonials .testimonial-card {
    flex: 1 0 21%;
    max-width: none;
  }
}

section h2 {
  text-align: center;
  color: #0f172a;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  section h2 {
    text-align: center;
  }
}
.main-nav {
  display: flex;
  gap: 1.5rem;
}
.main-nav .nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav .nav-link:hover {
  color: white;
}
.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #ffffff;
  border-radius: 2px;
  display: block;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 2rem;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }
  .mobile-nav.open {
    transform: translateY(0);
  }
  .mobile-nav .nav-link {
    font-size: 1.5rem;
    color: #ffffff;
  }
  .mobile-nav .close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
  }
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-whatsapp i {
  font-size: 1.2em;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebe5d, #0c705e);
  box-shadow: 0 0 10px rgba(18, 140, 126, 0.4);
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0088cc, #1DA1F2);
  color: white;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-telegram i {
  font-size: 1.2em;
}
.btn-telegram:hover {
  background: linear-gradient(135deg, #007bb5, #1991db);
  box-shadow: 0 0 10px rgba(0, 136, 204, 0.4);
}

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