:root {
  --ap-purple: #8b5cf6;
  --ap-purple-dark: #7c3aed;
  --ap-purple-soft: #f5f3ff;
  --ap-teal: #14b8a6;
  --ap-dark: #0f172a;
  --ap-bg: #fcfcfd;
  --ap-grid: rgba(15, 23, 42, 0.04);
  --ap-border: #eef2f6;
  --ap-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.08);
  --ap-mid: #1e293b;
  --ap-muted: #000;
  --ap-card-radius: 22px;
  --orange: #f97316;
  --bg: #f0f0f7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {

  margin: 0;
  padding: 0;
  background: var(--bg);
}

/* ─── HERO SECTION ─── */
.ap_d_hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ap-dark);
}

.ap_d_hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.orangemantra.com/wp-content/uploads/mobile-app-development/banner-mobile-app-development.png') center top / cover no-repeat;
  opacity: 0.30;
  z-index: 0;
}

.ap_d_hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(105deg,
            rgba(15, 23, 42, 0.96) 0%,
            rgba(15, 23, 42, 0.75) 52%,
            rgba(15, 23, 42, 0.28) 100%); */
  z-index: 1;
}

.ap_d_hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ─── PILL TAG ─── */
.ap_d_hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(113 45 242 / 19%);
  border: 1px solid rgb(114 46 242);
  border-radius: 100px;
  padding: 5px 16px 5px 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ap_d_dot-pulse {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .35;
    transform: scale(1.6)
  }
}

/* ─── HEADLINE ─── */
.ap_d_hero-headline {

  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
}

.ap_d_hero-headline .ap_d_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ─── DESC ─── */
.ap_d_hero-desc {
  font-size: 14.5px;
  line-height: 1.78;
  color: #fff;
  /* max-width: 490px; */
  margin-bottom: 36px;
  text-align: justify;
  padding: 0 20px;
  position: relative;

}

.ap_d_hero-desc::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, var(--ap-purple), var(--ap-teal));
}

/* ─── FEATURE BADGES ─── */
.ap_d_feature-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 42px;
}

.ap_d_badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.ap_d_badge-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.ap_d_badge-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ap_d_badge-label {

  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

/* ─── TRUST LOGOS ─── */
.ap_d_logos-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;

}

.ap_d_logos-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ap_d_logo-item img {
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.ap_d_logo-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ─── FORM CARD ─── */
.ap_d_form-card {
  background: #fff;
  border-radius: var(--ap-card-radius);
  overflow: hidden;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.ap_d_form-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ap-purple), var(--ap-teal));
  border-radius: 22px 0 0 22px;
  z-index: 5;
}

/* card header */
.ap_d_form-card-header {
  position: relative;
  overflow: visible;
  background: var(--orange);
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 22px 22px 0 0;
}

.ap_d_form-card-header::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.ap_d_form-card-header::after {
  display: none;
}

.ap_d_header-bg-img {
  position: absolute;
  inset: 0;
  background: url('../../images/app-development/bg-from.png') center / cover no-repeat;
  opacity: 0.15;
  border-radius: 22px 22px 0 0;
}

.ap_d_form-girl {
  max-width: 350px;
  height: auto;
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
  width: 100%;
}

.ap_d_verified-badge {
  position: absolute;
  top: 60px;
  right: 20%;
  z-index: 10;
  background: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ap_d_verified-badge img {
  height: 18px;
  width: auto;
}





/* ─── FORM BODY ─── */
.ap_d_form-body {
  padding: 20px 22px 24px;
}

.ap_d_form-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ap-dark);
  text-align: center;
  margin-bottom: 3px;
}

.ap_d_form-sub {
  font-size: 12.5px;
  color: var(--ap-dark);
  text-align: center;
  margin-bottom: 16px;
}

/* inputs */
.ap_d_fc {
  width: 100%;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;

  color: var(--ap-dark);
  background: #fff;
  outline: none;
  transition: all 0.25s ease;
  display: block;
}

.ap_d_fc::placeholder {
  color: #000;
}

.ap_d_fc:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08);
}

.ap_d_row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

textarea.ap_d_fc {
  resize: none;
  height: 100px;
  margin-bottom: 20px;
}

/* submit */
.ap_d_btn-submit {
  width: 100%;
  background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 30px;
  background-size: 150% 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.ap_d_btn-submit:hover {
  background-position: 100% 0;
}

.ap_d_btn-submit:active {
  transform: translateY(0);
}

.ap_d_btn-submit .ap_d_arr {
  transition: transform .2s;
}

.ap_d_btn-submit:hover .ap_d_arr {
  transform: translate(3px, -3px);
}

/* scroll hint */
.ap_d_scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .38;
}

