@charset "UTF-8";
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
.wpr-home-about {
  --bg: #F8FBFF;
  --primary: #2563EB;
  --accent: #60A5FA;
  --text: #0F172A;
  --secondary: #64748B;
  --card: rgba(255,255,255,.78);
  --glass-border: rgba(37,99,235,.15);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wpr-home-about, .wpr-home-about * {
  box-sizing: border-box;
}

.wpr-home-about h1, .wpr-home-about h2, .wpr-home-about h3 {
  font-family: "Manrope", "Inter", sans-serif;
}

.wpr-home-about img {
  max-width: 100%;
  display: block;
}

.wpr-home-about button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-about ul, .wpr-home-about ol {
  list-style: none;
}

/* ---------- decor ---------- */
.about__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.about__decor-blur {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  filter: blur(90px);
}

.about__decor-blur--c1 {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -180px;
}

.about__decor-blur--c2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -160px;
  background: var(--accent);
}

.about__decor-ring {
  position: absolute;
  top: 14%;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
}

.about__decor-grid {
  position: absolute;
  bottom: 8%;
  left: 4%;
  width: 180px;
  height: 130px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.1;
}

.about__decor-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.about__decor-particle--p1 {
  width: 6px;
  height: 6px;
  top: 22%;
  left: 12%;
}

.about__decor-particle--p2 {
  width: 5px;
  height: 5px;
  bottom: 20%;
  right: 18%;
}

.about__decor-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.about {
  position: relative;
  padding: 140px 0 160px;
  overflow: hidden;
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.about__top {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 120px;
}

.about__header {
  position: relative;
  z-index: 1;
  text-align: left;
  flex: 1 1 45%;
  max-width: 560px;
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.about__heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: var(--text);
}

.about__gradient {
  white-space: nowrap;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary);
}

.about__header .about__cta-button {
  margin-top: 32px;
}

/* Shared premium pill CTA button — reused across sections (about, why-choose, header...).
   Selector is deliberately over-specific (.about__cta-button repeated) so it always
   beats each section's own ".wpr-home-X button { background:none }" reset, regardless
   of which section's <style> block happens to be later in the document. Matches both
   <button> (JS-driven actions) and <a> (real navigational links, e.g. the header CTA)
   since both render identically. */
button.about__cta-button.about__cta-button,
a.about__cta-button.about__cta-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  padding: 0 34px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, #2563EB, #3B82F6);
  background-size: 160% 100%;
  background-position: 0% 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background-position 0.3s ease-out, filter 0.3s ease-out;
}

.about__cta-button-label {
  position: relative;
  z-index: 2;
}

.about__cta-button-arrow {
  position: relative;
  z-index: 2;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease-out;
}

.about__cta-button-shine {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: translateX(-160%);
  opacity: 0;
}

/* No-JS / reduced-motion fallback: plain CSS hover. GSAP takes over via .about__cta-button--js (see below), which disables this transition so the two systems never fight the same properties. */
.about__cta-button:hover,
.about__cta-button:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.3);
  background-position: 100% 50%;
  filter: brightness(1.08);
}

.about__cta-button:hover .about__cta-button-arrow,
.about__cta-button:focus-visible .about__cta-button-arrow {
  transform: translateX(8px);
}

.about__cta-button:active {
  transform: translateY(-3px) scale(0.97);
}

.about__cta-button--js {
  transition: none;
}

.about__cta-button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .about__cta-button {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .about__cta-button {
    height: 52px;
    padding: 0 28px;
    width: 100%;
  }
}
/* Compact size variant for tight contexts (footer columns, header bar). Specificity
   is boosted the same way as the base rule above, so it reliably wins regardless of
   which section's <style> block happens to render later in the document. */
button.about__cta-button.about__cta-button.about__cta-button--compact,
a.about__cta-button.about__cta-button.about__cta-button--compact {
  height: 52px;
  padding: 0 26px;
  font-size: 15px;
}

@media (max-width: 1023px) {
  .about__inner {
    padding: 0 32px;
  }
  .about__heading {
    font-size: 38px;
  }
  .about__top {
    flex-direction: column;
    gap: 48px;
  }
  .about__header {
    flex: none;
    max-width: 760px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 100px 0 0;
  }
  .about__inner {
    padding: 0 20px;
  }
  .about__heading {
    font-size: 30px;
  }
  .about__desc {
    font-size: 16px;
  }
  .about__top {
    gap: 32px;
    margin-bottom: 72px;
  }
}
@media (max-width: 389px) {
  .about__inner {
    padding: 0 16px;
  }
}
.about__hero {
  position: relative;
  z-index: 1;
  flex: 1 1 55%;
  width: auto;
  max-width: 640px;
  margin: 0;
  aspect-ratio: 1435/1096;
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(160deg, #EFF6FF, #F8FBFF 65%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 40px 90px rgba(37, 99, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: scale(1.05);
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

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

@media (max-width: 1023px) {
  .about__hero {
    flex: none;
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about__hero {
    width: 100%;
    border-radius: 28px;
  }
}
.about__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 auto 24px;
  max-width: 1200px;
}

.about__stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, opacity;
}

.about__stat-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.18);
}

.about__stat-value {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__stat-label {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: var(--secondary);
  font-weight: 500;
}

.about__stats-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 140px;
}

