/* ======================================================
   MISSION & VISION – PAGE STYLES
====================================================== */
.container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.mv-hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at top, var(--accent-soft), transparent 60%),
    var(--bg-dark);
}

.mv-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mv-hero-text h1 {
  font-size: 3rem;
  color: var(--text-strong);
}

.mv-hero-text p {
  max-width: 520px;
  color: var(--text-muted);
  margin-top: 20px;
}

.mv-hero-text span {
  color: var(--accent);
  
}

/* Circle visual */
.mv-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.mv-circle i {
  font-size: 2rem;
  color: var(--accent);
}

.mv-circle span {
  margin-top: 0.4rem;
  font-size: 0.9rem;
}

/* Split sections */
.mv-section {
  padding: 70px 0;
}

.mv-section.alt {
  background: var(--bg-light);
}

.mv-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.mv-split.reverse {
  grid-template-columns: 0.7fr 1.3fr;
}

.mv-text h2 {
  font-size: 2.1rem;
  color: var(--text-strong);
}

.mv-text p {
  color: var(--text-muted);
}

.mv-list {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.mv-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.mv-list i {
  color: var(--accent);
}

/* Icon block */
.mv-icon-block {
  font-size: 4rem;
  color: var(--accent);
  text-align: center;
}

/* Values */
.mv-values {
  padding: 80px 0;
}

.mv-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.value-item {
  padding: 1.4rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.value-item i {
  color: var(--accent);
  font-size: 1.4rem;
}

/* FAQ */
.mv-faq {
  padding: 80px 0;
  background: var(--bg-dark);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  background: var(--bg-surface);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  color: var(--text-strong);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 160px;
  padding: 0.8rem 1.2rem 1.2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .mv-hero-grid,
  .mv-split,
  .mv-split.reverse,
  .mv-values-grid {
    grid-template-columns: 1fr;
  }

  .mv-circle {
    margin-inline: auto;
  }
}


/* ======================================================
   MISSION & VISION – COMPACT CARDS (PRO UI)
====================================================== */

.mv-compact {
  padding: 30px 0;
}

/* Grid */
.mv-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Card */
.mv-card {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  transition: transform var(--transition-med);
}

/* Premium border */
.mv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--border-subtle);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

/* Hover */
.mv-card:hover {
  transform: translateY(-6px);
}

.mv-card:hover::before {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* Icon */
.mv-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

/* Headings */
.mv-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.4rem;
  color: var(--text-strong);
}

/* Text */
.mv-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Bullet points */
.mv-points {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.mv-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 1.09rem;
  color: var(--text-main);
}

.mv-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 768px) {
  .mv-compact-grid {
    grid-template-columns: 1fr;
  }
}




.uiux-faq{
  padding:50px 0;
  background:var(--bg-dark);
  
}

.uiux-faq-header{
  max-width:760px;
  margin-bottom:80px;
}

.uiux-faq-header h2{
  font-size:2.5rem;
  color:var(--text-strong);
  margin-bottom:12px;
}

.uiux-faq-header p{
  color:var(--text-muted);
  line-height:1.7;
}

/* FAQ LIST */
.uiux-faq-list{
  max-width:900px;
}

/* ITEM */
.faq-item{
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 30px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-strong);
  text-align:left;
  transition:var(--transition-med);
}

/* ICON */
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--accent);
  transition:var(--transition-med);
}
.faq-icon::before{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}
.faq-icon::after{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 30px;
  color:var(--text-muted);
  line-height:1.7;
  transition:max-height .5s ease, padding .4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 30px 24px;
}

.faq-item.active .faq-icon::before{
  transform:translateX(-50%) rotate(90deg);
  opacity:0;
}

.faq-item.active .faq-question{
  color:var(--primary);
}
