@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

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

:root {
  --primary: #0046d6;
  --primary-dark: #0035a6;
  --primary-light: #3b82f6;
  --bg-form-dark: #0a0d14;
  --accent: #60a5fa;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.9);
  --white-muted: rgba(255, 255, 255, 0.7);
}

body {
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  background-image: url("../assets/images/hero-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Hero Content */
.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-soft);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-title span {
  font-weight: 100;
  font-size: 56px;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-btn-primary svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

/* Hero Image */
.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(0, 53, 166, 0.4) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Floating Card */
.hero-floating-card {
  position: absolute;
  bottom: -30px;
  left: -40px;
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero-floating-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.hero-floating-card-text {
  color: var(--primary-dark);
}

.hero-floating-card-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero-floating-card-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Second Floating Card */
.hero-floating-card-2 {
  position: absolute;
  top: 20px;
  right: -30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-floating-avatars {
  display: flex;
}

.hero-floating-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  overflow: hidden;
}

.hero-floating-avatar:first-child {
  margin-left: 0;
}

.hero-floating-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card-2-text {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* Stats Bar */
.hero-stats {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 1;
}

.hero-stats-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 0.2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-stat-number {
    font-size: 1.3rem;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    padding-right: 0;
    order: 1;
  }

  .hero-visual {
    order: 0;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-title span {
    font-size: 42px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-floating-card {
    left: 20px;
    bottom: -20px;
  }

  .hero-floating-card-2 {
    right: 20px;
  }
}

@media (max-width: 1025px) and (min-width: 767px) {
  .hero-stats-container {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-title span {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .hero-main {
    padding: 7rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-title span {
    font-size: 35px;
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-floating-card,
  .hero-floating-card-2 {
    display: none;
  }

  .hero-stats-container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .hero-stat-item {
    flex: 0 0 auto;
    width: 165px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-title span {
    font-size: 28px;
  }
}

/* ------- VİDEO SECTİON ------ */
/* ============================================
           SECTION 1: VIDEO TESTIMONIALS
           ============================================ */
.video-testimonials {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  overflow: hidden;
  position: relative;
}

.video-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(10, 13, 20, 0.85);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

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

.video-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-title {
  font-size: 2.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Video Card - Compact */
.video-card {
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.video-card-media {
  position: relative;
  height: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.video-card-media img,
.video-card-media .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* 
.video-card:hover .video-card-media img,
.video-card:hover .video-card-media .video-thumbnail {
  transform: scale(1.05);
} */

.video-thumbnail {
  pointer-events: none;
}

.video-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  pointer-events: none;
}

/* Play Button */
.video-play-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
  transform: scale(1.1);
}

.video-play-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  margin-left: 2px;
}

/* Card Footer */
.video-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.85) 100%
  );
  border-radius: 0 0 20px 20px;
}

.video-author h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.video-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Stat Badge */
.video-stat {
  background: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-align: center;
  min-width: 65px;
}

.video-stat-number {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.video-stat-label {
  font-size: 0.55rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Navigation Dots */
.testimonials-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonials-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonials-slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--white);
}

/* --------- STAT SECTION -------- */
:root {
  --primary: #0046d6;
  --primary-light: #3b82f6;
  --primary-soft: #eef4ff;
  --primary-bg: #e8f0fe;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
}
.stats-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem;
  width: 100%;
  background: #f0f5ff;
  color: var(--black);
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

/* Left - Image Side */
.stats-image-side {
  position: relative;
  height: 100%;
  cursor: pointer;
}

.stats-image-wrapper {
  position: relative;
  background: var(--primary-bg);
  border-radius: 24px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.stats-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Decorative dots */
.stats-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stats-dot-1 {
  top: 15%;
  left: 10%;
}
.stats-dot-2 {
  top: 40%;
  right: 8%;
}
.stats-dot-3 {
  bottom: 20%;
  left: 5%;
}
.stats-dot-4 {
  bottom: 35%;
  right: 12%;
}

/* Play button */
.stats-play-btn {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.stats-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stats-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  margin-left: 3px;
}

/* Right - Content Card */
.stats-content-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.stats-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stats-card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.stats-card-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stats-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.stats-card-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.stats-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats-stat-icon {
  width: 36px;
  height: 36px;
  background: var(--primary-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.stats-stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
}

.stats-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats-stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* CTA */
.stats-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stats-cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stats-cta-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 70, 214, 0.25);
}

.stats-cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

.stats-cta-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 0px;
}

.gradient-text {
  background: linear-gradient(135deg, #0046d6 0%, #7fa3eb 45%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* .stats-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  } */

  .stats-card-header {
    flex-direction: column;
  }

  .stats-card-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 10rem 1rem;
  }

  .stats-content-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stats-stat-item {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }

  .stats-stat-icon {
    margin-bottom: 0;
  }

  .stats-stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .stats-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

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

/* ------ VALUES ------- */
.values-section {
  padding: 6rem 2rem;
  background: #f8f9fc;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-badge {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.values-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
}

.values-title span {
  color: var(--primary);
}

/* Main Layout */
.values-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Left - Tab List */
.values-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.value-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.value-tab:hover {
  background: var(--white);
  border-color: var(--gray-200);
}

.value-tab.active {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 70, 214, 0.1);
}

.value-tab.active::before {
  transform: scaleY(1);
}

.values-tab-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-tab.active .values-tab-number {
  background: var(--primary);
  color: var(--white);
}

.values-tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.3s ease;
  flex: 1;
}

.value-tab.active .values-tab-title {
  color: var(--black);
}

.values-tab-arrow {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.values-tab-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.value-tab.active .values-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Right - Content Panel */
.values-panel {
  position: relative;
  min-height: 400px;
}

.value-content {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.value-content.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.values-content-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 28px;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}

.values-content-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.values-content-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.values-content-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.values-content-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: -1rem;
  right: 0;
  line-height: 1;
}

.values-content-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.values-content-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.values-content-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.values-content-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 500px;
}

.values-content-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.values-content-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Stats floating card */
.values-content-stats {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.values-stats-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-stats-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.values-stats-text {
  color: var(--black);
}

.values-stats-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.values-stats-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* CTA Button */
.values-cta-wrapper {
  margin-top: auto;
  padding-top: 2rem;
}

.values-cta-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.values-cta-btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 70, 214, 0.25);
}

.values-cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
}

/* Responsive - Tablet */
@media (max-width: 1025px) and (min-width: 767px) {
  .hero-stats {
    padding: 1.5rem 1rem;
  }
  .hero-stat-item {
    gap: 0.5rem;
  }
  .values-content-tags {
    margin-top: inherit;
  }

  .values-layout {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }

  .values-tabs {
    gap: 0.4rem;
  }

  .value-tab {
    padding: 1rem 1.25rem;
  }

  .values-tab-title {
    font-size: 0.9rem;
  }

  .values-content-card {
    padding: 2.5rem 2.5rem 10rem;
  }

  .values-content-title {
    font-size: 1.6rem;
  }

  .values-content-desc {
    font-size: 1rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
  .hero-stats {
    padding: 1rem;
  }
  .values-content-tag {
    font-size: 12px;
  }
  .values-cta-btn {
    width: 100%;
  }
  .values-tab-title {
    white-space: nowrap;
  }
  .values-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .values-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    gap: 0.75rem;
  }

  .value-tab {
    min-width: fit-content;
    padding: 1rem 1.25rem;
  }

  .value-tab::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
  }

  .value-tab.active::before {
    transform: scaleX(1);
  }

  .values-tab-arrow {
    display: none;
  }

  .values-content-card {
    min-height: 350px;
    padding: 2rem;
  }

  .values-content-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .values-section {
    padding: 4rem 1rem;
  }

  .values-title {
    font-size: 2rem;
  }

  .values-content-title {
    font-size: 1.5rem;
  }

  .values-content-number {
    font-size: 4rem;
  }
}

/* --- EVENTS --- */
.events-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative elements */
.events-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  pointer-events: none;
}