.about__stats-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.about__stats-dot.is-active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (min-width: 640px) {
  .about__stats {
    margin-bottom: 140px;
  }
}
@media (max-width: 1023px) {
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .about__stats {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 24px 8px;
    margin: 0 0 16px;
    max-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .about__stats::-webkit-scrollbar {
    display: none;
  }
  .about__stat-card {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
  .about__stats-dots {
    display: flex;
    margin: 0 0 120px;
  }
}
.about__timeline {
  position: relative;
  z-index: 1;
  margin: 0 auto 140px;
  max-width: 1200px;
}

.about__timeline-stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__timeline-list {
  position: relative;
  padding-left: 40px;
}

.about__timeline-track {
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #E2E8F0;
}

.about__timeline-fill {
  position: absolute;
  left: 5px;
  top: 6px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}

.about__timeline-item {
  position: relative;
  padding-bottom: 52px;
  opacity: 0;
  transform: translateY(24px);
}

.about__timeline-item:last-child {
  padding-bottom: 0;
}

.about__timeline-dot {
  position: absolute;
  left: -40px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
}

.about__timeline-content {
  display: block;
}

.about__timeline-year {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.about__timeline-label {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--secondary);
}

.about__timeline-visual {
  position: sticky;
  top: 120px;
  height: 320px;
  border-radius: 32px;
  background: linear-gradient(160deg, #EFF6FF, #F8FBFF 65%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.about__timeline-visual-year {
  font-family: "Manrope", sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about__timeline-visual-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #EFF6FF;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.about__timeline-visual-icon svg {
  width: 32px;
  height: 32px;
}

.about__timeline-visual-icon.is-active {
  display: flex;
}

@media (max-width: 1023px) {
  .about__timeline-stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__timeline-visual {
    position: relative;
    top: auto;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .about__timeline-visual {
    display: none;
  }
  .about__timeline-year {
    font-size: 22px;
  }
}
.about__values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 0 auto 140px;
  max-width: 1280px;
}

.about__value-card {
  border-radius: 28px;
  overflow: hidden;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, opacity;
}

.about__value-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.18);
}

.about__value-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.about__value-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.15), rgba(15, 23, 42, 0.55));
}

.about__value-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.95);
  transition: transform 0.5s ease;
}

.about__value-card:hover .about__value-media img {
  transform: scale(1.06);
}

.about__value-body {
  position: relative;
  padding: 28px 24px 26px;
}

.about__value-icon {
  position: absolute;
  top: -24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  border: 1px solid var(--glass-border);
}

.about__value-icon svg {
  width: 22px;
  height: 22px;
}

.about__value-toggle {
  display: none;
}

.about__value-num {
  display: block;
  margin-top: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

.about__value-title {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.about__value-desc-wrap {
  display: grid;
  grid-template-rows: 1fr;
}

.about__value-desc {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--secondary);
  overflow: hidden;
}

@media (max-width: 1023px) {
  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .about__values {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 120px;
  }
  .about__value-media {
    display: none;
  }
  .about__value-card {
    display: block;
  }
  .about__value-body {
    padding: 22px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }
  /* Row order: icon, title, toggle — swapped from DOM order (icon, toggle, title)
     via flex `order` so title/toggle don't need to move in markup. */
  .about__value-icon {
    position: static;
    flex-shrink: 0;
    box-shadow: none;
    order: 1;
  }
  .about__value-num {
    display: none;
  }
  .about__value-title {
    margin-top: 0;
    margin-bottom: 0;
    flex: 1;
    font-size: 17px;
    order: 2;
  }
  .about__value-toggle {
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #EFF6FF;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 3;
    transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease;
  }
  .about__value-desc-wrap {
    order: 4;
  }
  .about__value-card.is-open .about__value-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
  }
  .about__value-desc-wrap {
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    width: 100%;
  }
  .about__value-card.is-open .about__value-desc-wrap {
    grid-template-rows: 1fr;
  }
}
/* ---------- transition cta (bridge into Services) ---------- */
.about__transition {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 120px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  border-radius: 48px;
  background: #fff;
}

.about__transition-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__transition-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.6) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.05;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%);
}

.about__transition-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
}

.about__transition-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.35;
}

.about__transition-dot--1 {
  width: 8px;
  height: 8px;
  top: 18%;
  left: 12%;
}

.about__transition-dot--2 {
  width: 6px;
  height: 6px;
  bottom: 24%;
  right: 15%;
  background: var(--accent);
}

.about__transition-dot--3 {
  width: 5px;
  height: 5px;
  top: 68%;
  left: 20%;
  background: var(--accent);
}

.about__transition-noise {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about__transition-card {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 80px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  will-change: transform, opacity;
}

.about__transition-heading {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: var(--text);
}

.about__transition-card button.about__cta-button {
  width: 300px;
  height: 64px;
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .about__transition {
    padding: 56px 24px;
  }
  .about__transition-card {
    padding: 56px 32px;
  }
  .about__transition-heading {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .about__transition {
    min-height: auto;
    border-radius: 32px;
    margin-top: 0;
  }
  .about__transition-card {
    width: 100%;
    padding: 40px 24px;
    border-radius: 28px;
  }
  .about__transition-heading {
    font-size: 20px;
  }
  .about__transition-card button.about__cta-button {
    width: 100%;
    height: 52px;
    margin-top: 0;
  }
}
/* ---------- Laptop (1024–1279px) ----------
   Narrower than the ≥1280 desktop canvas these numbers were tuned for, so the
   Hero heading/gap and the 4-column grids get dedicated breathing room here
   instead of inheriting the squeezed desktop values or jumping straight to the
   tablet stacked layout. Desktop (≥1280) and Tablet/Mobile (≤1023) rules above
   are untouched. */
@media (min-width: 1024px) and (max-width: 1279px) {
  .about__inner {
    padding: 0 32px;
  }
  .about__top {
    gap: 40px;
  }
  .about__heading {
    font-size: clamp(34px, 3.4vw, 44px);
  }
  .about__header {
    max-width: 480px;
  }
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__timeline-stage {
    gap: 40px;
  }
}
.wpr-home-services {
  --blue: #2563EB;
  --blue-light: #60A5FA;
  --blue-bg: #EFF6FF;
  --dark: #0F172A;
  --gray: #64748B;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}

.wpr-home-services, .wpr-home-services * {
  box-sizing: border-box;
}

.wpr-home-services img {
  max-width: 100%;
  display: block;
}

.wpr-home-services button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-services ul {
  list-style: none;
}

.services {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, #F7FBFF);
}

.decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decor .blur-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.08;
  filter: blur(60px);
}

.decor .blur-circle.c1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -100px;
}

.decor .blur-circle.c2 {
  width: 240px;
  height: 240px;
  top: 40px;
  left: 280px;
  background: var(--blue-light);
}

.decor .dot-grid {
  position: absolute;
  top: 120px;
  left: 80px;
  width: 120px;
  height: 80px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
}

.decor .dot-grid.right {
  left: auto;
  right: 80px;
  top: 160px;
}

.decor .small-circle {
  position: absolute;
  border-radius: 50%;
}

.decor .small-circle.blue {
  width: 12px;
  height: 12px;
  background: #3B82F6;
  top: 170px;
  left: 250px;
  opacity: 0.7;
}

.decor .small-circle.green {
  width: 16px;
  height: 16px;
  background: #84CC16;
  top: 150px;
  right: 120px;
  opacity: 0.7;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.services-header h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--dark);
}