.ap_d_scroll-hint span {
  font-size: 10px;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ap_d_scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.ap_d_scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 4px;
  animation: scrollBall 1.5s ease-in-out infinite;
}

@keyframes scrollBall {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* ─── TRUSTED SECTION ─── */
.ap_ts_section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.ap_ts_title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-family: 'Ubuntu', sans-serif;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.ap_ts_marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.ap_ts_track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.ap_ts_item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(1) opacity(0.6);
}

.ap_ts_item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}

.ap_ts_item img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.ap_ts_marquee:hover .ap_ts_track {
  animation-play-state: paused;
}

/* ─── IMPACT SECTION ─── */
.ap_is_section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.ap_is_orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.15;
}

.ap_is_orb-1 {
  top: -100px;
  left: -100px;
  background: #8b5cf6;
}

.ap_is_orb-2 {
  bottom: -100px;
  right: -100px;
  background: #f97316;
}

.ap_is_header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ap_is_headline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.ap_is_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_is_divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  margin: 0 auto;
  border-radius: 2px;
}

.ap_is_card {
  height: 100%;
  padding: 2px;
  /* For gradient border effect if needed */
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ap_is_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.2);
}

.ap_is_card-inner {
  padding: 40px 20px;
  text-align: center;
}


.ap_is_number {
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.ap_is_label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  margin: 0;
}

/* ─── SOLUTIONS SECTION ─── */
.ap_s_section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.ap_s_header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.ap_s_headline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ap_s_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_s_divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.ap_s_subheader {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 0;
}

.ap_s_card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.ap_s_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.ap_s_card-inner {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ap_s_card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.ap_s_card-divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 20px;
}

.ap_s_card-desc {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
}

.ap_s_card-img-wrap {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}


/* responsive */
@media (max-width: 991.98px) {
  .ap_d_form-card {
    margin-top: 48px;
  }

  .ap_d_orb-1,
  .ap_d_orb-2 {
    display: none;
  }

  .ap_ts_section {
    padding: 40px 0;
  }

  .ap_is_section {
    padding: 60px 0;
  }

  .ap_is_headline {
    font-size: 24px;
  }

  .ap_s_section {
    padding: 60px 0;
  }

  .ap_s_headline {
    font-size: 28px;
  }

  .ap_s_card-inner {
    padding: 30px;
  }
}

@media (max-width: 575.98px) {
  .ap_d_feature-badges {
    grid-template-columns: 1fr;
  }

  .ap_d_row-2 {
    grid-template-columns: 1fr;
  }

  .ap_d_hero-headline {
    font-size: 1.75rem;
  }

  .ap_is_number {
    font-size: 32px;
  }

  .ap_is_label {
    font-size: 13px;
  }

  .ap_s_card-inner {
    padding: 20px;
  }

  .ap_s_card-title {
    font-size: 18px;
  }
}

/* ─── BENEFITS SECTION ─── */
.ap_b_section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.ap_b_video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.ap_b_overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  z-index: -1;
}

.ap_b_header {
  max-width: 900px;
  margin: 0 auto 60px;
}

