/* =============================================
   ABOUT (KURUMSAL) PAGE - Modern Design
   ============================================= */

:root {
  --about-primary: #325bee;
  --about-primary-dark: #2a4bd4;
  --about-secondary: #6366f1;
  --about-gradient: linear-gradient(135deg, #325bee, #6366f1);
  --about-gradient-light: linear-gradient(135deg, rgba(50, 91, 238, 0.06), rgba(99, 102, 241, 0.06));
  --about-success: #22c55e;
  --about-muted: #9ca3af;
  --about-text: #1e293b;
  --about-text-light: #64748b;
  --about-radius: 24px;
  --about-shadow: 0 4px 24px rgba(50, 91, 238, 0.08);
  --about-shadow-hover: 0 12px 40px rgba(50, 91, 238, 0.16);
}

/* ---- Hero Section ---- */
.our-about {
  padding-top: 40px;
}

.about-hero-left .main-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--about-text);
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-hero-img-wrap {
  max-width: 320px;
  margin-bottom: 20px;
}

.about-hero-right {
  padding-left: 20px;
}

.about-hero-right .text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--about-text-light);
}

.about-hero-right .list-style2 li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.about-hero-right .list-style2 li i {
  color: var(--about-primary);
  margin-right: 8px;
}

/* Organic image clip-path (preserved) */
.about-img-organic {
  clip-path: polygon(
    0% 15%, 5% 8%, 12% 3%, 20% 1%, 30% 0%, 40% 2%, 50% 5%, 60% 8%,
    70% 12%, 80% 15%, 88% 20%, 95% 25%, 98% 32%, 100% 40%, 100% 50%,
    98% 60%, 95% 68%, 90% 75%, 85% 82%, 78% 88%, 70% 93%, 60% 96%,
    50% 98%, 40% 99%, 30% 98%, 20% 96%, 12% 92%, 5% 87%, 2% 80%,
    0% 72%, 0% 60%, 0% 50%, 0% 40%, 0% 30%, 0% 20%
  );
  shape-outside: polygon(
    0% 15%, 5% 8%, 12% 3%, 20% 1%, 30% 0%, 40% 2%, 50% 5%, 60% 8%,
    70% 12%, 80% 15%, 88% 20%, 95% 25%, 98% 32%, 100% 40%, 100% 50%,
    98% 60%, 95% 68%, 90% 75%, 85% 82%, 78% 88%, 70% 93%, 60% 96%,
    50% 98%, 40% 99%, 30% 98%, 20% 96%, 12% 92%, 5% 87%, 2% 80%,
    0% 72%, 0% 60%, 0% 50%, 0% 40%, 0% 30%, 0% 20%
  );
  border-radius: 45% 55% 40% 60% / 50% 45% 55% 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.about-img-organic:hover {
  clip-path: polygon(
    2% 12%, 7% 5%, 15% 2%, 25% 0%, 35% 1%, 45% 3%, 55% 6%, 65% 10%,
    75% 14%, 85% 18%, 92% 23%, 97% 28%, 99% 35%, 100% 42%, 100% 52%,
    99% 62%, 96% 70%, 91% 77%, 86% 84%, 79% 90%, 71% 95%, 61% 98%,
    51% 99%, 41% 99%, 31% 97%, 22% 94%, 14% 89%, 7% 83%, 3% 76%,
    1% 68%, 0% 60%, 0% 50%, 0% 40%, 0% 30%, 1% 22%
  );
  transform: scale(1.02);
  filter: brightness(1.05);
}

/* ---- Stats Counter Section ---- */
.about-stats-section {
  padding: 60px 0;
  background: var(--about-gradient-light);
  position: relative;
}

.about-stats-row {
  display: flex;
  justify-content: center;
}

.about-stat-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--about-radius);
  background: #fff;
  box-shadow: var(--about-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.about-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow-hover);
}

.about-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--about-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-stat-icon i {
  font-size: 22px;
  color: #fff;
}

.about-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--about-text);
  line-height: 1.1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--about-text-light);
}

/* ---- Pricing Cards ---- */
.our-pricing {
  padding-top: 80px;
}

.pricing_packages {
  border-radius: var(--about-radius);
  background: #fff;
  box-shadow: var(--about-shadow);
  padding: 36px 24px 32px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing_packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
  border-radius: var(--about-radius) var(--about-radius) 0 0;
}