.services-header h2 .gradient {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-header p {
  max-width: 620px;
  margin: 24px auto 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--gray);
}

.content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.left-panel {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-panel-wrap {
  width: 70%;
}

.card-wrap {
  display: flex;
  flex-direction: column;
}

.service-card {
  width: 100%;
  min-height: 132px;
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  border: 1px solid transparent;
  border-left: 6px solid transparent;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card.active {
  border-color: #3B82F6;
  border-left-color: var(--blue);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.card-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card.active .card-icon {
  color: #fff;
  background: var(--blue);
}

.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.card-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.4;
}

.card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s, border-color 0.35s;
}

.card-arrow svg {
  width: 18px;
  height: 18px;
}

.service-card:hover .card-arrow,
.service-card.active .card-arrow {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateX(4px);
}

.right-panel {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  opacity: 1;
  transition: opacity 0.125s ease;
}

.panel-left {
  width: 40%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.panel-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 18px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
}

.panel-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.panel-underline {
  width: 70px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin: 16px 0 20px;
}

.panel-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 24px;
}

.panel-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.panel-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.panel-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s;
}

.panel-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.panel-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

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

.right-panel-wrap {
  position: relative;
}

.panel-right {
  width: 60%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background-color 0.3s, color 0.3s;
}

.nav-arrow:hover {
  background: var(--blue);
  color: #fff;
}

.nav-arrow.prev {
  left: -8px;
}

.nav-arrow.next {
  right: -8px;
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
}

.panel-dots {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  transition: transform 0.3s, background-color 0.3s;
}

.dot.active {
  background: var(--blue);
  transform: scale(1.4);
}

.panel-image {
  width: 100%;
  border-radius: 16px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 30px rgba(15, 23, 42, 0.15));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.cta-bar {
  max-width: 900px;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s;
}

.cta-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 22px;
  height: 22px;
}

.cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-text strong {
  font-size: 17px;
  color: var(--dark);
}

.cta-text span {
  font-size: 14px;
  color: var(--gray);
}

.cta-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.3s, border-color 0.3s;
}

.cta-bar:hover .cta-arrow {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateX(4px);
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .services {
    padding: 100px 32px;
  }
  .content {
    gap: 24px;
  }
  .panel-title {
    font-size: 22px;
  }
  /* Service cards: icon was cramped alongside text+arrow in the narrow 30%-wide
     left column at this size. Icon now gets its own row on top; text (left) and
     arrow (right) share the row below. */
  .service-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "icon icon" "text arrow";
    row-gap: 14px;
    column-gap: 16px;
  }
  .card-icon {
    grid-area: icon;
    justify-self: center;
    width: 56px;
    height: 56px;
  }
  .card-icon svg {
    width: 26px;
    height: 26px;
  }
  .card-text {
    grid-area: text;
    min-width: 0;
  }
  .card-arrow {
    grid-area: arrow;
    align-self: center;
  }
  .card-title {
    font-size: 17px;
  }
  /* Right panel: drop the left/right split. panel-left/panel-right become
     display:contents so their children (unchanged markup) become direct flex
     items of .right-panel, letting `order` stack them as: badge/title/underline/
     desc, then the image, then the checklist/CTA. */
  .right-panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px;
    gap: 20px;
  }
  .panel-left, .panel-right {
    display: contents;
  }
  .panel-badge {
    order: 1;
  }
  .panel-title {
    order: 2;
  }
  .panel-underline {
    order: 3;
  }
  .panel-desc {
    order: 4;
  }
  .panel-image {
    order: 5;
  }
  .panel-checklist {
    order: 6;
  }
  .panel-cta {
    order: 7;
  }
}
@media (max-width: 1023px) {
  .services-header h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }
  .content {
    flex-direction: column;
  }
  .left-panel, .right-panel-wrap {
    width: 100%;
  }
  .right-panel {
    flex-direction: column;
  }
  .panel-left, .panel-right {
    width: 100%;
  }
  .panel-right {
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .services {
    padding: 80px 16px;
  }
  .services-header h2 {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  .services-header p {
    font-size: 15px;
  }
  .card-title {
    font-size: 18px;
  }
  .card-desc {
    font-size: 14px;
  }
  .panel-title {
    font-size: 19px;
    white-space: normal;
  }
  .panel-desc {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .right-panel-wrap {
    display: none;
  }
  .accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s;
  }
  .accordion-body.active {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 16px;
  }
  .accordion-body .accordion-inner {
    overflow: hidden;
  }
  .accordion-body .panel-left, .accordion-body .panel-right {
    width: 100%;
  }
  .accordion-body .panel-right {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .accordion-body {
    display: none;
  }
}
.wpr-home-vision {
  overflow-x: hidden;
  overflow-y: hidden;
  background: #F8FBFF;
  color: #0F172A;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

.wpr-home-vision, .wpr-home-vision * {
  box-sizing: border-box;
}

.wpr-home-vision img {
  max-width: none;
  display: block;
}

.wpr-home-vision button {
  font-family: inherit;
}

.vision-wrapper {
  position: relative;
  height: 320vh;
}

.vision-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #F8FBFF;
}

.vision-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity, transform, filter;
}

.vision-frame[data-phase="1"] {
  opacity: 1;
}

/* GSAP's ScrollTrigger `pin` switches .vision-pin to position:fixed while pinned,
   which escapes this section's own overflow:hidden entirely (fixed positioning is
   not clipped by an ancestor's overflow) and sizes the element from a
   getBoundingClientRect() snapshot taken at pin-start. On mobile, a subsequent
   viewport-width change (address-bar show/hide, orientation) can leave that
   snapshot briefly wider than the true viewport, pushing the frame's edges past
   the screen. This clamp is a CSS-only guard against that — it doesn't touch the
   GSAP timeline/animation itself. */
@media (max-width: 767px) {
  .vision-wrapper, .vision-pin {
    max-width: 100vw;
  }
}
.vision-cta {
  position: absolute;
  left: 40.9%;
  top: 57.1%;
  width: 20.7%;
  height: 6.1%;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.wpr-home-process {
  --blue: #2563EB;
  --accent: #60A5FA;
  --blue-bg: #EFF6FF;
  --dark: #0F172A;
  --gray: #64748B;
  --bg: #F8FBFF;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
}

.wpr-home-process, .wpr-home-process * {
  box-sizing: border-box;
}

.wpr-home-process img {
  max-width: 100%;
  display: block;
}

.wpr-home-process button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-process ul {
  list-style: none;
}

.wpr-home-process .process-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wpr-home-process .process-decor__blur {
  position: absolute;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.08;
  filter: blur(70px);
}

.wpr-home-process .process-decor__blur--c1 {
  width: 360px;
  height: 360px;
  top: -100px;
  left: -120px;
}

.wpr-home-process .process-decor__blur--c2 {
  width: 280px;
  height: 280px;
  bottom: -80px;
  right: -100px;
  background: var(--accent);
}

.wpr-home-process .process-decor__dotgrid {
  position: absolute;
  top: 60px;
  right: 100px;
  width: 140px;
  height: 100px;
  background-image: radial-gradient(circle, var(--blue) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.15;
}

.wpr-home-process .process-decor__glowline {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
}

.wpr-home-process .process-decor__particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.wpr-home-process .process-decor__particle--p1 {
  width: 8px;
  height: 8px;
  top: 20%;
  left: 15%;
}

.wpr-home-process .process-decor__particle--p2 {
  width: 6px;
  height: 6px;
  top: 70%;
  right: 20%;
}

.wpr-home-process .process-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 16px;
  opacity: 0;
  transform: translateY(30px);
}

.wpr-home-process .process-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 8px;
}

.wpr-home-process .process-header__heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--dark);
}