.events-decor-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  opacity: 0.5;
}

.events-decor-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  opacity: 0.3;
}

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

/* Header */
.events-header {
  text-align: center;
  margin-bottom: 4rem;
}

.events-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-soft);
  border: 1px solid rgba(0, 70, 214, 0.1);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.events-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.events-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.events-title-span {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, #0046d6 0%, #7fa3eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  position: relative;
}

.event-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 70, 214, 0.12);
  transform: translateY(-8px);
}

/* Event Image */
.event-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.event-card:hover .event-image img {
  transform: scale(1.08);
}

.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Location Badge */
.event-location {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.event-location svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

/* Event Date */
.event-date {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 70, 214, 0.3);
}

.event-date-day {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-date-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Event Content */
.event-content {
  padding: 1.75rem;
}

.event-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Event Meta */
.event-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.event-meta-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-400);
}

/* Event CTA */
.event-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.event-cta:hover {
  gap: 0.75rem;
}

.event-cta svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

.event-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 768px) {
  .events-title-span {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 767px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .events-section {
    padding: 4rem 1rem;
  }

  .events-title {
    font-size: 1.875rem;
  }

  .events-title-span {
    font-size: 32px;
    line-height: 40px;
  }

  .event-image {
    height: 240px;
  }

  .event-content {
    padding: 1.25rem;
  }

  .event-name {
    font-size: 1.25rem;
  }

  .event-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .event-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
    background: var(--primary-soft);
    padding: 0.75rem;
    border-radius: 10px;
  }
}
@media (max-width: 1025px) and (min-width: 767px) {
  .events-grid {
    gap: 1rem;
  }
}

