:root {
  --main-bg-color: #5a189a;
  --navbar-bg-color: #240046;
  --text-color: #ffffff;
  --accent-color: #ff9e00;
  --section-bg-color: #3c096c;
  --font-family: "Poppins", sans-serif;
}

/* Base Styles */
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  background-color: var(--main-bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
header {
  position: relative;
}

/* Navbar styling */
.navbar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

.navbar .container {
  padding-left: 30px;
  padding-right: 30px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent-color) !important;
  margin-left: 0;
  padding-left: 0;
}

/* Brand Logo Styles */
.brand-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar.scrolled .brand-logo {
  height: 35px;
}

@media (max-width: 768px) {
  .brand-logo {
    height: 35px;
  }
}

.navbar-dark .navbar-nav {
  margin-right: 0;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
  padding-right: 0;
}

.navbar-dark .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Hero section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Main Content Styles */
main {
  display: block;
  width: 100%;
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #5a189a, #7b2cbf);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(90, 24, 154, 0.2);
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #240046;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Button Styles */
.btn-custom {
  background-color: var(--accent-color);
  color: #240046;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-custom:hover {
  background-color: #e67e00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 158, 0, 0.3);
}

/* Card Styles */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-body {
  padding: 25px;
}

.card-title {
  color: var(--accent-color);
  font-weight: 600;
}

.card-text {
  color: rgba(255, 255, 255, 0.8);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* About Section */
#about h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #240046;
}

/* About Section Styles */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><defs><pattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'><circle cx='50' cy='50' r='1' fill='%23f0f0f0' opacity='0.3'/></pattern></defs><rect width='100' height='100' fill='url(%23grain)'/></svg>");
  opacity: 0.5;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #0f044b, #10054b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 25px;
  text-align: justify;
}

.about-achievements {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.achievement-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #7b61ff;
  line-height: 1;
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-image {
  position: relative;
  z-index: 2;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: translateY(-10px);
}

.about-shape-1,
.about-shape-2 {
  position: absolute;
  background: linear-gradient(45deg, #7b61ff, #9c88ff);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.about-shape-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.about-shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
}

/* Vision Mission Styles */
.vision-mission-wrapper {
  margin-top: 80px;
}

.vision-mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(123, 97, 255, 0.1);
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(123, 97, 255, 0.15);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #7b61ff, #9c88ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vm-icon i {
  font-size: 24px;
  color: white;
}

.vision-mission-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
}

.vision-mission-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 0;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6c7d;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.mission-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b61ff;
  font-weight: bold;
  font-size: 16px;
}

.mission-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .about-achievements {
    gap: 20px;
    margin-top: 30px;
  }

  .achievement-number {
    font-size: 2rem;
  }

  .vision-mission-wrapper {
    margin-top: 50px;
  }

  .vision-mission-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .about-shape-1,
  .about-shape-2 {
    display: none;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(123, 97, 255, 0.02) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 111, 97, 0.02) 100%
  );
  z-index: 1;
}