.ap_b_headline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.ap_b_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_b_divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.ap_b_subheader {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.ap_b_card {
  /* background: rgba(255, 255, 255, 0.08); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
}

.ap_b_card_col {
  padding: 0px;
}

.ap_b_card:hover {
  /* transform: translateY(-10px); */
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.ap_b_icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.ap_b_card:hover .ap_b_icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.ap_b_icon-purple {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.ap_b_icon-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
}

.ap_b_icon-green {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.ap_b_icon-blue {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.ap_b_icon-yellow {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.ap_b_icon-pink {
  background: rgba(217, 70, 239, 0.2);
  color: #f472b6;
}

.ap_b_card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.ap_b_card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

@media (max-width: 991.98px) {
  .ap_b_section {
    padding: 60px 0;
  }

  .ap_b_headline {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .ap_b_card {
    padding: 30px 20px;
  }

  .ap_b_card-title {
    font-size: 18px;
  }
}

/* ─── AI CAPABILITIES SECTION ─── */
.ap_ai_section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.ap_ai_header {
  max-width: 900px;
  margin: 0 auto 70px;
}

.ap_ai_headline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.ap_ai_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_ai_divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  margin: 0 auto 30px;
  border-radius: 2px;
}

.ap_ai_subheader {
  font-family: 'Ubuntu', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
}

.ap_ai_row {
  position: relative;
  background: linear-gradient(266deg, #ff66335e -1.18%, #6d2cf985 96.14%);
}

.ap_ai_row::after {
  position: absolute;
  content: '';
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

.ap_ai_row::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
  left: 0;
  top: 50%;
}

.ap_ai_card {
  background: #fffffff2;
  padding: 50px 40px;
  /* border-radius: 24px; */
  /* border: 1px solid #f1f5f9; */
  transition: all 0.4s ease;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); */
}

.ap_ai_card_col {
  padding: 0px;
}

.ap_ai_card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: #ff6b1830;
}

.ap_ai_icon-wrap {
  width: 70px;
  height: 70px;
  background: #ff6b1815;
  color: #ff6b18;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.ap_ai_card-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.ap_ai_card-desc {
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin: 0;
}

/* responsive */
@media (max-width: 991.98px) {
  .ap_ai_section {
    padding: 80px 0;
  }

  .ap_ai_headline {
    font-size: 30px;
  }

  .ap_ai_card {
    padding: 40px 30px;
  }
}

@media (max-width: 767.98px) {
  .ap_ai_card {
    margin-bottom: 10px;
  }
}

@media (max-width: 575.98px) {
  .ap_ai_headline {
    font-size: 26px;
  }

  .ap_ai_card-title {
    font-size: 19px;
  }
}

/* ─── FUTURE AI SECTION ─── */
.ap_f_section {
  padding: 100px 0;
  background: #fffcf3;
  /* Match image light cream background */
  position: relative;
}

.ap_f_headline {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.ap_f_hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_f_divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  margin: 0 auto 60px;
  border-radius: 2px;
}

.ap_f_feature-grid {
  margin-bottom: 50px;
}

.ap_f_item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid transparent;
}

.ap_f_item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 107, 24, 0.2);
}

.ap_f_icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap_f_icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ap_f_title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  margin: 0;
}

.ap_f_window-chrome {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ap_f_chrome-dots {
  background: #f8fafc;
  padding: 12px 18px;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ap_f_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ap_f_dot-red {
  background: #ff5f56;
}

.ap_f_dot-yellow {
  background: #ffbd2e;
}

.ap_f_dot-green {
  background: #27c93f;
}

.ap_f_gif-container {
  padding: 10px;
}

.ap_f_gif {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.ap_f_stats {
  margin-top: 80px;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.ap_f_stat-num {
  display: block;
  font-family: 'Ubuntu', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1;
}

.ap_f_stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  margin: 0;
  text-transform: capitalize;
}

/* Color highlights for stats */
.ap_f_stat-item:hover .ap_f_stat-num {
  color: #ff6b18;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 991.98px) {
  .ap_f_section {
    padding: 80px 0;
  }

  .ap_f_headline {
    font-size: 28px;
  }

  .ap_f_gif-container {
    margin-top: 40px;
  }

  .ap_f_stat-num {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .ap_f_headline {
    font-size: 24px;
  }

  .ap_f_item {
    gap: 15px;
  }

  .ap_f_icon {
    width: 45px;
    height: 45px;
  }

  .ap_f_title {
    font-size: 14px;
  }
}


/* ─── SECTION WRAPPER ─── */
.ap_d-section {
  padding: 80px 0 100px;
  background: var(--ap-bg);
}

/* ─── TOP HEADING ─── */
.ap_d-heading-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.ap_d-section-label {
  font-family: 'Ubuntu', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ap-dark);
  margin-bottom: 20px;
}

.ap_d-hl {
  background: linear-gradient(135deg, #8b5cf6, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ap_d-underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  border-radius: 4px;
  margin: 0 auto 22px;
}

.ap_d-section-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ap-dark);
  max-width: 780px;
  margin: 0 auto;
}

/* ─── MAIN LAYOUT ─── */
.ap_d-layout {
  display: flex;
  border-radius: var(--ap-card-radius);
  overflow: hidden;
  box-shadow: var(--ap-shadow), 0 0 0 1px var(--ap-border);
  background: var(--ap-bg);
  min-height: 520px;
}

/* ─── LEFT SIDEBAR ─── */
.ap_d-sidebar {
  width: 300px;
  flex-shrink: 0;
  background: var(--ap-dark);
  display: flex;
  flex-direction: column;
}

.ap_d-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background .2s;
  text-decoration: none;
}

.ap_d-tab:last-child {
  border-bottom: none;
}

.ap_d-tab:hover {
  background: rgba(255, 255, 255, 0.05);
}

.ap_d-tab.ap_d-active {
  background: var(--ap-mid);
}

/* orange arrow indicator */
.ap_d-tab.ap_d-active::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 14px solid var(--ap-bg);
}