.wpr-home-process .process-header__gradient {
  background: linear-gradient(90deg, var(--blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wpr-home-process .process-header__desc {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
}

.wpr-home-process .process-wrapper {
  position: relative;
  height: 500vh;
}

.wpr-home-process .process-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, var(--bg));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 80px;
}

.wpr-home-process .process-timeline {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  margin-bottom: 16px;
}

.wpr-home-process .process-timeline__track {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: #E2E8F0;
  border-radius: 2px;
}

.wpr-home-process .process-timeline__fill {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
}

.wpr-home-process .process-timeline__nodes {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.wpr-home-process .process-timeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 140px;
}

.wpr-home-process .process-timeline__node-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.wpr-home-process .process-timeline__node--done .process-timeline__node-circle {
  border-color: var(--blue);
  color: var(--blue);
}

.wpr-home-process .process-timeline__node--active .process-timeline__node-circle {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-color: transparent;
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.15), 0 8px 20px rgba(37, 99, 235, 0.35);
}

.wpr-home-process .process-timeline__label {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
}

.wpr-home-process .process-timeline__node--active .process-timeline__label,
.wpr-home-process .process-timeline__node--done .process-timeline__label {
  color: var(--dark);
  font-weight: 600;
}

.wpr-home-process .process-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}

.wpr-home-process .process-card-stack {
  position: relative;
  width: 58%;
  min-height: 400px;
}

.wpr-home-process .process-illustration-stack {
  position: relative;
  width: 42%;
  aspect-ratio: 966/854;
}

.wpr-home-process .process-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  opacity: 0;
}

.wpr-home-process .process-card[data-index="0"] {
  opacity: 1;
}

.wpr-home-process .process-card__number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.wpr-home-process .process-card__title {
  margin-top: 4px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.wpr-home-process .process-card__desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: 20px;
}

.wpr-home-process .process-card__divider {
  margin: 14px 0;
  height: 1px;
  background: #E2E8F0;
  border: none;
}

.wpr-home-process .process-card__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.wpr-home-process .process-card__checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.wpr-home-process .process-card__check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wpr-home-process .process-card__check-icon svg {
  width: 10px;
  height: 10px;
  color: #fff;
}

.wpr-home-process .process-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.3s ease;
}

.wpr-home-process .process-card__cta svg {
  width: 16px;
  height: 16px;
}

.wpr-home-process .process-card__cta:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
}

.wpr-home-process .process-illustration__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  will-change: opacity, transform;
}

.wpr-home-process .process-illustration__img[data-index="0"] {
  opacity: 1;
}

.wpr-home-process .process-mobile {
  display: none;
  padding: 80px 24px;
}

.wpr-home-process .process-mobile__heading {
  font-size: 36px;
}

.wpr-home-process .process-mobile__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.wpr-home-process .process-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.wpr-home-process .process-mobile__item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.wpr-home-process .process-mobile__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: left;
}

.wpr-home-process .process-mobile__node {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-bg);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.wpr-home-process .process-mobile__item--active .process-mobile__node {
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff;
}

.wpr-home-process .process-mobile__toggle-title {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.wpr-home-process .process-mobile__chevron {
  width: 20px;
  height: 20px;
  color: var(--gray);
  transition: transform 0.3s ease;
}

.wpr-home-process .process-mobile__item--active .process-mobile__chevron {
  transform: rotate(180deg);
}

.wpr-home-process .process-mobile__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
}

.wpr-home-process .process-mobile__item--active .process-mobile__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.wpr-home-process .process-mobile__body-inner {
  overflow: hidden;
}

.wpr-home-process .process-mobile__body-content {
  padding: 0 24px 24px;
}

.wpr-home-process .process-mobile__body-content .process-card__desc {
  margin-top: 0;
}

