body.page-template-default {
  background-color: #000000;
  color: white;
}

body {
  background-color: #000000;
  color: white;
}

.about-hero {
  height: 60vh;
  min-height: 400px;
}

.who-we-are-section {
  padding: 6rem 0 4rem;
}

.who-content-block.text-center {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.who-content-block .section-heading-large {
  color: #fff;
}

.section-heading-large {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card.featured-mv {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mv-card.featured-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: left 0.5s ease;
  z-index: 1;
}

.mv-card.featured-mv:hover::before {
  left: 100%;
}

.mv-card.featured-mv:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-color: rgba(146, 71, 215, 0.4);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(146, 71, 215, 0.1);
}

.mv-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.mv-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.mv-desc {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.why-choose-us-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

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

.vp-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.vp-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.vp-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.vp-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.vp-desc {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

.leadership-section-minimal {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leadership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.founders-grid-minimal {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.founder-card-minimal {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.founder-card-minimal:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.founder-avatar-small {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
}

.founder-info-minimal {
  display: flex;
  flex-direction: column;
}

.founder-name-small {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.founder-role-small {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.impact-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}

.process-flow-section {
  padding: 6rem 0;
}

.who-card .who-card-desc {
  display: none;
}

.who-card {
  min-height: 160px;
}

.process-flow-section .who-cards-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  position: relative;
}

.who-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.who-card.is-expanded {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  margin: 0;
  background-color: rgba(20, 20, 20, 0.95);
  border-color: var(--primary-color);
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "number desc"
    "title desc";
  align-items: start;
  padding: 4rem;
  gap: 2rem;
}

.who-card.is-expanded .who-card-content {
  display: contents;
}

.who-card.is-expanded .who-card-number {
  grid-area: number;
  font-size: 8rem;
  font-weight: 900;
  opacity: 0.1;
  color: white;
  justify-self: start;
  border: none;
  background: none;
  padding: 0;
  line-height: 0.8;
  margin-bottom: 1rem;
  width: auto;
  height: auto;
}

.who-card.is-expanded .who-card-title {
  grid-area: title;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.1;
}

.who-card.is-expanded .who-card-desc {
  display: block;
  grid-area: desc;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e0e0e0;
  align-self: center;
  max-width: 600px;
  animation: fadeIn 0.5s ease 0.3s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.who-card-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 20;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.who-card-close-btn:hover {
  opacity: 1;
  color: var(--primary-color);
}

.about-cta-section {
  padding: 8rem 0 10rem;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(146, 71, 215, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  filter: blur(60px);
}

.cta-content-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #a0a0a0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-action {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(146, 71, 215, 0.3);
  border: 2px solid transparent;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(146, 71, 215, 0.5);
  background: #a855f7;
  color: white;
}

.cta-btn.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cta-btn.btn-outline:hover {
  background: white;
  color: black;
  border-color: white;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.who-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(146, 71, 215, 0.15),
    transparent 40%
  );
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.who-card:hover::before {
  opacity: 1;
}

.who-card-content,
.who-card-number {
  position: relative;
  z-index: 1;
}