.ap_d-tab.ap_d-active::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(266deg, #f63 -1.18%, #6d2cf9 96.14%);
}

.ap_d-tab-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity .2s;
}

.ap_d-tab.ap_d-active .ap_d-tab-icon {
  opacity: 1;
  filter: brightness(0) invert(1);
}

.ap_d-tab-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: color .2s;
}

.ap_d-tab.ap_d-active .ap_d-tab-label,
.ap_d-tab:hover .ap_d-tab-label {
  color: #fff;
}

/* ─── RIGHT CONTENT PANEL ─── */
.ap_d-panel-wrap {
  flex: 1;
  background: var(--ap-bg);
  position: relative;
  overflow: hidden;
}

.ap_d-panel {
  display: none;
  padding: 48px 52px 48px 48px;
  height: 100%;
  animation: ap_d-fadeIn .3s ease;
}

.ap_d-panel.ap_d-active {
  display: block;
}

@keyframes ap_d-fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* panel heading */
.ap_d-panel-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ap-dark);
  text-align: center;
  margin-bottom: 8px;
}

.ap_d-panel-underline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #f97316);
  border-radius: 4px;
  margin: 0 auto 16px;
}

.ap_d-panel-desc {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ap-dark);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ─── TECH LOGO GRID ─── */
.ap_d-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--ap-border);
  border-radius: 14px;
  overflow: hidden;
}

.ap_d-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border-right: 1px solid var(--ap-border);
  border-bottom: 1px solid var(--ap-border);
  background: #fff;
  transition: background .2s, transform .18s;
  cursor: default;
}

.ap_d-logo-cell:hover {
  background: var(--ap-purple-soft);
  transform: scale(1.04);
  position: relative;
  z-index: 1;
}

/* remove right border on last in row */
.ap_d-logo-cell:nth-child(5n) {
  border-right: none;
}

.ap_d-logo-cell:nth-child(10n) {
  border-right: none;
}

/* remove bottom border on last row items — handled via JS class */
.ap_d-logo-cell.ap_d-last-row {
  border-bottom: none;
}

.ap_d-logo-img {
  max-width: 130px;
  max-height: 60px;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%);
      opacity: 0.72; */
  transition: filter .22s, opacity .22s;
}

.ap_d-logo-cell:hover .ap_d-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991.98px) {
  .ap_d-layout {
    flex-direction: column;
  }

  .ap_d-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ap_d-tab {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .ap_d-tab.ap_d-active::after {
    display: none;
  }

  .ap_d-tab.ap_d-active::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 3px;
  }

  .ap_d-panel {
    padding: 32px 24px;
  }

  .ap_d-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ap_d-logo-cell:nth-child(5n) {
    border-right: 1px solid var(--ap-border);
  }

  .ap_d-logo-cell:nth-child(3n) {
    border-right: none;
  }
}

@media (max-width: 575.98px) {
  .ap_d-sidebar {
    flex-direction: column;
  }

  .ap_d-tab {
    width: 100%;
  }

  .ap_d-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ap_d-logo-cell:nth-child(3n) {
    border-right: 1px solid var(--ap-border);
  }

  .ap_d-logo-cell:nth-child(2n) {
    border-right: none;
  }
}

/* ══════════════════════════════════
        TESTIMONIALS SECTION
  ══════════════════════════════════ */
.testi-section {
  padding: 100px 0px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}


.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--ap-purple), var(--orange));
  border-radius: 2px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--ap-purple), var(--orange));
  border-radius: 2px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ap-purple);
}

.eyebrow .dot2 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.eyebrow .dot3 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5e7eb;
}

.main-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 900;
  color: var(--ap-dark);
  letter-spacing: -2px;
  line-height: 1.08;
}

.main-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ap-purple), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lets-talk-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.arc-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -4px;
}

.arc-row svg {
  width: 68px;
  opacity: 0.4;
}

.lets-talk-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lets-talk-text {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  color: var(--ap-purple);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lets-talk-text .handshake {
  font-style: normal;
  font-size: 26px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--ap-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.contact-btn:hover {
  color: #fff;
  background: var(--ap-purple);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
  transform: translateY(-2px);
}

.lets-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ap-dark);
  max-width: 320px;
  text-align: right;
}

