* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  color: #333;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(24, 0, 173, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1800ad;
  text-decoration: none;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1800ad;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1800ad 0%, #38b6ff 100%);
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-content {
  padding: 6rem 2rem 2rem;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1.2rem 0;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
}

.mobile-nav-menu a svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
  padding-left: 30px;
  color: #dfdfdf;
}

.mobile-nav-menu a:hover svg {
  opacity: 1;
}

.mobile-cta {
  margin-top: 2rem;
}

.mobile-cta button {
  width: 100%;
  background: #ffffff;
  color: #1800ad;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-cta button:hover {
  background: #1800ad;
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-social {
  margin-top: 1rem;
  padding-top: 2rem;
}

.mobile-social-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-social-links {
  display: flex;
  gap: 1rem;
}

.mobile-social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.mobile-social-links a:hover {
  background: #ffffff;
  color: #1800ad;
  transform: translateY(-3px);
}

.mobile-social-links svg {
  width: 20px;
  height: 20px;
}

.stat-label-hero {
  color: #0025cc;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.nav-menu a.active {
  color: #1800ad;
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 100%;
}

.a-cta-button:hover::after {
  width: 0 !important;
}

.a-cta-button {
  color: white !important;
}

.nav-menu .a-cta-button.active::after {
  width: 0 !important;
}

.mobile-nav-menu a.active {
  padding-left: 30px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #4fd3c4;
}

.mobile-nav-menu a.active svg {
  opacity: 1;
}

.cta-button {
  background-color: #0025cc;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(24, 0, 173, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #1800ad;
  border-radius: 3px;
}

.a-cta-button:hover {
  text-decoration: none !important;
}

@keyframes float {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: #ffd700;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #ffd700;
}

.trust-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cta-primary {
  background: #ffffff;
  color: #1800ad;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #4fd3c4;
  color: #ffffff;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.trust-indicators {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  color: #4fd3c4;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust-item-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.2);
}

.visual-container img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-cards {
  position: absolute;
  display: grid;
  gap: 1rem;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.stat-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
}

.stat-label-hero {
  font-size: 0.85rem;
  color: #0025cc;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(24, 0, 173, 0.2) 0%,
    transparent 70%
  );
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.2) 0%,
    transparent 70%
  );
  top: 30%;
  right: -15%;
  animation-delay: 7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(79, 211, 196, 0.2) 0%,
    transparent 70%
  );
  bottom: -10%;
  left: 40%;
  animation-delay: 14s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.05),
    rgba(56, 182, 255, 0.05)
  );
  border: 1px solid rgba(24, 0, 173, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1800ad;
  letter-spacing: 1px;
  position: relative;
  animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
  font-size: 1.2rem;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-services {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1800ad;
  font-weight: 900;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 50%, #4fd3c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-services {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 3rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-services {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary-new {
  position: relative;
  background: #1800ad;
  color: #ffffff;
  padding: 1.3rem 2.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(24, 0, 173, 0.3);
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(24, 0, 173, 0.4);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary-new:hover .btn-shine {
  left: 100%;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.btn-secondary-new {
  background: transparent;
  color: #1800ad;
  padding: 1.3rem 2.5rem;
  border-radius: 50px;
  border: 2px solid #1800ad;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary-new:hover {
  background: #1800ad;
  color: #ffffff;
  transform: translateY(-3px);
}

.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(24, 0, 173, 0.1);
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-inline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-inline-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1800ad;
  flex-shrink: 0;
}

.stat-inline-text strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1800ad;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-inline-text span {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

.stat-inline-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(24, 0, 173, 0.2),
    transparent
  );
}

.hero-services-visual {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-cards-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}

.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 15px 40px rgba(24, 0, 173, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.card-1 {
  top: 10%;
  left: -5%;
  animation: float-card 6s ease-in-out infinite;
}

.card-2 {
  top: 15%;
  right: -8%;
  animation: float-card 6s ease-in-out infinite 2s;
}

.card-3 {
  bottom: 10%;
  left: 5%;
  animation: float-card 6s ease-in-out infinite 4s;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.card-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.card-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #38b6ff, #4fd3c4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-card:hover .card-glow {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-services-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title-services {
    font-size: 3.5rem;
  }

  .floating-cards-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .hero-services {
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-title-services {
    font-size: 2.5rem;
  }

  .hero-subtitle-services {
    font-size: 1.1rem;
  }

  .hero-cta-services {
    flex-direction: column;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 2rem;
    text-align: center;
  }

  .hero-stats-inline {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-inline-divider {
    width: 100%;
    height: 1px;
  }

  .floating-card {
    padding: 1.2rem 1rem;
  }

  .card-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .hero-title-services {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .btn-primary-new {
    padding: 1.1rem 2rem;
    font-size: 1rem;
    justify-content: center;
    width: fit-content;
  }

  .btn-secondary-new {
    width: 100% !important;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    max-width: 215px !important;
  }
}

.packs-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.contact-form-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(79, 211, 196, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
}

.contact-form-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.form-left {
  color: #ffffff;
}

.form-left h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.form-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.benefit-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.benefit-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-stat {
  text-align: center;
}

.stat-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-right {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1800ad;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24, 0, 173, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1800ad;
}

.checkbox-label a {
  color: #1800ad;
  text-decoration: underline;
}

.form-submit-btn {
  background: #1800ad;
  color: #ffffff;
  padding: 1.2rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(24, 0, 173, 0.3);
  margin-top: 1rem;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 0, 173, 0.4);
}

.form-submit-btn:active {
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 0.5rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.2);
}

.section-header h2 {
  font-size: 3.2rem;
  color: #1800ad;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-badge-form {
  display: inline-block;
  background: #fff;
  color: #0025cc;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(24, 0, 173, 0.2);
}

.section-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pack-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  border: 2px solid rgba(24, 0, 173, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pack-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(24, 0, 173, 0.15);
  border-color: #38b6ff;
}

.pack-card.featured {
  border-color: #4fd3c4;
  box-shadow: 0 20px 60px rgba(79, 211, 196, 0.2);
  transform: scale(1.05);
}

.pack-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pack-badge {
  position: absolute;
  top: -18px;
  right: 30px;
  background: #4fd3c4;
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(79, 211, 196, 0.4);
}

.pack-name {
  font-size: 2rem;
  color: #1800ad;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.pack-price {
  font-size: 3.5rem;
  color: #1800ad;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pack-price span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #666;
}

.pack-description {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  min-height: 50px;
}

.pack-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pack-features li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.pack-features li svg {
  width: 22px;
  height: 22px;
  color: #4fd3c4;
  flex-shrink: 0;
  margin-top: 2px;
}

.pack-cta {
  width: 100%;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  color: #ffffff;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(24, 0, 173, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.pack-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 0, 173, 0.4);
}

.pack-card.featured .pack-cta {
  background: #4fd3c4;
  box-shadow: 0 8px 25px rgba(79, 211, 196, 0.4);
}

.services-section {
  padding: 7rem 2rem;
  background: #ffffff;
}

.services-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  flex: 1 1 auto;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  flex: 1 1 calc(33.333% - 2.5rem);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 30px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(24, 0, 173, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1800ad, #38b6ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.service-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1800ad;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  color: #ffffff;
  transform: scale(1.05) rotate(-5deg);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-size: 1.6rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

.results-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 100%);
  position: relative;
  overflow: hidden;
}

.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(79, 211, 196, 0.1) 0%,
    transparent 50%
  );
}

