/* ==========================================================================
   PLEXORAA — Global stylesheet
   Paste into: Elementor → Site Settings → Custom CSS (Pro)
            or Appearance → Customize → Additional CSS (free)
   All classes are prefixed "px-" so they never collide with Elementor.
   ========================================================================== */

/* ---------- 1. Brand tokens (taken directly from the logo) ---------- */
:root {
  --px-indigo: #4F46E5;        /* logo hexagon */
  --px-indigo-deep: #312E81;   /* logo wordmark */
  --px-indigo-ink: #1E1B4B;    /* darker shade of the wordmark, dark sections */
  --px-emerald: #10B981;       /* logo node + "aa" */
  --px-emerald-deep: #059669;  /* hover state for emerald */
  --px-slate: #64748B;         /* logo tagline */
  --px-slate-light: #94A3B8;
  --px-white: #FFFFFF;
  --px-tint: #F5F5FF;          /* 4% indigo tint for alternate light sections */
  --px-tint-2: #EEF0FF;
  --px-line: #E4E6FB;          /* borders on light */
  --px-line-dark: rgba(255,255,255,.12);
  --px-text: #1E1B4B;
  --px-text-2: #4B5563;

  --px-font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --px-font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --px-container: 1200px;
  --px-radius: 20px;
  --px-radius-sm: 12px;
  --px-shadow: 0 20px 50px -20px rgba(49,46,129,.25);
  --px-shadow-sm: 0 8px 24px -12px rgba(49,46,129,.2);
  --px-ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- 2. Base ---------- */
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }
body.px-body {
  margin: 0;
  font-family: var(--px-font-body);
  color: var(--px-text);
  background: var(--px-white);
  line-height: 1.65;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .px-body *, .px-body *::before, .px-body *::after { animation: none !important; transition: none !important; }
}
.px-body h1, .px-body h2, .px-body h3, .px-body h4 {
  font-family: var(--px-font-head);
  color: var(--px-text);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-weight: 600;
}
.px-body p { margin: 0 0 1em; }
.px-body img { max-width: 100%; height: auto; display: block; }
.px-body a { text-decoration: none; }
a { color: inherit; }
.px-body p a { color: var(--px-indigo); }
.px-body :focus-visible { outline: 3px solid var(--px-emerald); outline-offset: 3px; border-radius: 4px; }
.px-visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Container + section rhythm */
.px-container { width: min(var(--px-container), 100% - 2.5rem); margin-inline: auto; }
.px-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.px-section--tint { background: var(--px-tint); }
.px-section--dark { background: var(--px-indigo-ink); color: rgba(255,255,255,.82); }
.px-section--dark h1, .px-section--dark h2, .px-section--dark h3, .px-section--dark h4 { color: var(--px-white); }