.pricing-section .container {
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(123, 97, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b61ff 0%, #ff6f61 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #7b61ff 0%, #6366f1 100%);
  color: white;
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured::before {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6f61;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7b61ff 0%, #ff6f61 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.3);
}

.pricing-card.featured .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
}

.pricing-card.featured .pricing-header h3 {
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: #7b61ff;
  margin-right: 5px;
}

.pricing-card.featured .pricing-price .currency {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price .amount {
  font-size: 36px;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
  color: white;
}

.pricing-price .starting-from {
  display: block;
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.pricing-card.featured .pricing-price .starting-from {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-duration {
  font-size: 14px;
  color: #718096;
  margin-bottom: 0;
  font-weight: 500;
}

.pricing-card.featured .pricing-duration {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #4a5568;
  font-weight: 500;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #7b61ff;
  margin-right: 12px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.pricing-card.featured .pricing-features li i {
  color: #4ade80;
}

.pricing-action {
  text-align: center;
}

.btn-pricing {
  background: linear-gradient(135deg, #7b61ff 0%, #ff6f61 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(123, 97, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-pricing:hover::before {
  left: 100%;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(123, 97, 255, 0.4);
  color: white;
}

.pricing-card.featured .btn-pricing {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.pricing-note {
  font-size: 16px;
  color: #718096;
  background: rgba(123, 97, 255, 0.05);
  padding: 20px 30px;
  border-radius: 15px;
  border-left: 4px solid #7b61ff;
  margin-top: 40px;
}

.pricing-note a {
  color: #7b61ff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-note a:hover {
  color: #ff6f61;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .client-slider-section {
    padding: 50px 0;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .client-logo {
    width: 180px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .footer-links a {
    margin: 0 10px;
    font-size: 1rem;
  }

  .client-slider-section {
    padding: 40px 0;
  }

  .client-logo {
    width: 160px;
    height: 80px;
  }

  .client-counter-section {
    padding: 30px 15px;
  }

  .client-counter {
    margin-bottom: 20px;
    padding: 15px 10px;
  }

  .counter-number {
    font-size: 1.8rem;
  }

  .counter-text {
    font-size: 0.9rem;
  }

  .client-counter-section .row {
    margin: 0 -10px;
  }

  .client-counter-section .col-4 {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .footer-links a {
    margin: 0 8px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 10px;
  }

  .client-slider-section {
    padding: 30px 0;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .client-logo {
    width: 140px;
    height: 70px;
  }

  .swiper-pagination {
    bottom: -5px !important;
  }

  .counter-number {
    font-size: 1.6rem;
  }

  .counter-text {
    font-size: 0.8rem;
  }

  .client-counter {
    padding: 12px 8px;
    border-radius: 8px;
  }
}

/* Perbaikan khusus untuk iPhone dan layar kecil lainnya */
@media (max-width: 375px) {
  .client-logo {
    width: 120px;
    height: 60px;
  }

  .counter-number {
    font-size: 1.4rem;
  }

  .counter-text {
    font-size: 0.75rem;
  }

  .client-counter-section .col-4 {
    padding: 0 5px;
  }

  .client-counter-section .row {
    margin: 0 -5px;
  }
}

/* Perbaikan untuk orientasi landscape pada mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .client-slider-section {
    padding: 20px 0;
  }

  .client-counter-section {
    padding: 15px;
  }

  .client-counter {
    padding: 10px;
  }

  .counter-number {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}

/* Problem Cards */
.problem-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.problem-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.problem-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--navbar-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.problem-card h3 {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.problem-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.problem-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
}

.solution-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent-color);
}

.lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Client Slider Section - Modern (Improved) */
.client-slider-section {
  padding: 100px 0 70px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.client-slider-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMCkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjM2MwOTZjIiBvcGFjaXR5PSIwLjA1Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+");
  opacity: 1;
  z-index: 0;
}

.client-trusted-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.client-trusted-intro h4 {
  font-size: 1.5rem;
  color: #240046;
  font-weight: 600;
  margin-bottom: 10px;
}

.client-trusted-intro p {
  color: #6c757d;
  font-size: 1.1rem;
}

.client-slider-container {
  position: relative;
  padding: 30px 0;
  z-index: 10;
}

.client-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  margin: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 180px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.client-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(94, 44, 165, 0.2);
}

.client-logo {
  height: 100px;
  width: 100%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  width: auto;
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.client-name {
  font-weight: 600;
  color: #240046;
  font-size: 0.9rem;
  margin-top: 10px;
  text-align: center;
}

.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}

.swiper-button-next.client-swiper-next,
.swiper-button-prev.client-swiper-prev {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 15px;
  background: #240046;
  color: white;
  border-radius: 50px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.swiper-button-next.client-swiper-next:hover,
.swiper-button-prev.client-swiper-prev:hover {
  background: #5e2ca5;
  transform: translateY(-3px);
}

.swiper-button-next.client-swiper-next:after,
.swiper-button-prev.client-swiper-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.nav-text {
  display: inline-block;
  margin: 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.client-swiper-pagination {
  position: relative;
  bottom: 0;
  width: auto;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #5e2ca5;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #5e2ca5;
  opacity: 1;
}

@media (max-width: 768px) {
  .client-card {
    height: 150px;
    padding: 20px 15px;
  }

  .client-logo {
    height: 80px;
    margin-bottom: 10px;
  }

  .client-logo img {
    max-height: 70px;
  }

  .nav-text {
    display: none;
  }
}

@media (max-width: 576px) {
  .client-slider-section {
    padding: 70px 0 50px;
  }

  .client-trusted-intro h4 {
    font-size: 1.3rem;
  }

  .client-trusted-intro p {
    font-size: 1rem;
  }

  .client-card {
    height: 130px;
    margin: 10px;
  }

  .client-logo {
    height: 70px;
  }

  .client-logo img {
    max-height: 60px;
  }
}

/* Stats Counter Modern */
.stats-counter-wrapper {
  margin-top: 80px;
  position: relative;
  z-index: 10;
}

.stats-counter-container {
  background: linear-gradient(135deg, #10002b, #240046, #3c096c);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.stats-counter-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMCkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjA1Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+");
  opacity: 1;
}

.stats-counter-item {
  display: flex;
  align-items: flex-start;
  color: white;
  position: relative;
  z-index: 2;
}

.stats-icon {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #c77dff, #e0aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 20px;
  margin-top: 5px;
}

.stats-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 5px 0;
  color: rgba(255, 255, 255, 0.9);
}

.stats-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.counter-value {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.counter-value span {
  font-size: 1.5rem;
  margin-left: 3px;
  color: #c77dff;
}

/* Problem Solution Modern */
.problem-solution-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.problem-solution-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.problem-solution-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #3c096c, #5a189a);
}

.problem-solution-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(45deg, #5a189a, #7b2cbf);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.problem-solution-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #240046;
  margin-bottom: 15px;
}

.problem-solution-card p {
  color: #666;
  margin-bottom: 25px;
}

.solution-tag {
  display: inline-block;
  background: #f5f0ff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #5a189a;
}

.solution-tag span {
  font-weight: 700;
  margin-right: 5px;
}

/* Services Section Modern */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #10002b, #240046, #3c096c);
  position: relative;
  color: white;
  overflow: hidden;
}

.services-section .section-title h2,
.services-section .section-subtitle {
  color: white;
}

.services-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    center/cover;
  opacity: 1;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #c77dff, #e0aaff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #240046;
  position: relative;
}

.service-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.service-features {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-features span {
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #c77dff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.service-link i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #e0aaff;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Modern Showcase Section */
.showcase-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.showcase-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
  transform: scale(1.1);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(60, 9, 108, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.btn-view {
  color: white;
  background: #240046;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-view:hover {
  background: white;
  color: #240046;
}

.showcase-content {
  padding: 25px;
}

.showcase-category {
  display: inline-block;
  padding: 5px 12px;
  background: #f0e6fa;
  color: #3c096c;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.showcase-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #240046;
}

.showcase-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.btn-outline-custom {
  border: 2px solid #3c096c;
  background: transparent;
  color: #3c096c;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #3c096c;
  color: white;
}

.btn-outline-custom.with-icon {
  display: inline-flex;
  align-items: center;
}

.btn-outline-custom.with-icon i {
  transition: transform 0.3s ease;
}

.btn-outline-custom.with-icon:hover i {
  transform: translateX(5px);
}

/* Modern Header Styles */
.modern-header {
  position: relative;
}

.navbar {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #240046 0%, #3c096c 100%);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.btn-contact {
  color: #fff;
  background: linear-gradient(45deg, #10002b, #3c096c);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.btn-contact:hover {
  background: #fff;
  color: #3c096c;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Hero Modern Section */
.hero-modern {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #10002b 0%, #240046 50%, #3c096c 100%);
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB4PSIwIiB5PSIwIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSgxMCkiPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSIjZmZmZmZmIiBvcGFjaXR5PSIwLjA0Ii8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+");
  opacity: 0.3;
}

.hero-text-column {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 540px;
}

.hero-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c77dff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.hero-title {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.gradient-text {
  background: linear-gradient(45deg, #c77dff, #e0aaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  margin-bottom: 40px;
}

.btn-primary-custom {
  background: linear-gradient(45deg, #5a189a, #7b2cbf);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(90, 24, 154, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(90, 24, 154, 0.4);
  background: linear-gradient(45deg, #7b2cbf, #9d4edd);
  color: white;
}

.hero-stats {
  display: flex;
  margin-top: 40px;
}

.hero-stat-item {
  margin-right: 40px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image-column {
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 5;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

.image-shape-1,
.image-shape-2 {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
}

.image-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    rgba(123, 44, 191, 0.5),
    rgba(157, 78, 221, 0.5)
  );
  top: -80px;
  right: -80px;
  animation: morphShape 10s ease-in-out infinite alternate;
}

.image-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    rgba(90, 24, 154, 0.5),
    rgba(123, 44, 191, 0.5)
  );
  bottom: -60px;
  left: -60px;
  animation: morphShape 15s ease-in-out infinite alternate;
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 10px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.floating-card.card-1 {
  bottom: 30px;
  right: -20px;
}

.floating-card.card-2 {
  top: 40px;
  left: -20px;
}

.icon-gradient {
  background: linear-gradient(45deg, #5a189a, #7b2cbf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  margin-right: 10px;
}

.floating-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(123, 97, 255, 0.02) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 111, 97, 0.02) 100%
  );
  z-index: 1;
}

.pricing-section .container {
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(123, 97, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7b61ff 0%, #ff6f61 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #7b61ff 0%, #6366f1 100%);
  color: white;
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured::before {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff6f61;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7b61ff 0%, #ff6f61 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(123, 97, 255, 0.3);
}

.pricing-card.featured .pricing-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2d3748;
}

.pricing-card.featured .pricing-header h3 {
  color: white;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: #7b61ff;
  margin-right: 5px;
}

.pricing-card.featured .pricing-price .currency {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-price .amount {
  font-size: 36px;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
  color: white;
}

.pricing-price .starting-from {
  display: block;
  font-size: 12px;
  color: #718096;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.pricing-card.featured .pricing-price .starting-from {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-duration {
  font-size: 14px;
  color: #718096;
  margin-bottom: 0;
  font-weight: 500;
}

.pricing-card.featured .pricing-duration {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  margin-bottom: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(123, 97, 255, 0.1);
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #4a5568;
  font-weight: 500;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #7b61ff;
  margin-right: 12px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.pricing-card.featured .pricing-features li i {
  color: #4ade80;
}

.pricing-action {
  text-align: center;
}

.btn-pricing {
  background: linear-gradient(135deg, #7b61ff 0%, #ff6f61 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(123, 97, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-pricing:hover::before {
  left: 100%;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(123, 97, 255, 0.4);
  color: white;
}

.pricing-card.featured .btn-pricing {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .btn-pricing:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.pricing-note {
  font-size: 16px;
  color: #718096;
  background: rgba(123, 97, 255, 0.05);
  padding: 20px 30px;
  border-radius: 15px;
  border-left: 4px solid #7b61ff;
  margin-top: 40px;
}

.pricing-note a {
  color: #7b61ff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.pricing-note a:hover {
  color: #ff6f61;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .pricing-card.featured {
    transform: none;
    margin-bottom: 30px;
  }

  .pricing-price .amount {
    font-size: 28px;
  }

  .pricing-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .pricing-note {
    padding: 15px 20px;
    font-size: 14px;
  }
}