/* ============================================
           SECTION 2: WRITTEN TESTIMONIALS
           ============================================ */
.written-testimonials {
  padding: 6rem 0;
  background: var(--gray-50);
  overflow: hidden;
}

.written-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.written-badge {
  display: inline-block;
  background: var(--primary-soft);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.written-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.written-title-span {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, #0046d6 0%, #7fa3eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Written Cards Slider */
.written-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 0.5rem 0 2rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.written-slider::-webkit-scrollbar {
  display: none;
}

/* Written Card */
.written-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 240px;
  border: 1px solid var(--gray-200);
  transition: all 0.4s ease;
  width: 100%;
}

.written-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 70, 214, 0.1);
  transform: translateX(6px);
}

.written-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.written-company-logo {
  margin-bottom: 1.25rem;
}

.written-company-logo span {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.written-quote {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.written-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.written-author span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.written-card-image {
  position: relative;
  overflow: hidden;
}

.written-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.5s ease;
}

.written-card:hover .written-card-image img {
  transform: scale(1.05);
}

/* Written Slider Dots */
.testimonials-written-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.testimonials-written-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonials-written-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--primary);
}

/* ============================================
           RESPONSIVE
           ============================================ */
@media (max-width: 1025px) {
  .video-title,
  .written-title {
    font-size: 2.25rem;
  }

  .written-title-span {
    font-size: 42px;
    line-height: 52px;
  }

  .written-card {
    flex: 0 0 650px;
    grid-template-columns: 1fr 200px;
  }
}

@media (max-width: 1025px) and (min-width: 768px) {
  .owl-written-slider .written-card {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    grid-template-columns: 1fr 200px;
  }

  .written-card-content {
    padding: 2rem;
  }

  .written-quote {
    font-size: 0.95rem;
  }

  .written-company-logo span {
    font-size: 0.9rem;
  }

  .written-author h4 {
    font-size: 1.1rem;
  }

  .written-author span {
    font-size: 0.85rem;
  }
}

@media (max-width: 700px) {
  .video-testimonials,
  .written-testimonials {
    padding: 4rem 0;
  }

  .video-title,
  .written-title {
    font-size: 1.875rem;
  }

  .written-title-span {
    font-size: 32px;
    line-height: 40px;
  }

  /* .video-card-media {
    height: 300px;
  } */

  .written-card {
    flex: 0 0 320px;
    grid-template-columns: 1fr;
  }

  .written-card-image {
    order: -1;
    height: 180px;
  }

  .written-card-image img {
    min-height: 180px;
  }

  .written-card-content {
    padding: 1.5rem;
  }

  .written-quote {
    font-size: 1rem;
  }
}

/* FAQ--- */
.faq-section {
  padding: 6rem 2rem;
  background: #f0f5ff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.faq-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.faq-title-highlight {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, #0046d6 0%, #7fa3eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gray-300);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 70, 214, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
}

.faq-item.active .faq-question h3 {
  color: var(--black);
}

.faq-toggle {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
  background: var(--primary-soft);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--gray-600);
  transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle svg {
  stroke: var(--primary);
}