/* Section header pattern */
.px-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.px-head--center { margin-inline: auto; text-align: center; }
.px-kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--px-font-head); font-weight: 500; font-size: .9rem;
  color: var(--px-indigo); margin-bottom: 1rem;
}
.px-kicker::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--px-emerald); box-shadow: 0 0 0 3px rgba(16,185,129,.2);
}
.px-section--dark .px-kicker { color: #C7D2FE; }
.px-h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
.px-lead { font-size: 1.1rem; color: var(--px-text-2); max-width: 56ch; }
.px-section--dark .px-lead { color: rgba(255,255,255,.75); }
.px-head--center .px-lead { margin-inline: auto; }

/* ---------- 3. Buttons ---------- */
.px-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--px-font-head); font-weight: 500; font-size: 1rem;
  padding: .95rem 1.75rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; line-height: 1; white-space: nowrap; box-sizing: border-box;
  transition: transform .25s var(--px-ease), box-shadow .25s var(--px-ease), background .25s, color .25s, border-color .25s;
}
.px-btn svg { width: 18px; height: 18px; flex: none; }
.px-btn:hover { transform: translateY(-2px); }
.px-btn:active { transform: translateY(0); }
.px-body .px-btn--primary { background: var(--px-emerald); color: #fff; box-shadow: 0 10px 24px -10px rgba(16,185,129,.7); }
.px-btn--primary:hover { background: var(--px-emerald-deep); color: #fff; }
.px-body .px-btn--indigo { background: var(--px-indigo); color: #fff; box-shadow: 0 10px 24px -10px rgba(79,70,229,.7); }
.px-btn--indigo:hover { background: var(--px-indigo-deep); color: #fff; }
.px-body .px-btn--ghost { background: transparent; color: var(--px-indigo-deep); border-color: var(--px-line); }
.px-btn--ghost:hover { border-color: var(--px-indigo); color: var(--px-indigo); }
.px-body .px-btn--ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.px-btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.px-btn--sm { padding: .7rem 1.2rem; font-size: .9rem; }
.px-btn--block { width: 100%; }

/* ---------- 4. Header / navigation ---------- */
.px-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.px-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: 84px; transition: height .3s var(--px-ease);
}
.px-header.is-scrolled { background: rgba(255,255,255,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--px-line), 0 10px 30px -20px rgba(49,46,129,.3); }
.px-header.is-scrolled .px-header__inner { height: 68px; }
.px-logo { display: inline-flex; align-items: center; line-height: 0; }
.px-logo img, .px-logo svg { height: 46px; width: auto; }
.px-logo__light { display: none; }
.px-header:not(.is-scrolled):not(.is-open) .px-logo__dark { display: none; }
.px-header:not(.is-scrolled):not(.is-open) .px-logo__light { display: block; }

.px-nav { display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; list-style: none; }
.px-nav a {
  display: block; padding: .55rem .9rem; border-radius: 999px;
  font-family: var(--px-font-head); font-weight: 500; font-size: .95rem;
  color: rgba(255,255,255,.85); transition: color .2s, background .2s;
}
.px-nav a:hover, .px-nav a.is-active { color: #fff; background: rgba(255,255,255,.1); }
.px-header.is-scrolled .px-nav a { color: var(--px-text); }
.px-header.is-scrolled .px-nav a:hover, .px-header.is-scrolled .px-nav a.is-active { color: var(--px-indigo); background: var(--px-tint-2); }
.px-header__actions { display: flex; align-items: center; gap: .75rem; }
.px-header__phone { font-family: var(--px-font-head); font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.85); display: inline-flex; align-items: center; gap: .5rem; }
.px-header__phone svg { width: 18px; height: 18px; }
.px-header.is-scrolled .px-header__phone { color: var(--px-text); }

.px-burger {
  display: none; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.25);
  background: transparent; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center;
}
.px-burger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--px-ease), opacity .2s; }
.px-burger span + span { margin-top: 5px; }
.px-header.is-scrolled .px-burger { border-color: var(--px-line); }
.px-header.is-scrolled .px-burger span { background: var(--px-indigo-deep); }
.px-header.is-open .px-burger { border-color: var(--px-line); }
.px-header.is-open .px-burger span { background: var(--px-indigo-deep); }
.px-header.is-open .px-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.px-header.is-open .px-burger span:nth-child(2) { opacity: 0; }
.px-header.is-open .px-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.px-drawer {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
  background: #fff; z-index: 99; padding: 100px 1.5rem 2rem; box-shadow: -20px 0 60px -30px rgba(49,46,129,.35);
  transform: translateX(105%); transition: transform .4s var(--px-ease); overflow-y: auto;
}
.px-drawer__nav { list-style: none; margin: 0 0 2rem; padding: 0; }
.px-drawer__nav a {
  display: block; padding: .9rem 0; font-family: var(--px-font-head); font-weight: 500; font-size: 1.15rem;
  color: var(--px-text); border-bottom: 1px solid var(--px-line);
}
.px-drawer__nav a:hover, .px-drawer__nav a.is-active { color: var(--px-indigo); }
.px-drawer__contact { color: var(--px-slate); font-size: .95rem; }
.px-drawer__contact a { display: block; color: var(--px-text); padding: .3rem 0; }
.px-scrim { position: fixed; inset: 0; background: rgba(30,27,75,.5); z-index: 98; opacity: 0; pointer-events: none; transition: opacity .3s; }
.px-header.is-open ~ .px-scrim { opacity: 1; pointer-events: auto; }
.px-header.is-open { background: #fff; }

@media (max-width: 1024px) {
  .px-nav, .px-header__phone { display: none; }
  .px-burger { display: inline-flex; }
  .px-drawer { display: block; }
  .px-header.is-open ~ .px-drawer { transform: translateX(0); }
  .px-header__actions .px-btn { display: none; }
}

/* ---------- 5. Hero ---------- */
.px-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1100px 600px at 85% -10%, rgba(79,70,229,.55), transparent 60%),
              radial-gradient(700px 500px at -10% 100%, rgba(16,185,129,.22), transparent 60%),
              linear-gradient(160deg, var(--px-indigo-ink) 0%, var(--px-indigo-deep) 100%);
  padding: calc(84px + clamp(4rem, 9vw, 7rem)) 0 clamp(4rem, 8vw, 6rem);
}
.px-hero__pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'><path d='M60 2 110 30v52L60 102 10 82V30z' fill='none' stroke='rgba(255,255,255,0.055)' stroke-width='1'/></svg>");
  background-size: 120px 104px;
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(70% 70% at 60% 40%, #000 30%, transparent 100%);
}
.px-hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.px-hero__badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1rem .45rem .6rem;
  border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  font-size: .9rem; color: rgba(255,255,255,.9); margin-bottom: 1.5rem;
}
.px-hero__badge b { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--px-emerald); color: #fff; font-size: .7rem; font-weight: 600; }
.px-hero .px-hero__title { font-size: clamp(2.6rem, 5.6vw, 4.5rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; color: #fff; margin-bottom: 1.25rem; }
.px-hero__title em { font-style: normal; color: var(--px-emerald); }
.px-hero__text { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.78); max-width: 52ch; margin-bottom: 2rem; }
.px-hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.5rem; }
.px-hero__proof { display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.14); }
.px-hero__proof div { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(255,255,255,.8); }
.px-hero__proof svg { width: 18px; height: 18px; color: var(--px-emerald); flex: none; }