.wpr-home-process .process-mobile__body-content img {
  border-radius: 16px;
  margin-top: 24px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .wpr-home-process .process-pin {
    padding: 0 40px;
  }
  .wpr-home-process .process-content {
    gap: 24px;
  }
  .wpr-home-process .process-card {
    padding: 28px;
  }
  .wpr-home-process .process-card__title {
    font-size: 24px;
  }
  .wpr-home-process .process-timeline__node {
    width: 110px;
  }
}
@media (max-width: 1023px) {
  .wpr-home-process .process-desktop {
    display: none;
  }
  .wpr-home-process .process-mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .wpr-home-process .process-mobile__heading {
    font-size: 28px;
  }
  .wpr-home-process .process-header__desc {
    font-size: 15px;
  }
  .wpr-home-process .process-mobile__toggle-title {
    font-size: 16px;
  }
  .wpr-home-process .process-card__desc {
    font-size: 14px;
  }
  .wpr-home-process .process-card__cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .wpr-home-process .process-mobile__body {
    display: block;
    grid-template-rows: none;
    opacity: 1;
  }
  .wpr-home-process .process-mobile__chevron {
    display: none;
  }
  .wpr-home-process .process-card__cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.wpr-home-why {
  --bg: #F8FBFF;
  --primary: #2563EB;
  --text: #0F172A;
  --secondary: #64748B;
  --accent: #60A5FA;
  --danger: #EF4444;
  --success: #2563EB;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wpr-home-why, .wpr-home-why * {
  box-sizing: border-box;
}

.wpr-home-why h1, .wpr-home-why h2, .wpr-home-why h3 {
  font-family: "Manrope", "Inter", sans-serif;
}

.wpr-home-why img {
  max-width: 100%;
  display: block;
}

.wpr-home-why button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-why ul {
  list-style: none;
}

.why__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why__decor-blur {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.07;
  filter: blur(80px);
}

.why__decor-blur--c1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -160px;
}

.why__decor-blur--c2 {
  width: 320px;
  height: 320px;
  bottom: -100px;
  right: -120px;
  background: var(--accent);
}

.why__decor-grid {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 160px;
  height: 120px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.12;
}

.why__decor-ring {
  position: absolute;
  top: 12%;
  left: 6%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
}

.why__decor-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
}

.why__decor-particle--p1 {
  width: 7px;
  height: 7px;
  top: 18%;
  left: 12%;
}

.why__decor-particle--p2 {
  width: 5px;
  height: 5px;
  top: 75%;
  right: 16%;
}

.why__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(40px);
}

.why__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.why__heading {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text);
}

.why__gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary);
}

.why__rail {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.why__rail-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 64px;
}

.why__rail-item:last-child {
  height: auto;
}

.why__rail-item::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 36px;
  background: #E2E8F0;
}

.why__rail-item:last-child::after {
  display: none;
}

.why__rail-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  transition: color 0.3s ease, font-size 0.3s ease;
}

.why__rail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  margin-top: 6px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.why__rail-item--active .why__rail-num {
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.why__rail-item--active .why__rail-dot {
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15);
  transform: scale(1.3);
}

.why__rail-item--done .why__rail-dot {
  background: var(--accent);
}

.why__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.why__panel {
  position: relative;
  min-height: 560px;
}

.why__panel--agency {
  padding-right: 40px;
}

.why__panel--vision {
  padding-left: 40px;
}

.why__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.why__card[data-index="0"] {
  opacity: 1;
}

.why__card-status {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why__card--agency .why__card-status {
  background: #FEE2E2;
  color: var(--danger);
}

.why__card--vision .why__card-status {
  background: #DBEAFE;
  color: var(--success);
}

.why__card-status svg {
  width: 18px;
  height: 18px;
}

.why__card-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.why__card--vision .why__card-title {
  color: var(--primary);
}

.why__card-desc {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.why__illustration {
  position: relative;
  margin: 28px auto 0;
  width: 100%;
  height: 345px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.12);
}

.why__illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why__illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65) 100%);
}

.why__tags {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.why__illustration .why__tags {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.why__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.why__tag-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__tag--danger .why__tag-icon {
  background: #FEE2E2;
  color: var(--danger);
}

.why__tag--success .why__tag-icon {
  background: #DBEAFE;
  color: var(--success);
}

.why__tag-icon svg {
  width: 10px;
  height: 10px;
}

.why__divider {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}

.why__divider-track {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E2E8F0;
  left: 50%;
  transform: translateX(-50%);
}

.why__divider-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.why__divider-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.35), rgba(96, 165, 250, 0.05));
  filter: blur(8px);
  opacity: 0;
}

.why__divider-pulse {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px 6px rgba(37, 99, 235, 0.7);
  opacity: 0;
}

.why__vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12), 0 10px 30px rgba(37, 99, 235, 0.4);
}

.why__divider-ambient {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: why-float 3.4s ease-in infinite;
}

.why__divider-ambient:nth-child(2) {
  animation-delay: 1.1s;
  margin-left: -8px;
}

.why__divider-ambient:nth-child(3) {
  animation-delay: 2.2s;
  margin-left: 2px;
}

@keyframes why-float {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  85% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-420px);
    opacity: 0;
  }
}
.why__summary {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-content: center;
  opacity: 0;
}

.why__summary.is-visible {
  display: grid;
}

.why__summary-item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
}

.why__summary-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #DBEAFE;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__summary-icon svg {
  width: 16px;
  height: 16px;
}

.why__summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.why__cta {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.why__cta-heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}

.why__cta-heading span {
  color: var(--primary);
}

.why__cta-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 24px 0 32px;
}

.why__cta-checklist li {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
}

/* "Bắt đầu dự án" reuses the shared .about__cta-button component (defined in
   section-about.php, applies globally) for its premium shine/hover treatment. */
.why__cta .about__cta-button {
  width: 400px;
}

.why__wrapper {
  position: relative;
  height: 500vh;
}

.why__pin {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF, var(--bg));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px 0 110px;
}

.why__particle-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
}

.why-mobile {
  display: none;
  padding: 80px 24px;
}

.why-mobile__heading {
  font-size: 32px;
}

.why-mobile__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.why-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.why-mobile__item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.why-mobile__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: left;
}

.why-mobile__node {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.why-mobile__item--active .why-mobile__node {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.why-mobile__toggle-title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.why-mobile__chevron {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.why-mobile__item--active .why-mobile__chevron {
  transform: rotate(180deg);
}

.why-mobile__body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s ease;
}

.why-mobile__item--active .why-mobile__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.why-mobile__body-inner {
  overflow: hidden;
}

.why-mobile__body-content {
  padding: 0 24px 24px;
}

.why-mobile__col {
  padding: 16px 0;
  border-top: 1px solid #F1F5F9;
}

.why-mobile__col:first-child {
  border-top: none;
}

.why-mobile__col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-mobile__col--agency .why-mobile__col-label {
  color: var(--danger);
}

.why-mobile__col--vision .why-mobile__col-label {
  color: var(--success);
}

.why-mobile__col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.why-mobile__col-desc {
  font-size: 14px;
  color: var(--secondary);
  margin-top: 4px;
  line-height: 1.6;
}

.why-mobile__illustration {
  position: relative;
  margin: 12px auto 0;
  width: 100%;
  max-width: 280px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
}

.why-mobile__illustration img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-mobile__illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.65) 100%);
}