.pricing_packages:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow-hover);
}

/* Popular plan */
.pricing_packages.popular {
  border-color: var(--about-primary);
  box-shadow: 0 8px 32px rgba(50, 91, 238, 0.18);
}

.pricing_packages.popular::before {
  height: 5px;
  background: var(--about-gradient);
}

.pricing_packages.popular:hover {
  box-shadow: 0 16px 48px rgba(50, 91, 238, 0.24);
}

/* Popular ribbon */
.pricing-ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--about-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(50, 91, 238, 0.3);
}

/* Pricing heading */
.pricing_packages .heading h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--about-text);
}

.pricing_packages .heading h1 small {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--about-text-light);
}

.pricing_packages .package_title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--about-text);
}

.pricing_packages .details .text {
  color: var(--about-text-light);
  font-size: 0.95rem;
}

/* Feature list */
.pricing-list ul {
  text-align: left !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--about-text);
  border-bottom: 1px solid #f1f5f9;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li i.fa-check {
  color: var(--about-success);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.pricing-list li i.fa-xmark {
  color: #d1d5db;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.pricing-list li.disabled {
  opacity: 0.5;
  color: #9ca3af;
}

/* Pricing button */
.pricing_packages .ud-btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.pricing_packages.popular .ud-btn {
  background: var(--about-gradient);
  color: #fff;
  border-color: transparent;
}

.pricing_packages.popular .ud-btn:hover {
  box-shadow: 0 6px 24px rgba(50, 91, 238, 0.35);
  transform: translateY(-2px);
}

/* Pricing toggle */
.pricing_packages_top .toggle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing_save3 {
  background: var(--about-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ---- Bottom CTA ---- */
.our-cta .cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.our-cta .cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 991px) {
  .about-hero-left .main-title h2 {
    font-size: 1.75rem;
  }

  .about-hero-img-wrap {
    max-width: 260px;
  }

  .about-hero-right {
    padding-left: 0;
    margin-top: 20px;
  }

  .about-stat-value {
    font-size: 2rem;
  }

  .about-stat-card {
    padding: 24px 12px;
  }

  .pricing_packages {
    padding: 28px 20px 24px;
  }
}

/* Mobile landscape */
@media (max-width: 767px) {
  .about-hero-left .main-title h2 {
    font-size: 1.5rem;
  }

  .about-hero-img-wrap {
    max-width: 220px;
    margin: 0 auto 20px;
  }

  .about-stat-value {
    font-size: 1.65rem;
  }

  .about-stat-label {
    font-size: 0.75rem;
  }

  .about-stat-icon {
    width: 44px;
    height: 44px;
  }

  .about-stat-icon i {
    font-size: 18px;
  }

  .about-stats-section {
    padding: 40px 0;
  }

  .about-img-organic {
    clip-path: polygon(
      0% 10%, 8% 5%, 18% 2%, 28% 1%, 38% 2%, 48% 5%, 58% 8%, 68% 12%,
      78% 16%, 86% 22%, 93% 28%, 97% 35%, 100% 42%, 100% 58%, 97% 65%,
      92% 72%, 86% 78%, 78% 84%, 68% 89%, 58% 93%, 48% 96%, 38% 98%,
      28% 99%, 18% 98%, 10% 95%, 4% 90%, 1% 83%, 0% 75%, 0% 60%,
      0% 50%, 0% 40%, 0% 25%
    );
  }

  .pricing-ribbon {
    font-size: 0.65rem;
    padding: 3px 32px;
    top: 12px;
    right: -36px;
  }
}

/* Mobile portrait */
@media (max-width: 575px) {
  .about-stat-card {
    padding: 20px 8px;
    border-radius: 16px;
  }

  .about-stat-value {
    font-size: 1.4rem;
  }

  .about-stat-label {
    font-size: 0.7rem;
  }

  .about-stat-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .about-stat-icon i {
    font-size: 15px;
  }

  .pricing_packages {
    border-radius: 16px;
    padding: 24px 16px 20px;
  }

  .pricing_packages .heading h1 {
    font-size: 1.4rem;
  }

  .our-cta .cta-title {
    font-size: 1.35rem;
  }
}