/* Hero showcase (CSS-built mock, replace with a screenshot/mockup image in Elementor if preferred) */
.px-showcase { position: relative; }
.px-showcase__frame {
  position: relative; border-radius: 18px; overflow: hidden;
  background: #fff; box-shadow: 0 40px 80px -30px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.1);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
}
.px-showcase__bar { display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem; background: var(--px-tint); border-bottom: 1px solid var(--px-line); }
.px-showcase__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--px-line); display: block; }
.px-showcase__bar i:first-child { background: var(--px-indigo); }
.px-showcase__bar i:nth-child(2) { background: var(--px-emerald); }
.px-showcase__url { margin-left: .5rem; flex: 1; height: 22px; border-radius: 6px; background: #fff; border: 1px solid var(--px-line); font-size: .7rem; color: var(--px-slate); display: flex; align-items: center; padding: 0 .6rem; }
.px-showcase__frame img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; object-position: top; }
.px-showcase__chip {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  background: #fff; color: var(--px-text); border-radius: 14px; padding: .7rem .9rem;
  box-shadow: var(--px-shadow); font-size: .85rem; line-height: 1.25;
}
.px-showcase__chip strong { display: block; font-family: var(--px-font-head); font-weight: 600; font-size: .95rem; }
.px-showcase__chip small { color: var(--px-slate); }
.px-showcase__chip span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; flex: none; }
.px-showcase__chip span svg { width: 20px; height: 20px; }
.px-showcase__chip--a { left: -8%; bottom: 14%; }
.px-showcase__chip--a span { background: rgba(16,185,129,.14); color: var(--px-emerald); }
.px-showcase__chip--b { right: -6%; top: 10%; }
.px-showcase__chip--b span { background: rgba(79,70,229,.14); color: var(--px-indigo); }
.px-showcase__hex {
  position: absolute; z-index: -1; width: 62%; aspect-ratio: 1; right: -14%; bottom: -16%;
  background: rgba(79,70,229,.35);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  filter: blur(2px);
}
/* One orchestrated page-load reveal */
@keyframes px-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.px-hero .px-hero__badge, .px-hero .px-hero__title, .px-hero .px-hero__text, .px-hero .px-hero__actions, .px-hero .px-hero__proof { animation: px-rise .7s var(--px-ease) both; }
.px-hero .px-hero__title { animation-delay: .08s; }
.px-hero .px-hero__text { animation-delay: .16s; }
.px-hero .px-hero__actions { animation-delay: .24s; }
.px-hero .px-hero__proof { animation-delay: .32s; }
.px-hero .px-showcase { animation: px-rise .9s var(--px-ease) .2s both; }