.testi-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.rating-card {
  background: linear-gradient(160deg, #f3f0ff 0%, #ede9fe 100%);
  border-radius: 24px;
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border: 1px solid rgba(139, 92, 246, 0.1);
}

.rating-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-20.png');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 180px;
  opacity: 0.2;
  pointer-events: none;
}

.big-rating {
  font-size: 96px;
  font-weight: 900;
  color: var(--ap-dark);
  letter-spacing: -6px;
  line-height: 1;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-right: -11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  z-index: 4;
}

.av2 {
  background: linear-gradient(135deg, #f97316, #fb923c);
  z-index: 3;
}

.av3 {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  z-index: 2;
}

.av4 {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  z-index: 1;
}

.client-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ap-dark);
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.client-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.rating-tagline {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ap-dark);
  line-height: 1.35;
  margin-bottom: 30px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  background: linear-gradient(135deg, var(--ap-purple), var(--ap-purple-dark));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.35s;
  box-shadow: 0 8px 12px rgba(139, 92, 246, 0.3);
  position: relative;
  z-index: 1;
}

.book-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.testi-right {
  background-image: url('https://expert-themes.com/html/ithub/ithub/assets/images/background/pattern-23.png');
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  border-radius: 24px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
}

.testi-swiper {
  overflow: visible !important;
  position: relative;
  z-index: 2;
}

.swiper-slide {
  height: auto;
}

.testi-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 26px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(139, 92, 246, 0.16);
}

.card-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ap-purple);
  margin-bottom: 16px;
  position: relative;
}

.card-indicator::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid rgba(139, 92, 246, 0.25);
}

.card-indicator.teal {
  background: var(--teal);
}

.card-indicator.teal::after {
  border-color: rgba(20, 184, 166, 0.25);
}

.card-indicator.orange {
  background: var(--orange);
}

.card-indicator.orange::after {
  border-color: rgba(249, 115, 22, 0.25);
}

.card-quote {
  font-size: 14px;
  line-height: 1.8;
  color: #374151;
  flex: 1;
  margin-bottom: 24px;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.c-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid rgba(139, 92, 246, 0.2);
}

.c-avatar-fb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.card-author.right-author {
  flex-direction: row-reverse;
  text-align: right;
}

.card-author.right-author .author-info {
  text-align: right;
}

.c-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ap-purple);
  letter-spacing: -0.3px;
  margin-bottom: 2px;
}

.c-role {
  font-size: 12px;
  color: var(--text-muted);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--ap-dark);
  letter-spacing: -0.5px;
}

.stars {
  display: flex;
  gap: 3px;
}

.st {
  width: 16px;
  height: 16px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.st.dim {
  background: rgba(249, 115, 22, 0.25);
}

.nav-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ap-dark);
  border: none;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.nav-btn:hover {
  background: var(--ap-purple);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  transform: scale(1.08);
}

@media (max-width:1100px) {
  .testi-grid {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width:900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .rating-card {
    min-height: auto;
  }

  .lets-talk-col {
    display: none;
  }
}

@media (max-width:576px) {
  .testi-section {
    padding: 70px 0 0;
  }

  .big-rating {
    font-size: 72px;
  }

  .main-title {
    letter-spacing: -1px;
  }
}

/* --------------------------------------
        SECTION: FAQ
      -------------------------------------- */
.faq-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.faq-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 92, 246, 0.05);
  top: -100px;
  left: -150px;
}

.faq-orb-2 {
  width: 450px;
  height: 450px;
  background: rgba(20, 184, 166, 0.04);
  bottom: -150px;
  right: -100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 70px;
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ap-purple);
  margin-bottom: 24px;
}

.faq-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--ap-purple);
  border-radius: 50%;
  position: relative;
}

.faq-dot-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--ap-purple);
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ap-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.faq-title-grad {
  background: linear-gradient(135deg, var(--ap-purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-title-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--ap-purple), var(--teal));
  border-radius: 2px;
  margin: auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #f0eeff;
  border-radius: 20px;
  padding: 6px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.03);
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
}

.faq-item.active {
  border-color: var(--ap-purple);
  background: linear-gradient(135deg, #ffffff, rgba(139, 92, 246, 0.02));
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-size: 18px;
  font-weight: 700;
  color: var(--ap-dark);
  transition: color 0.3s;
}

.faq-item.active .faq-question span {
  color: var(--ap-purple);
}

.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f0ff;
  color: var(--ap-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--ap-purple);
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 30px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.faq-footer-cta {
  margin-top: 50px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-footer-cta p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
}

.faq-cta-link {
  color: var(--ap-purple);
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.faq-cta-link:hover {
  gap: 12px;
  color: var(--ap-purple-dark);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}