* {
  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%;
}

.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;
}

.hero {
  margin-top: 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1707903244219-8ed71537554d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1470");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu .a-cta-button:hover::after {
  width: 0 !important;
}

.a-cta-button {
  color: white !important;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 22, 122, 0.92) 0%,
    rgba(0, 22, 122, 0.85) 30%,
    rgba(0, 22, 122, 0.88) 70%,
    rgba(0, 22, 122, 0.85) 100%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(79, 211, 196, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(56, 182, 255, 0.15) 0%,
      transparent 50%
    );
  z-index: 2;
  animation: float 20s infinite ease-in-out;
}

@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);
  -webkit-backdrop-filter: blur(10px);
  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;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.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);
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.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);
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 0.8s both;
}

.cta-primary {
  background: #ffffff;
  color: #1800ad;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: none;
  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;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: #4fd3c4;
  color: #ffffff;
}

.cta-primary svg {
  width: 20px;
  height: 20px;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  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);
}

.cta-secondary svg {
  width: 20px;
  height: 20px;
}

.trust-indicators {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.8s ease-out 1s both;
}

.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);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInScale 0.6s ease-out both;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card:nth-child(1) {
  animation-delay: 1.2s;
}

.stat-card:nth-child(2) {
  animation-delay: 1.4s;
}

.stat-card:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.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 {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trusted-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.trusted-container {
  max-width: 1400px;
  margin: 0 auto;
}

.trusted-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trusted-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.trusted-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(24, 0, 173, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(24, 0, 173, 0.12);
}

.testimonial-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid #38b6ff;
  box-shadow: 0 5px 20px rgba(56, 182, 255, 0.3);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-content h3 {
  font-size: 1.3rem;
  color: #1800ad;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 1.5rem;
  color: #ffd700;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-clinic {
  display: inline-block;
  font-size: 0.9rem;
  color: #38b6ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-cases {
  padding: 6rem 2rem;
  background: #ffffff;
}

.cases-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cases-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: white;
  color: #1800ad;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.cases-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cases-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.case-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  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);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.case-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.1);
}

.case-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.case-category {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #1800ad;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-content {
  padding: 2.5rem;
}

.case-content h3 {
  font-size: 1.6rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.case-content > p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 2rem;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(24, 0, 173, 0.1);
  border-bottom: 1px solid rgba(24, 0, 173, 0.1);
  margin-bottom: 2rem;
}

.result-item {
  text-align: center;
}

.result-number {
  display: block;
  font-size: 1.8rem;
  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;
}

.result-label {
  display: block;
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1800ad;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-link:hover {
  gap: 12px;
  color: #38b6ff;
}

.case-link svg {
  transition: transform 0.3s ease;
}

.case-link:hover svg {
  transform: translateX(5px);
}

.slider-section {
  padding: 6rem 0;
  background: #1800ad;
  overflow: hidden;
  position: relative;
}

.slider-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1800ad;
}

.slider-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.slider-header h2 {
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.slider-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.slider-track {
  display: flex;
  gap: 2rem;
  animation: scroll 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.slider-item {
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.slider-item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.slider-item.bw img {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(24, 0, 173, 0.9), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.slider-item:hover .slider-overlay {
  transform: translateY(10px);
}

.slider-overlay-text {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .stats-cards {
    position: static;
    transform: none;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .trusted-header h2,
  .cases-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 800px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.1rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    font-size: 0.85rem;
  }

  .visual-container {
    border-radius: 20px;
  }

  .trusted-section,
  .success-cases {
    padding: 4rem 1.5rem;
  }

  .trusted-header h2,
  .cases-header h2 {
    font-size: 1.8rem;
  }

  .trusted-header p,
  .cases-header p {
    font-size: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-results {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .slider-header h2 {
    font-size: 1.8rem;
  }

  .slider-item {
    width: 300px;
    height: 225px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo img {
    height: 35px;
  }

  .hero-container {
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .mobile-sidebar {
    width: 85%;
  }
}

.differentiators-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.differentiators-container {
  max-width: 1400px;
  margin: 0 auto;
}

.differentiators-header {
  text-align: center;
  margin-bottom: 4rem;
}

.differentiators-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.differentiators-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.diff-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(24, 0, 173, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(24, 0, 173, 0.05);
}

.diff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(24, 0, 173, 0.15);
}

.diff-icon {
  width: 80px;
  height: 80px;
  background: rgba(137, 131, 180, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #1800ad;
}

.diff-card h3 {
  font-size: 1.5rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.diff-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
}

.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;
}

.footer {
  background: #0a0052;
  color: #ffffff;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
  width: 100%;
  max-width: 500px;
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-about p {
  font-size: 0.95rem;
  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);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #dadada28;
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #4fd3c4;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #ffffff;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffffff !important;
  transform: none !important;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.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;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }
}

@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 {
    grid-template-columns: repeat(2, 1fr);
    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 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@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;
  }
}

.about-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(56, 182, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text-content {
  padding-right: 2rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.08),
    rgba(56, 182, 255, 0.08)
  );
  color: #1800ad;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(24, 0, 173, 0.1);
}

.about-text-content h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-text-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #38b6ff;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(24, 0, 173, 0.08);
}

.about-feature-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.about-feature-text {
  flex: 1;
}

.about-feature-text strong {
  display: block;
  font-size: 1.05rem;
  color: #1800ad;
  margin-bottom: 0.3rem;
}

.about-feature-text span {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1800ad;
  color: #ffffff;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(24, 0, 173, 0.3);
  text-decoration: none;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 0, 173, 0.4);
  background: #0025cc;
}

.about-cta-btn svg {
  transition: transform 0.3s ease;
}

.about-cta-btn:hover svg {
  transform: translateX(5px);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.about-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

.faq-section {
  padding: 6rem 2rem;
  background: #ffffff;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(24, 0, 173, 0.03) 100%
  );
  z-index: 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    rgba(24, 0, 173, 0.1),
    rgba(56, 182, 255, 0.1)
  );
  color: #1800ad;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(24, 0, 173, 0.1);
}

.faq-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 20px;
  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: 1.8rem 2.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  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: 30px;
  height: 30px;
  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: 16px;
  height: 16px;
  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 1.8rem;
}

.faq-answer p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

@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;
  }
}

@media (max-width: 800px) {
  .about-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;
  }

  .service-card {
    padding: 2rem;
  }

  .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 {
    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;
  }
}

.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1800ad, #38b6ff);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.services-header h2 {
  font-size: 2.8rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  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;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-half {
  grid-column: span 1;
}

.service-card-full {
  grid-column: span 2;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(24, 0, 173, 0.15);
}

.service-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.service-card-full .service-image {
  height: 320px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(24, 0, 173, 0.1),
    rgba(24, 0, 173, 0.4)
  );
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.8;
}

.service-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.6rem;
  color: #1800ad;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  flex: 1;
}

.services-cta {
  text-align: center;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1800ad;
  color: #ffffff;
  padding: 1.3rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  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;
}

.services-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(24, 0, 173, 0.4);
  background: #0025cc;
}

.services-cta-btn svg {
  transition: transform 0.3s ease;
}

.services-cta-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 968px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-header p {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-half,
  .service-card-full {
    grid-column: span 1;
    padding: 0;
  }

  .service-content {
    padding: 2rem;
  }

  .service-content h3 {
    font-size: 1.4rem;
  }

  .services-cta-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 3rem 1rem;
  }

  .services-header {
    margin-bottom: 3rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .service-image,
  .service-card-full .service-image {
    height: 200px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-content p {
    font-size: 0.95rem;
  }

  .services-cta-btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }
}