@media (max-width: 960px) {
  .px-hero__grid { grid-template-columns: 1fr; }
  .px-showcase { margin-top: 1rem; max-width: 620px; }
  .px-showcase__frame { transform: none; }
  .px-showcase__chip--a { left: 0; bottom: -8%; }
  .px-showcase__chip--b { right: 0; top: -8%; }
}
@media (max-width: 560px) {
  .px-showcase__chip { padding: .55rem .7rem; font-size: .78rem; }
  .px-showcase__chip span { width: 32px; height: 32px; }
}

/* ---------- 6. Services ---------- */
.px-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.px-service {
  position: relative; background: #fff; border: 1px solid var(--px-line); border-radius: var(--px-radius);
  padding: 2rem 1.6rem 1.75rem; display: flex; flex-direction: column;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--px-ease);
}
.px-service:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--px-shadow); transform: translateY(-4px); }
.px-service__icon {
  width: 60px; height: 60px; display: grid; place-items: center; color: #fff; margin-bottom: 1.5rem;
  background: linear-gradient(145deg, var(--px-indigo), var(--px-indigo-deep));
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.px-service__icon svg { width: 26px; height: 26px; }
.px-service h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.px-service p { color: var(--px-text-2); font-size: .97rem; }
.px-service ul { list-style: none; margin: auto 0 1.5rem; padding: 0; display: grid; gap: .45rem; font-size: .92rem; color: var(--px-text-2); }
.px-service li { display: flex; gap: .5rem; align-items: flex-start; }
.px-service li::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--px-emerald); margin-top: .5rem; }
.px-service__link { font-family: var(--px-font-head); font-weight: 500; color: var(--px-indigo); display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; }
.px-service__link svg { width: 16px; height: 16px; transition: transform .25s var(--px-ease); }
.px-service__link:hover svg { transform: translateX(3px); }
@media (max-width: 1024px) { .px-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .px-services { grid-template-columns: 1fr; } }