.why-mobile__illustration .why__tags {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .why__pin {
    padding: 0 32px 0 56px;
  }
  .why__panel--agency {
    padding-right: 24px;
  }
  .why__panel--vision {
    padding-left: 24px;
  }
  .why__card-title {
    font-size: 24px;
  }
  .why__card-desc {
    font-size: 14px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.4em;
  }
  .why__tag {
    font-size: 9px;
    padding: 6px 7px;
    gap: 4px;
  }
  .why__tag-icon {
    width: 13px;
    height: 13px;
  }
  .why__tag-icon svg {
    width: 8px;
    height: 8px;
  }
  .why__illustration {
    height: 280px;
  }
  .why__rail {
    left: 12px;
  }
  .why__vs {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .why__summary {
    padding: 0 60px;
  }
  .why__cta {
    padding: 0 60px;
  }
}
@media (max-width: 1023px) {
  .why-desktop {
    display: none;
  }
  .why-mobile {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .why-mobile__body {
    display: block;
    grid-template-rows: none;
    opacity: 1;
  }
  .why-mobile__chevron {
    display: none;
  }
  .why-mobile__illustration {
    margin: 15px 0 0;
    max-width: none;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .why-mobile__heading {
    font-size: 26px;
  }
  .why__desc {
    font-size: 15px;
  }
  .why-mobile__toggle-title {
    font-size: 16px;
  }
  .why-mobile__col-title {
    font-size: 15px;
  }
  .why-mobile__col-desc {
    font-size: 13px;
  }
  .why-mobile__illustration {
    max-width: none;
  }
  .why__tags {
    grid-template-columns: repeat(2, 1fr);
  }
  .why__tag {
    font-size: 10px;
    padding: 7px 9px;
  }
}
.wpr-home-plans {
  --bg: #F8FBFF;
  --primary: #2563EB;
  --accent: #60A5FA;
  --text: #0F172A;
  --secondary: #64748B;
  --card: rgba(255,255,255,.75);
  --glass-border: rgba(37,99,235,.15);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wpr-home-plans, .wpr-home-plans * {
  box-sizing: border-box;
}

.wpr-home-plans h1, .wpr-home-plans h2, .wpr-home-plans h3 {
  font-family: "Manrope", "Inter", sans-serif;
}

.wpr-home-plans img {
  max-width: 100%;
  display: block;
}

.wpr-home-plans button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-plans ul {
  list-style: none;
}

.plans__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.plans__decor-blur {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  filter: blur(90px);
}

.plans__decor-blur--c1 {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -180px;
}

.plans__decor-blur--c2 {
  width: 360px;
  height: 360px;
  bottom: 0;
  right: -140px;
  background: var(--accent);
}

.plans__decor-ring {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
}

.plans__decor-grid {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 180px;
  height: 130px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.1;
}

.plans__decor-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.plans__decor-particle--p1 {
  width: 6px;
  height: 6px;
  top: 12%;
  left: 20%;
}

.plans__decor-particle--p2 {
  width: 5px;
  height: 5px;
  bottom: 16%;
  right: 22%;
}

/* Base layout rule — MUST stay above every @media block below. Same selector/
   specificity as the responsive overrides further down, so if this sat after them
   in source order it would win the cascade tie and silently cancel every
   Laptop/Tablet/Mobile override of .plans / .plans__inner regardless of viewport. */
.plans {
  position: relative;
  min-height: 250vh;
}

.plans__inner {
  position: relative;
  padding: 120px 64px 160px;
  max-width: 1440px;
  margin: 0 auto;
}

.plans__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
}

.plans__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.plans__heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}

.plans__subheading {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
}

.plans__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary);
}

.plans__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 32px;
  align-items: start;
}

.plans__line {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 120px;
  height: 2px;
  z-index: 0;
}

.plans__line-track {
  position: absolute;
  inset: 0;
  background: #E2E8F0;
}

.plans__line-fill {
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.plans__line-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 12px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.3), rgba(96, 165, 250, 0.05));
  filter: blur(8px);
  opacity: 0;
}

.plans__line-particle {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 2px rgba(96, 165, 250, 0.7);
  animation: plans-line-run 3.2s linear infinite;
}

@keyframes plans-line-run {
  0% {
    left: 0%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.plans__card {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 40px 32px;
  opacity: 0;
  will-change: transform, opacity;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.plans__card--featured {
  padding: 52px 36px;
  border-color: rgba(37, 99, 235, 0.3);
}

.plans__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.plans__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--primary);
}

.plans__card-icon svg {
  width: 100%;
  height: 100%;
}

.plans__card-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
}

.plans__card-sub {
  margin-top: 8px;
  font-size: 15px;
  color: var(--secondary);
}

.plans__card-illustration {
  margin: 24px auto;
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  overflow: hidden;
}

.plans__card-illustration img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.plans__card-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.plans__card-price-label {
  font-size: 15px;
  color: var(--secondary);
}

.plans__card-price-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
}

.plans__card-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}

.plans__card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.plans__card-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #DBEAFE;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plans__card-feature-icon svg {
  width: 11px;
  height: 11px;
}

/* Card CTA reuses the shared .about__cta-button component (defined in section-about.php,
   applies globally) for its premium shine/hover treatment; full-width to fit the card. */
.plans__card .about__cta-button {
  width: 100%;
}

.plans__card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
}

.plans__card:hover .plans__card-illustration img {
  transform: translateY(-6px);
}

.plans__card--featured {
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
  animation: plans-featured-glow 3.6s ease-in-out infinite;
}

@keyframes plans-featured-glow {
  0%, 100% {
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
  }
  50% {
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.22);
  }
}
.plans__card--featured .plans__card-illustration img {
  animation: plans-illustration-float 4.5s ease-in-out infinite;
}

@keyframes plans-illustration-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.plans__card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

.plans__card-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.plans__card.is-expanded .plans__card-toggle svg {
  transform: rotate(180deg);
}

.plans__card-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  text-align: left;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.3s ease;
}