.faq-item.active .faq-toggle svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding: 0 2rem 2rem 2rem;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .faq-title-span {
    font-size: 42px;
    line-height: 52px;
  }

  .faq-title-highlight {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 1.25rem;
  }

  .faq-title {
    font-size: 2.25rem;
  }

  .faq-title-span {
    font-size: 36px;
    line-height: 44px;
  }

  .faq-title-highlight {
    font-size: 36px;
    line-height: 44px;
  }

  .faq-desc {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-toggle {
    width: 36px;
    height: 36px;
  }

  .faq-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.875rem;
  }

  .faq-title-span {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-title-highlight {
    font-size: 28px;
    line-height: 36px;
  }

  .faq-header {
    margin-bottom: 2.5rem;
  }
}

/* FORM  */
.form-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-form-dark);
  color: var(--white);
}

/* Background elements */
.form-bg-gradient {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 70, 214, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.form-bg-gradient-2 {
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.form-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Side - Content */
.form-content {
  padding-right: 2rem;
}

.form-content-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 70, 214, 0.2);
  border: 1px solid rgba(0, 70, 214, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.form-content-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-light);
}

.form-content-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.form-content-title span {
  background: linear-gradient(135deg, var(--primary-light), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

.form-content-desc {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Features List */
.form-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.form-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 70, 214, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-feature-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-light);
  stroke-width: 3;
}

.form-feature-text {
  font-size: 1rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Social Proof */
.form-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-avatars {
  display: flex;
}

.form-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg-dark);
  margin-left: -12px;
  overflow: hidden;
}

.form-avatar:first-child {
  margin-left: 0;
}

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

.form-social-text {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 0px;
}

.form-social-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Right Side - Form Card */
.form-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(0, 70, 214, 0.3),
    transparent,
    rgba(59, 130, 246, 0.2)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--black);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 70, 214, 0.1);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 3rem;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 1.125rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 70, 214, 0.3);
}

.form-submit svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: translateX(4px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 1.25rem;
}

.form-note svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-400);
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .form-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
  }

  .form-content {
    padding-right: 0;
    text-align: center;
  }

  .form-content-title {
    font-size: 2.5rem;
  }

  .form-content-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .form-features-list {
    align-items: center;
  }

  .form-social-proof {
    justify-content: center;
  }
}

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

  .form-content-title {
    font-size: 2rem;
  }

  .form-card {
    padding: 1.75rem;
  }

  .form-feature-item {
    justify-content: flex-start;
    text-align: left;
  }

  .form-features-list {
    align-items: flex-start;
  }

  .form-content {
    text-align: left;
  }

  .form-social-proof {
    justify-content: flex-start;
  }
}

/* ===== HOW IT WORKS – PAGE SCOPE ===== */