/* ---------- 7. About + Why choose us ---------- */
.px-about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.px-about__visual { position: relative; }
.px-about__img {
  border-radius: var(--px-radius); overflow: hidden; box-shadow: var(--px-shadow);
  aspect-ratio: 4/4.4; background: linear-gradient(160deg, var(--px-indigo-deep), var(--px-indigo));
}
.px-about__img img { width: 100%; height: 100%; object-fit: cover; }
.px-about__stat {
  position: absolute; left: -1.25rem; bottom: 2rem; background: #fff; border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: var(--px-shadow); display: flex; align-items: center; gap: 1rem;
}
.px-about__stat b { font-family: var(--px-font-head); font-size: 1.8rem; font-weight: 600; color: var(--px-indigo); line-height: 1; }
.px-about__stat small { display: block; color: var(--px-slate); font-size: .85rem; line-height: 1.3; }
.px-about__body .px-lead { margin-bottom: 1.25rem; }
.px-about__body p { color: var(--px-text-2); }
.px-why { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.px-why__item { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem; border-radius: 14px; background: #fff; border: 1px solid var(--px-line); }
.px-why__item svg { width: 22px; height: 22px; color: var(--px-emerald); flex: none; margin-top: .1rem; }
.px-why__item strong { display: block; font-family: var(--px-font-head); font-weight: 600; font-size: .98rem; }
.px-why__item span { font-size: .88rem; color: var(--px-slate); }
@media (max-width: 960px) {
  .px-about { grid-template-columns: 1fr; }
  .px-about__visual { max-width: 520px; }
  .px-about__stat { left: 1rem; }
}
@media (max-width: 480px) { .px-why { grid-template-columns: 1fr; } }

/* ---------- 8. Portfolio ---------- */
.px-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.px-filters button {
  font-family: var(--px-font-head); font-weight: 500; font-size: .9rem; padding: .6rem 1.1rem; border-radius: 999px;
  border: 1.5px solid var(--px-line); background: #fff; color: var(--px-text-2); cursor: pointer; transition: all .2s; white-space: nowrap; flex: none;
}
.px-filters button:hover { border-color: var(--px-indigo); color: var(--px-indigo); }
.px-filters button.is-active { background: var(--px-indigo-deep); border-color: var(--px-indigo-deep); color: #fff; }
.px-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.px-project {
  background: #fff; border-radius: var(--px-radius); overflow: hidden; border: 1px solid var(--px-line);
  transition: transform .35s var(--px-ease), box-shadow .35s, opacity .3s;
}
.px-project.is-hidden { display: none; }
.px-project:hover { transform: translateY(-6px); box-shadow: var(--px-shadow); }
.px-project__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--px-tint); }
.px-project__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 6s linear; }
.px-project:hover .px-project__media img { object-position: bottom; transform: scale(1.02); }
.px-project__overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(30,27,75,0) 20%, rgba(30,27,75,.75) 100%);
  opacity: 0; transition: opacity .3s;
}
.px-project:hover .px-project__overlay, .px-project:focus-within .px-project__overlay { opacity: 1; }
.px-project__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.px-project__tag { font-size: .8rem; font-weight: 500; color: var(--px-emerald-deep); background: rgba(16,185,129,.1); padding: .25rem .65rem; border-radius: 999px; display: inline-block; margin-bottom: .45rem; }
.px-project h3 { font-size: 1.1rem; margin: 0; }
.px-project__go {
  flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--px-tint-2); color: var(--px-indigo); transition: background .2s, color .2s;
}
.px-project__go:hover { background: var(--px-indigo); color: #fff; }
.px-project__go svg { width: 18px; height: 18px; }
@media (max-width: 960px) { .px-projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .px-projects { grid-template-columns: 1fr; } .px-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .5rem; scrollbar-width: none; } .px-filters::-webkit-scrollbar { display: none; } }