.results-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.results-section .section-header h2,
.results-section .section-header p {
  color: #ffffff;
}

.results-section .section-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.4);
}

.result-number {
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.result-label {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.result-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.process-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.process-step {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  border: 1px solid rgba(24, 0, 173, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.process-step::after {
  content: "→";
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #38b6ff;
  font-weight: 700;
}

.process-step:last-child::after {
  display: none;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(24, 0, 173, 0.15);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(24, 0, 173, 0.3);
}

.process-step h3 {
  font-size: 1.5rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.process-step p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
}

.faq-section {
  padding: 7rem 2rem;
  background: #ffffff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(24, 0, 173, 0.06);
  border: 1px solid rgba(24, 0, 173, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(24, 0, 173, 0.12);
}

.faq-question {
  width: 100%;
  padding: 2rem 2.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1800ad;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #0025cc;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  color: #1800ad;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #1800ad, #38b6ff);
}

.faq-item.active .faq-icon svg {
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2.5rem 2rem;
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.final-cta-section {
  padding: 7rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.final-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #1800ad 0%, #38b6ff 100%);
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.2);
}

.final-cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(79, 211, 196, 0.15) 0%,
    transparent 50%
  );
}

.final-cta-content {
  position: relative;
  z-index: 1;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.final-cta-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary-white {
  background: #ffffff;
  color: #1800ad;
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cta-primary-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: #4fd3c4;
  color: #ffffff;
}

.cta-secondary-white {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.cta-secondary-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  transform: translateY(-3px);
}

.footer {
  background: #0a0052;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #4fd3c4;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-contact li a:hover {
  color: #ffffff;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  flex: 1;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-content {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: 1px underline white;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .stats-cards {
    position: static;
    transform: none;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
  }

  .packs-grid {
    grid-template-columns: 1fr;
  }

  .pack-card.featured {
    transform: none;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .final-cta-content h2 {
    font-size: 2.2rem;
  }

  .final-cta-content p {
    font-size: 1.1rem;
  }

  .final-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .differentiators-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .form-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .trust-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    display: flex;
    flex-flow: column wrap;
    gap: 3rem;
  }
}

@media (max-width: 800px) {
  .differentiators-section {
    padding: 4rem 1.5rem;
  }

  .differentiators-header h2 {
    font-size: 2rem;
  }

  .differentiators-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .diff-card {
    padding: 2rem;
  }

  .contact-form-section {
    padding: 4rem 1.5rem;
  }

  .form-left h2 {
    font-size: 2rem;
  }

  .form-subtitle {
    font-size: 1rem;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-right {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: flex;
    flex-flow: column wrap;
    gap: 2.5rem;
  }

  .footer-links {
    gap: 1rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .differentiators-header h2,
  .form-left h2 {
    font-size: 1.8rem;
  }

  .diff-icon {
    width: 70px;
    height: 70px;
  }

  .diff-card h3 {
    font-size: 1.3rem;
  }

  .benefit-item {
    gap: 1rem;
  }

  .benefit-icon {
    width: 45px;
    height: 45px;
  }

  .form-right {
    padding: 1.5rem;
  }

  .form-submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .footer {
    padding: 3rem 1.5rem 1.5rem;
  }

  .footer-logo {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text-content {
    padding-right: 0;
  }

  .about-floating-card {
    position: static;
    margin-top: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 800px) {
  .about-section,
  .services-section,
  .faq-section {
    padding: 4rem 1.5rem;
  }

  .about-text-content h2,
  .services-header h2,
  .faq-header h2 {
    font-size: 2rem;
  }

  .about-text-content p,
  .services-header p,
  .faq-header p {
    font-size: 1rem;
  }

  .about-features {
    gap: 1rem;
  }

  .about-feature-item {
    padding: 1rem;
  }

  .faq-question {
    padding: 1.5rem 1.5rem;
    font-size: 1.05rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .about-badge,
  .services-badge,
  .faq-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1.2rem;
  }

  .about-text-content h2,
  .services-header h2,
  .faq-header h2 {
    font-size: 1.8rem;
  }

  .about-cta-btn,
  .services-cta-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .service-icon {
    width: 65px;
    height: 65px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .faq-question {
    font-size: 1rem;
    gap: 1rem;
  }
}

.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-popup.active {
  display: flex;
  opacity: 1;
}

.success-popup-content {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.success-popup.active .success-popup-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4fd3c4, #38b6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #ffffff;
}

.success-icon svg {
  width: 45px;
  height: 45px;
}

.success-popup-content h3 {
  font-size: 2rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.success-popup-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-close-btn {
  background: #1800ad;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: #0025cc;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .success-popup-content {
    padding: 2rem;
  }

  .success-popup-content h3 {
    font-size: 1.6rem;
  }
}

.hero-services {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://img.freepik.com/foto-gratis/computadora-portatil-graficos-financieros-pantalla-parada-mesa-oficina-inicio-companeros-trabajo-discutiendo-estrategia-empresa-segundo-plano-empleados-que-trabajan-tarde-noche-oficina-inicio_482257-63825.jpg?t=st=1764006799~exp=1764010399~hmac=f6bef67f3d694ecf44d0485be44b04983cb68e148fea2174f94f59e45cba3f08&w=1480");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

@media (max-width: 1024px) {
  .final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }

  .cta-primary-white {
    padding: 1rem 2rem;
    font-size: 1rem;
    gap: 12px;
    margin: 0 auto;
    text-decoration: none;
  }

  .cta-secondary-white {
    padding: 1rem 2rem;
    font-size: 1rem;
    gap: 12px;
    text-decoration: none;
    width: 100%;
    margin: 0 auto;
    max-width: 275px;
  }
}

@media (max-width: 1440px) {
  .services-grid {
    gap: 1.25rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 1024px) {
  .services-grid {
    gap: 1.15rem;
  }

  .service-card {
    flex: 1 1 auto;
    padding: 1.75rem 1.25rem;
    box-shadow: 0 7px 30px rgba(24, 0, 173, 0.08);
  }
}

@media (max-width: 768px) {
  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem 1rem;
    box-shadow: 0 5px 20px rgba(24, 0, 173, 0.08);
  }
}

@media (max-width: 390px) {
  .services-grid {
    gap: 0.75rem;
  }

  .service-card {
    padding: 1rem 0.75rem;
    box-shadow: 0 3px 10px rgba(24, 0, 173, 0.08);
  }
}
