/* Independence Section — matches reference #independence */

.independenceSection {
  background: var(--off, #f0f4fb);
  padding: 6.25rem 0;
  color: #0b1a30;
}

.independenceSection__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.independenceSection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.independenceSection__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue2, #3b82f6);
  margin: 0 0 0.875rem;
}

.independenceSection__title {
  font-family: var(--fontHeading, "Playfair Display", Georgia, serif);
  font-size: clamp(1.625rem, 2.8vw, 2.625rem);
  font-weight: 400;
  line-height: 1.15;
  color: #0b1a30;
  margin: 0;
}

.independenceSection__body {
  font-size: 0.9375rem;
  color: #3d5a80;
  line-height: 1.78;
  margin: 1.125rem 0 1.625rem;
}

.independenceSection__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6875rem;
  margin: 0;
  padding: 0;
  width: fit-content;
}

.independenceSection__checklist li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-style: italic;
  color: #2d4a6b;
  font-weight: 500;
  text-align: left;
}

.independenceSection__checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-radius: 50%;
  background: var(--blue, #2563eb)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.independenceSection__img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(11, 26, 48, 0.12);
  display: block;
}

.independenceSection .reveal-left,
.independenceSection .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.independenceSection .reveal-left {
  transform: translateX(-32px);
}

.independenceSection .reveal-right {
  transform: translateX(32px);
}

.independenceSection .reveal-left.is-visible,
.independenceSection .reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .independenceSection .reveal-left,
  .independenceSection .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .independenceSection__wrap {
    padding: 0 2rem;
  }
}

@media (max-width: 900px) {
  .independenceSection {
    padding: 4.5rem 0;
  }

  .independenceSection__wrap {
    padding: 0 1.5rem;
  }

  .independenceSection__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .independenceSection__img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .independenceSection__wrap {
    padding: 0 1.25rem;
  }

  .independenceSection__img {
    height: 280px;
  }
}