/* ---------- 9. Testimonials ---------- */
.px-tsl { position: relative; }
.px-tsl__viewport { overflow: hidden; margin: 0 -.75rem; }
.px-tsl__track { display: flex; transition: transform .55s var(--px-ease); }
.px-tsl__slide { flex: 0 0 33.3333%; padding: .75rem; box-sizing: border-box; }
.px-review {
  background: #fff; border: 1px solid var(--px-line); border-radius: var(--px-radius); padding: 1.75rem; height: 100%;
  display: flex; flex-direction: column; box-sizing: border-box; position: relative;
}
.px-review__stars { display: flex; gap: .15rem; color: var(--px-emerald); margin-bottom: 1rem; }
.px-review__stars svg { width: 16px; height: 16px; }
.px-review__quote { color: var(--px-text-2); font-size: .98rem; flex: 1; margin-bottom: 1.5rem; }
.px-review__who { display: flex; align-items: center; gap: .85rem; }
.px-review__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; flex: none;
  background: linear-gradient(145deg, var(--px-indigo), var(--px-indigo-deep)); color: #fff;
  font-family: var(--px-font-head); font-weight: 600; font-size: .95rem;
}
.px-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.px-review__who strong { display: block; font-family: var(--px-font-head); font-weight: 600; font-size: .98rem; }
.px-review__who span { font-size: .85rem; color: var(--px-slate); }
.px-review__mark { position: absolute; top: 1.25rem; right: 1.5rem; width: 34px; height: 34px; color: var(--px-line); }
.px-tsl__nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.px-tsl__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--px-line); background: #fff; color: var(--px-indigo-deep);
  cursor: pointer; display: grid; place-items: center; transition: all .2s;
}
.px-tsl__btn:hover { background: var(--px-indigo); border-color: var(--px-indigo); color: #fff; }
.px-tsl__btn svg { width: 18px; height: 18px; }
.px-tsl__dots { display: flex; gap: .4rem; }
.px-tsl__dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: var(--px-line); padding: 0; cursor: pointer; transition: all .3s; }
.px-tsl__dots button.is-active { width: 24px; background: var(--px-emerald); }
@media (max-width: 960px) { .px-tsl__slide { flex-basis: 50%; } }
@media (max-width: 640px) { .px-tsl__slide { flex-basis: 100%; } }

/* ---------- 10. FAQ ---------- */
.px-faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.px-faq-wrap .px-head { margin-bottom: 1.5rem; }
.px-faq-aside { position: sticky; top: 110px; }
.px-faq { border-top: 1px solid var(--px-line); }
.px-faq__item { border-bottom: 1px solid var(--px-line); }
.px-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--px-font-head); font-weight: 500; font-size: 1.08rem; color: var(--px-text);
}
.px-faq__q:hover { color: var(--px-indigo); }
.px-faq__icon { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--px-tint-2); color: var(--px-indigo); display: grid; place-items: center; transition: transform .3s var(--px-ease), background .2s, color .2s; }
.px-faq__icon svg { width: 16px; height: 16px; }
.px-faq__item.is-open .px-faq__icon { transform: rotate(45deg); background: var(--px-indigo); color: #fff; }
.px-faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--px-ease); }
.px-faq__a > div { overflow: hidden; }
.px-faq__a p { color: var(--px-text-2); padding-bottom: 1.25rem; max-width: 62ch; }
.px-faq__item.is-open .px-faq__a { grid-template-rows: 1fr; }
@media (max-width: 860px) { .px-faq-wrap { grid-template-columns: 1fr; } .px-faq-aside { position: static; } }

/* ---------- 11. CTA band ---------- */
.px-cta {
  position: relative; overflow: hidden; border-radius: 28px; padding: clamp(2.5rem, 6vw, 4.5rem); color: #fff;
  background: radial-gradient(800px 400px at 100% 0%, rgba(16,185,129,.35), transparent 60%),
              linear-gradient(135deg, var(--px-indigo-deep), var(--px-indigo));
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.px-cta::after {
  content: ""; position: absolute; right: -6%; top: -30%; width: 46%; aspect-ratio: 1; opacity: .18;
  background: #fff; clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.px-cta > * { position: relative; z-index: 1; }
.px-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .75rem; }
.px-cta p { color: rgba(255,255,255,.8); max-width: 48ch; margin: 0; }
.px-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: flex-end; }
@media (max-width: 860px) { .px-cta { grid-template-columns: 1fr; } .px-cta__actions { justify-content: flex-start; } }