.plans__card.is-expanded .plans__card-detail {
  grid-template-rows: 1fr;
  opacity: 1;
}

.plans__card-detail-inner {
  overflow: hidden;
}

.plans__detail-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(37, 99, 235, 0.12);
}

.plans__detail-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.plans__detail-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plans__detail-timeline li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.plans__detail-timeline li span:last-child {
  color: var(--secondary);
  flex-shrink: 0;
}

.plans__detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.plans__detail-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plans__detail-stack span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}

.plans__detail-meta {
  font-size: 14px;
  color: var(--text);
}

.plans__detail-faq-item {
  margin-bottom: 12px;
}

.plans__detail-faq-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.plans__detail-faq-item span {
  font-size: 14px;
  color: var(--secondary);
}

.plans__card-collapse {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(37, 99, 235, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.plans__card-collapse svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

.plans__card-collapse:hover {
  color: var(--accent);
}

.plans__cta {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 120px auto 0;
  opacity: 0;
  transform: scale(0.95);
}

.plans__cta-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}

.plans__cta-desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary);
}

/* CTA button reuses the shared .about__cta-button component (defined in section-about.php). */
.plans__cta-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.plans-mobile {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .plans__inner {
    padding: 100px 32px 140px;
  }
  .plans__row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .plans__card {
    padding: 32px 24px;
  }
  .plans__card--featured {
    padding: 32px 24px;
  }
  .plans__card-title {
    font-size: 26px;
  }
  .plans__card-price-value {
    font-size: 32px;
  }
  .plans__heading {
    font-size: 42px;
  }
}
@media (max-width: 1023px) {
  .plans__header {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .plans__card {
    opacity: 1;
  }
  .plans__cta {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .plans__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .plans__line {
    display: none;
  }
  .plans__card-features li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 767px) {
  .plans {
    height: auto;
    min-height: 0;
    padding-bottom: 80px;
  }
  .plans__inner {
    padding: 100px 20px;
  }
  .plans__heading {
    font-size: clamp(28px, 8vw, 36px);
  }
  .plans__subheading {
    font-size: 18px;
  }
  .plans__desc {
    font-size: 16px;
  }
  .plans__row {
    display: none;
  }
  .plans-mobile {
    display: block;
    position: relative;
    z-index: 1;
  }
  .plans-mobile__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 20px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .plans-mobile__track::-webkit-scrollbar {
    display: none;
  }
  .plans-mobile__track .plans__card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    opacity: 1;
    transform: none;
    padding: 32px 24px;
  }
  .plans-mobile__track .plans__card--featured {
    padding: 36px 24px;
  }
  .plans__card-title {
    font-size: 24px;
  }
  .plans__card-price-value {
    font-size: 32px;
  }
  .plans-mobile__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .plans-mobile__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CBD5E1;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .plans-mobile__dot--active {
    background: var(--primary);
    transform: scale(1.3);
  }
  .plans__header {
    margin-bottom: 40px;
  }
  .plans__cta-heading {
    font-size: 26px;
  }
}
@media (max-width: 389px) {
  .plans__inner {
    padding: 100px 16px;
  }
  .plans-mobile__track {
    padding: 8px 16px 24px;
  }
}
.wpr-home-faq {
  --bg: #F8FBFF;
  --primary: #2563EB;
  --accent: #60A5FA;
  --text: #0F172A;
  --secondary: #64748B;
  --card: rgba(255,255,255,.75);
  --glass-border: rgba(37,99,235,.15);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wpr-home-faq, .wpr-home-faq * {
  box-sizing: border-box;
}

.wpr-home-faq h1, .wpr-home-faq h2, .wpr-home-faq h3 {
  font-family: "Manrope", "Inter", sans-serif;
}

.wpr-home-faq img {
  max-width: 100%;
  display: block;
}

.wpr-home-faq button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.wpr-home-faq ul {
  list-style: none;
}

/* ---------- decor ---------- */
.faq__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.faq__decor-blur {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.06;
  filter: blur(90px);
}

.faq__decor-blur--c1 {
  width: 460px;
  height: 460px;
  top: -120px;
  left: -180px;
}

.faq__decor-blur--c2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -160px;
  background: var(--accent);
}

.faq__decor-ring {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
}

.faq__decor-grid {
  position: absolute;
  bottom: 8%;
  left: 4%;
  width: 180px;
  height: 130px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.1;
}

.faq__decor-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.faq__decor-particle--p1 {
  width: 6px;
  height: 6px;
  top: 24%;
  left: 14%;
}

.faq__decor-particle--p2 {
  width: 5px;
  height: 5px;
  bottom: 22%;
  right: 20%;
}

.faq__decor-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout ---------- */
.faq {
  position: relative;
  padding: 140px 0 160px;
}

.faq__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.faq__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 88px;
  opacity: 0;
  transform: translateY(40px);
  filter: blur(8px);
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.faq__heading {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text);
}

.faq__desc {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--secondary);
}

.faq__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

/* ---------- illustration ---------- */
.faq__illu {
  position: sticky;
  top: 120px;
  height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(160deg, #EFF6FF, #F8FBFF 65%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
}

.faq__scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__scene--active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.faq__panel {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(219, 234, 254, 0.35));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.14);
}

.faq__scene-core {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(219, 234, 254, 0.6));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 14px rgba(37, 99, 235, 0.06), 0 24px 50px rgba(37, 99, 235, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.faq__scene-core svg {
  width: 52px;
  height: 52px;
}

.faq__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.65);
}

/* per-scene panel & dot placement */
.faq__scene--timeline .faq__panel:nth-child(1) {
  width: 110px;
  height: 70px;
  top: 14%;
  left: 9%;
  transform: rotate(-10deg);
}

.faq__scene--timeline .faq__panel:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 16%;
  left: 19%;
  transform: rotate(8deg);
}

.faq__scene--timeline .faq__panel:nth-child(3) {
  width: 130px;
  height: 60px;
  top: 18%;
  right: 7%;
  transform: rotate(6deg);
}

.faq__scene--timeline .faq__dot--a {
  width: 10px;
  height: 10px;
  top: 42%;
  left: 6%;
}

.faq__scene--timeline .faq__dot--b {
  width: 8px;
  height: 8px;
  bottom: 12%;
  right: 18%;
}