.howitworks * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.howitworks {
  width: 100%;
  height: 716px;
  background: #ffffff;
  position: relative;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.howitworks-container {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 96px;
  height: 437px;
  text-align: center;
}

.howitworks-eyebrow {
  font-size: 12.8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0046d6;
}

.howitworks-title {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 500;
  line-height: 58px;
  letter-spacing: -0.96px;
  background: linear-gradient(90deg, #0046d6 0%, #7fa3eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.howitworks-subtitle {
  margin-top: 12px;
  font-size: 17.6px;
  line-height: 28px;
  color: #525252;
}

.howitworks-steps {
  position: relative;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.howitworks-step {
  width: 33.333%;
  position: relative;
  text-align: center;
}

.howitworks-step-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(133.23deg, #3169db 11.68%, #8db2ff 87.53%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.howitworks-step-title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #171717;
}

.howitworks-step-desc {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 15.2px;
  line-height: 24px;
  color: #525252;
}

.howitworks-divider {
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: #e5e5e5;
}

.howitworks-step:last-child .howitworks-divider {
  display: none;
}

.howitworks-cta {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.howitworks-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 50px;
  background: #0046d6;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 15.2px;
  font-weight: 600;
  cursor: pointer;
}

.howitworks-button svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 901px) {
  .howitworks-title-span {
    font-size: 42px;
    line-height: 52px;
  }
}

@media (max-width: 900px) {
  .howitworks {
    height: auto;
    padding: 4rem 0;
  }

  .howitworks-container {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    height: auto;
    padding: 0 2rem;
  }

  .howitworks-title {
    font-size: 36px;
    line-height: 44px;
  }

  .howitworks-title-span {
    font-size: 36px;
    line-height: 44px;
  }

  .howitworks-steps {
    margin-top: 60px;
    gap: 2rem;
  }

  .howitworks-step-desc {
    padding: 0 10px;
    font-size: 14px;
  }

  .howitworks-divider {
    width: 24px;
    right: -12px;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .howitworks {
    padding: 3rem 0;
  }

  .howitworks-container {
    padding: 0 1.5rem;
  }

  .howitworks-eyebrow {
    font-size: 11px;
  }

  .howitworks-title {
    font-size: 28px;
    line-height: 36px;
    margin-top: 12px;
  }

  .howitworks-title-span {
    font-size: 28px;
    line-height: 36px;
  }

  .howitworks-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-top: 10px;
  }

  .howitworks-steps {
    flex-direction: column;
    margin-top: 40px;
    gap: 2.5rem;
    align-items: center;
  }

  .howitworks-step {
    width: 100%;
    max-width: 400px;
  }

  .howitworks-step-title {
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
  }

  .howitworks-step-desc {
    font-size: 14px;
    line-height: 22px;
    padding: 0;
  }

  .howitworks-divider {
    display: none;
  }

  .howitworks-cta {
    margin-top: 48px;
  }

  .howitworks-button {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 14px 40px;
    font-size: 14px;
  }
}
/* 
/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  justify-content: center;
}

/* Switch body */
.lang-switch {
  position: relative;
  width: 97px;
  height: 35px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: 60px;
  display: flex;
  overflow: hidden;
  font-family:
    "Plus Jakarta Sans",
    -apple-system,
    sans-serif;
  box-shadow: 0 2px 8px rgba(0, 70, 214, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switch:hover {
  box-shadow: 0 4px 16px rgba(0, 70, 214, 0.3);
  transform: translateY(-1px);
}

.lang-switch:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 70, 214, 0.2);
}

/* Options (TR / EN) */
.lang-switch__option {
  position: relative;
  z-index: 2;
  width: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.lang-switch__option:hover:not(.is-active) {
  color: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

.lang-switch__option--left {
  padding-left: 2px;
}

.lang-switch__option--right {
  padding-right: 4px;
}

/* Active text color */
.lang-switch__option.is-active {
  color: var(--primary);
  transform: scale(1.02);
}

/* Toggle thumb - başlangıç pozisyonu */
.lang-switch__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: calc(50% - 8px);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 52px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateX(0);
  will-change: transform;
}

/* TR aktif → thumb sol tarafta (varsayılan) */
.lang-switch__option--left.is-active ~ .lang-switch__thumb {
  transform: translateX(0);
}

/* EN aktif → thumb sağ tarafa kayar */
.lang-switch__option--right.is-active ~ .lang-switch__thumb {
  transform: translateX(44px);
}

/* Smooth hover effect on thumb */
.lang-switch:hover .lang-switch__thumb {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */

.footer {
  position: relative;
  width: 100%;
  height: 128px;
  background: #06080c;
}

.footer-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  width: 235px;
  height: 40px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-center {
  font-size: 14.4px;
  line-height: 23px;
  color: #a3a3a3;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14.4px;
  line-height: 23px;
  color: #a3a3a3;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    height: auto;
    padding: 2rem 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    gap: 1rem;
  }

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

  .footer-center {
    order: 2;
  }

  .footer-links {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

  .footer-logo {
    width: 150px;
  }

  .footer-center,
  .footer-links a {
    font-size: 13px;
  }

  .footer-links {
    gap: 1rem;
  }
}

/* Video Play Button */
.stats-play-btn {
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Hero Play Button */
.hero-play-btn {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

/* Video Modal */
#videoModal .modal-content {
  border-radius: 32px;
  overflow: hidden;
}

#videoModal .ratio {
  border-radius: 32px;
}

/* Testimonial Video Modal - Vertical (9x16) */
.testimonial-video-modal-dialog {
  max-width: 450px;
}

.testimonial-video-wrapper {
  aspect-ratio: 9 / 16;
  width: 100%;
  max-height: 85vh;
  background: #000;
  border-radius: 32px;
  overflow: hidden;
}

.testimonial-video-wrapper video {
  object-fit: contain;
  background: #000;
}

#testimonialVideoModal .modal-content {
  border-radius: 32px;
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .testimonial-video-modal-dialog {
    max-width: 100vw;
  }

  .testimonial-video-wrapper {
    max-height: 75vh;
  }
}

/* Written Testimonials Video Thumbnails */
.written-card-image .written-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.written-card:hover .written-card-image .written-video-thumbnail {
  transform: scale(1.05);
}

/* Mobile optimizations for written testimonials */
@media (max-width: 700px) {
  .written-card-image .written-video-thumbnail {
    min-height: 200px;
  }

  .written-card {
    flex: 0 0 340px;
    border-radius: 16px;
  }

  .written-card-image {
    height: 200px;
  }

  .written-card-content {
    padding: 1.25rem !important;
  }

  .written-quote {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
  }

  .written-company-logo {
    margin-bottom: 0.75rem !important;
  }

  .written-company-logo span {
    font-size: 1.1rem !important;
  }

  .written-author h4 {
    font-size: 0.875rem !important;
  }

  .written-author span {
    font-size: 0.75rem !important;
  }
}

/* ===== NAVBAR RESPONSIVE ===== */

/* Navbar Base Styles */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.navbar-brand img {
  height: 40px;
  transition: height 0.3s ease;
}

/* Tablet */
@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .navbar-brand img {
    height: 35px;
  }

  .lang-switch {
    width: 85px;
    height: 32px;
  }

  .lang-switch__option {
    line-height: 32px;
    font-size: 11px;
  }

  .lang-switch__option--right.is-active ~ .lang-switch__thumb {
    transform: translateX(38px);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Hide left spacer on mobile */
  .navbar .container-fluid > div:first-child {
    width: 0 !important;
    display: none;
  }

  .navbar-brand {
    margin-right: auto;
  }

  .navbar-brand img {
    height: 32px;
  }

  .lang-switch {
    width: 75px;
    height: 28px;
  }

  .lang-switch__option {
    line-height: 28px;
    font-size: 10px;
  }

  .lang-switch__thumb {
    width: calc(50% - 6px);
    top: 3px;
    left: 3px;
    bottom: 3px;
  }

  .lang-switch__option--right.is-active ~ .lang-switch__thumb {
    transform: translateX(34px);
  }
}

/* Extra small mobile */
@media (max-width: 360px) {
  .navbar-brand img {
    height: 28px;
  }

  .lang-switch {
    width: 70px;
    height: 26px;
  }

  .lang-switch__option {
    line-height: 26px;
    font-size: 9px;
  }

  .lang-switch__option--right.is-active ~ .lang-switch__thumb {
    transform: translateX(32px);
  }
}

.video-card {
  min-height: 460px;
}

.written-card {
  min-height: 320px;
}

@media (max-width: 768px) {
  .video-card {
    min-height: 400px;
  }

  .written-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .video-card {
    min-height: 380px;
  }

  .written-card {
    width: 100%;
    max-width: 340px;
  }
}

/* Video Lazy Loading Optimization */
.video-thumbnail,
.written-video-thumbnail {
  background: linear-gradient(
    135deg,
    rgba(0, 70, 214, 0.1) 0%,
    rgba(0, 35, 166, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: gradient-shimmer 3s ease infinite;
}

.video-thumbnail.loaded,
.written-video-thumbnail.loaded {
  animation: none;
  background: transparent;
}

@keyframes gradient-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .video-thumbnail,
  .written-video-thumbnail {
    animation: none;
  }
}

/* Written Card Mobile Optimization */
@media (max-width: 768px) {
  .written-card {
    height: 350px !important;
    max-height: 350px !important;
    min-height: 350px !important;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .written-card-image {
    display: none;
  }

  .written-card-content {
    padding: 1.5rem !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }

  .written-company-logo {
    margin-bottom: 0.75rem !important;
    flex-shrink: 0;
  }

  .written-company-logo span {
    font-size: 1rem !important;
  }

  .written-quote {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 1rem !important;
    padding-right: 0.5rem;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #3b82f614 transparent;
  }

  .written-quote::-webkit-scrollbar {
    width: 4px;
  }

  .written-quote::-webkit-scrollbar-track {
    background: transparent;
  }

  .written-quote::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
  }

  .written-quote::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }

  .written-author {
    flex-shrink: 0;
    margin-top: auto;
  }

  .written-author h4 {
    font-size: 0.85rem !important;
  }

  .written-author span {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .written-card {
    height: 350px !important;
  }

  .written-card-content {
    padding: 1.25rem !important;
  }

  .written-quote {
    font-size: 0.85rem !important;
  }
}

/* Written Card Desktop - Ensure proper layout */
@media (min-width: 769px) {
  .written-card {
    min-height: auto;
    height: auto;
  }

  .written-card-content {
    overflow: visible;
  }

  .written-quote {
    overflow: visible;
  }

  .written-card-image {
    display: block !important;
  }
}