/* ---------- 12. Contact ---------- */
.px-contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.px-contact__cards { display: grid; gap: 1rem; margin-top: 1.5rem; }
.px-ccard { display: flex; gap: 1rem; align-items: center; padding: 1.1rem 1.25rem; background: #fff; border: 1px solid var(--px-line); border-radius: 16px; color: var(--px-text); transition: border-color .2s, box-shadow .2s; }
.px-ccard:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--px-shadow-sm); }
.px-ccard__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; background: var(--px-tint-2); color: var(--px-indigo); }
.px-ccard__icon--wa { background: rgba(16,185,129,.12); color: var(--px-emerald-deep); }
.px-ccard__icon svg { width: 22px; height: 22px; }
.px-ccard small { display: block; color: var(--px-slate); font-size: .82rem; }
.px-ccard strong { font-family: var(--px-font-head); font-weight: 500; font-size: 1rem; }
.px-form { background: #fff; border: 1px solid var(--px-line); border-radius: var(--px-radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--px-shadow-sm); }
.px-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.px-field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.px-field label { font-family: var(--px-font-head); font-weight: 500; font-size: .9rem; }
.px-field input, .px-field select, .px-field textarea {
  font: inherit; font-size: .97rem; color: var(--px-text); background: var(--px-tint); border: 1.5px solid transparent;
  border-radius: 12px; padding: .85rem 1rem; width: 100%; box-sizing: border-box; transition: border-color .2s, background .2s;
}
.px-field textarea { min-height: 130px; resize: vertical; }
.px-field input:focus, .px-field select:focus, .px-field textarea:focus { outline: none; border-color: var(--px-indigo); background: #fff; }
.px-form__note { font-size: .85rem; color: var(--px-slate); margin: .75rem 0 0; }
.px-form__status { display: none; margin-top: 1rem; padding: .85rem 1rem; border-radius: 12px; background: rgba(16,185,129,.12); color: var(--px-emerald-deep); font-weight: 500; }
.px-form__status.is-visible { display: block; }
@media (max-width: 900px) { .px-contact { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .px-form__row { grid-template-columns: 1fr; } }

/* ---------- 13. Footer ---------- */
.px-footer { background: var(--px-indigo-ink); color: rgba(255,255,255,.72); padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.px-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--px-line-dark); }
.px-footer__brand img, .px-footer__brand svg { height: 48px; width: auto; margin-bottom: 1.25rem; }
.px-footer__brand p { max-width: 36ch; font-size: .95rem; }
.px-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.px-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .95rem; }
.px-footer a { color: rgba(255,255,255,.72); transition: color .2s; }
.px-footer a:hover { color: #fff; }
.px-footer__social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.px-footer__social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--px-line-dark); }
.px-footer__social a:hover { background: var(--px-indigo); border-color: var(--px-indigo); }
.px-footer__social svg { width: 18px; height: 18px; }
.px-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; padding: 1.5rem 0; font-size: .88rem; color: var(--px-slate-light); }
@media (max-width: 960px) { .px-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .px-footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Floating WhatsApp */
.px-wa {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  background: var(--px-emerald); color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 30px -10px rgba(16,185,129,.8); transition: transform .25s var(--px-ease), background .2s;
}
.px-wa:hover { transform: translateY(-3px) scale(1.04); background: var(--px-emerald-deep); color: #fff; }
.px-wa svg { width: 26px; height: 26px; }

/* ---------- 14. Elementor helpers ----------
   Apply these to Elementor containers via Advanced → CSS Classes when
   you'd rather use native widgets than the HTML snippets. */
.px-el-section { padding: clamp(4rem, 8vw, 7rem) 0; }
.px-el-tint { background: var(--px-tint); }
.px-el-dark { background: var(--px-indigo-ink); }
.px-el-card { background: #fff; border: 1px solid var(--px-line); border-radius: var(--px-radius); box-shadow: none; transition: border-color .3s, box-shadow .3s, transform .3s var(--px-ease); }
.px-el-card:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--px-shadow); transform: translateY(-4px); }

/* ==========================================================================
   15. WORDPRESS + ELEMENTOR COMPATIBILITY LAYER
   --------------------------------------------------------------------------
   Additive only — does not change any design value above. Its job is to stop
   the active theme / Elementor default wrappers from adding margins, padding
   or widths that would shift the original design. Every rule is scoped so it
   only affects our own Plexoraa markup (.px-* blocks) or the Elementor
   containers we tag with .px-el-wrap.
   ========================================================================== */

/* When our HTML blocks sit inside an Elementor HTML widget, Elementor wraps
   them in .elementor-widget-html .elementor-widget-container — strip its
   spacing so our sections butt together exactly like the static site. */
.elementor-widget-html .elementor-widget-container { margin: 0; padding: 0; }
.elementor-widget-html .px-header,
.elementor-widget-html .px-hero,
.elementor-widget-html .px-section,
.elementor-widget-html .px-footer { margin: 0; }

/* Let our full-bleed sections ignore Elementor's boxed content width. */
.px-el-wrap > .elementor-container,
.px-el-wrap > .e-con-inner { max-width: none !important; padding: 0 !important; }

/* Neutralise theme link underlines / colors leaking into our markup. */
.px-body a { text-decoration: none; }

/* Some themes force a max-width on images; our design manages image sizing. */
.px-body img { max-width: 100%; height: auto; }

/* Ensure our fixed header sits above Elementor's admin bar offset cleanly. */
body.admin-bar .px-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .px-header { top: 46px; } }