.faq__scene--pricing .faq__panel:nth-child(1) {
  width: 140px;
  height: 90px;
  top: 12%;
  left: 13%;
  transform: rotate(-6deg);
}

.faq__scene--pricing .faq__panel:nth-child(2) {
  width: 100px;
  height: 100px;
  bottom: 14%;
  right: 11%;
  transform: rotate(10deg);
}

.faq__scene--pricing .faq__panel:nth-child(3) {
  width: 80px;
  height: 60px;
  top: 20%;
  right: 19%;
  transform: rotate(-4deg);
}

.faq__scene--pricing .faq__dot--a {
  width: 9px;
  height: 9px;
  bottom: 20%;
  left: 14%;
}

.faq__scene--pricing .faq__dot--b {
  width: 7px;
  height: 7px;
  top: 10%;
  right: 30%;
}

.faq__scene--seo .faq__panel:nth-child(1) {
  width: 120px;
  height: 80px;
  top: 15%;
  right: 9%;
  transform: rotate(9deg);
}

.faq__scene--seo .faq__panel:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 17%;
  left: 11%;
  transform: rotate(-8deg);
}

.faq__scene--seo .faq__panel:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 9%;
  left: 21%;
  transform: rotate(4deg);
}

.faq__scene--seo .faq__dot--a {
  width: 9px;
  height: 9px;
  top: 34%;
  right: 12%;
}

.faq__scene--seo .faq__dot--b {
  width: 7px;
  height: 7px;
  bottom: 10%;
  right: 28%;
}

.faq__scene--support .faq__panel:nth-child(1) {
  width: 130px;
  height: 70px;
  top: 13%;
  left: 7%;
  transform: rotate(-5deg);
}

.faq__scene--support .faq__panel:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 13%;
  right: 13%;
  transform: rotate(7deg);
}

.faq__scene--support .faq__panel:nth-child(3) {
  width: 70px;
  height: 100px;
  top: 25%;
  right: 5%;
  transform: rotate(-9deg);
}

.faq__scene--support .faq__dot--a {
  width: 10px;
  height: 10px;
  bottom: 30%;
  left: 16%;
}

.faq__scene--support .faq__dot--b {
  width: 7px;
  height: 7px;
  top: 12%;
  right: 24%;
}

.faq__scene--cloud .faq__panel:nth-child(1) {
  width: 150px;
  height: 60px;
  bottom: 19%;
  left: 9%;
  transform: rotate(4deg);
}

.faq__scene--cloud .faq__panel:nth-child(2) {
  width: 90px;
  height: 90px;
  top: 11%;
  right: 15%;
  transform: rotate(-6deg);
}

.faq__scene--cloud .faq__panel:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 29%;
  left: 17%;
  transform: rotate(8deg);
}

.faq__scene--cloud .faq__dot--a {
  width: 9px;
  height: 9px;
  top: 16%;
  left: 30%;
}

.faq__scene--cloud .faq__dot--b {
  width: 7px;
  height: 7px;
  bottom: 14%;
  right: 26%;
}

.faq__scene--ai .faq__panel:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 9%;
  left: 11%;
  transform: rotate(-4deg);
}

.faq__scene--ai .faq__panel:nth-child(2) {
  width: 110px;
  height: 70px;
  bottom: 15%;
  right: 9%;
  transform: rotate(6deg);
}

.faq__scene--ai .faq__panel:nth-child(3) {
  width: 70px;
  height: 70px;
  top: 21%;
  right: 23%;
  transform: rotate(-8deg);
}

.faq__scene--ai .faq__dot--a {
  width: 9px;
  height: 9px;
  bottom: 28%;
  left: 20%;
}

.faq__scene--ai .faq__dot--b {
  width: 7px;
  height: 7px;
  top: 36%;
  right: 12%;
}

/* ---------- accordion list ---------- */
.faq__list {
  position: relative;
  z-index: 1;
}

.faq__item {
  position: relative;
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 18px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
}

.faq__item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.faq__item--open {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.16);
}

.faq__item--open:hover {
  transform: none;
}

.faq__item-head {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 28px 32px;
  text-align: left;
}

.faq__item-num {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  min-width: 34px;
  transition: color 0.3s ease;
}

.faq__item--open .faq__item-num {
  color: var(--primary);
}

.faq__item-q {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.faq__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, color 0.35s ease;
}

.faq__item--open .faq__item-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.faq__item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__item-body-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__item-answer {
  padding: 0 32px 30px 86px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--secondary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.faq__item--open .faq__item-body {
  grid-template-rows: 1fr;
}

.faq__item--open .faq__item-answer {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CTA ---------- */
.faq__cta {
  margin-top: 96px;
  border-radius: 28px;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(239, 246, 255, 0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.12);
  opacity: 0;
  transform: translateY(24px);
}

.faq__cta-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.faq__cta-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* "Liên hệ chuyên gia" reuses the shared .about__cta-button component (defined in
   section-about.php, applies globally) for its premium shine/hover treatment. */
.faq__cta-actions .about__cta-button {
  width: 400px;
}

.faq__btn {
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.faq__btn--secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
}

.faq__btn--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
}

/* ---------- responsive ---------- */
@media (max-width: 1279px) {
  .faq__inner {
    padding: 0 32px;
  }
  .faq__heading {
    font-size: 38px;
  }
  .faq__stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq__illu {
    position: relative;
    top: auto;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .faq {
    padding: 100px 0 120px;
  }
  .faq__inner {
    padding: 0 20px;
  }
  .faq__heading {
    font-size: 30px;
  }
  .faq__desc {
    font-size: 15px;
  }
  .faq__cta-title {
    font-size: 22px;
  }
  .faq__header {
    margin-bottom: 56px;
  }
  .faq__item-head {
    padding: 22px 20px;
    gap: 14px;
  }
  .faq__item-q {
    font-size: 16px;
  }
  .faq__item-answer {
    padding: 0 20px 24px 20px;
  }
  .faq__cta {
    padding: 40px 24px;
  }
  .faq__cta-actions {
    flex-direction: column;
  }
  .faq__btn {
    width: 100%;
  }
  .faq__cta-actions .about__cta-button {
    width: 100%;
  }
}
@media (max-width: 389px) {
  .faq__inner {
    padding: 0 16px;
  }
}