/* Guarantee our base body styles win even if the theme sets its own on <body>.
   (The JS adds .px-body to <body>; these mirror the base block for safety.) */
body.px-body { margin: 0; font-family: var(--px-font-body); color: var(--px-text); background: var(--px-white); line-height: 1.65; overflow-x: hidden; }

/* Hide the theme's own header/footer if it renders alongside ours.
   Uncomment ONE approach in setup if your theme shows a duplicate header.
   (Left commented so it never hides something unexpectedly.)
   header.site-header, footer.site-footer { display: none !important; }
*/

/* ==========================================================================
   16. PART F — NATIVE ELEMENTOR WRAPPER COMPATIBILITY
   --------------------------------------------------------------------------
   Additive + scoped. Lets you rebuild Services / About / CTA / Contact with
   NATIVE Elementor widgets (for full visual editing) while keeping the exact
   original look. It only neutralises the extra spacing Elementor's widget
   wrappers introduce, and re-adds the "Get a quote" arrow on button widgets.
   None of the original design values above are changed.
   Apply the CSS classes named in INSTALL-AND-EDIT-GUIDE.md → PART F.
   ========================================================================== */

/* Make each Elementor widget fill the card/column width. */
.px-service > .elementor-element,
.px-service > .elementor-widget,
.px-about__body > .elementor-element,
.px-about__body > .elementor-widget { width: 100%; }

/* Remove Elementor's default widget gaps inside our components so the
   original padding/rhythm shows through unchanged. */
.px-service .elementor-widget,
.px-why__item .elementor-widget { margin-bottom: 0; }
.px-service .elementor-widget-container,
.px-why__item .elementor-widget-container { margin: 0; padding: 0; }

/* Keep the service card's quote link pinned to the bottom (original used
   margin-top:auto on the link; with a wrapper we move it to the wrapper). */
.px-service .elementor-widget-button { margin-top: auto; }
.px-service .elementor-widget-button a,
.px-service .elementor-widget-button .px-service__link { margin-top: 0; }

/* Re-add the arrow icon after a service "Get a quote" link built with the
   Elementor Button widget. Add CSS class "px-needs-arrow" to that button. */
.px-service__link.px-needs-arrow { display: inline-flex; align-items: center; gap: .4rem; }
.px-service__link.px-needs-arrow::after {
  content: ""; width: 16px; height: 16px; flex: none; background: currentColor;
  -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12h14M13 6l6 6-6 6'/></svg>");
  transition: transform .25s var(--px-ease);
}
.px-service__link.px-needs-arrow:hover::after { transform: translateX(3px); }

/* About: when the stat card is a separate Elementor widget layered on the
   image, allow absolute positioning to still work inside a wrapper. */
.px-about__visual .elementor-widget-image { position: static; }
