/* =========================================================
   BPT Revamp — unique layouts (home chrome + inner pages)
   Purple house: #1A0F3D / #6B3AED / #F3F0FF
   ========================================================= */
:root {
  --bpt-ink: #120A2E;
  --bpt-deep: #1A0F3D;
  --bpt-violet: #6B3AED;
  --bpt-violet-dark: #5521C9;
  --bpt-paper: #F3F0FF;
  --bpt-mist: #E8E2FF;
  --bpt-cream: #FAF8FF;
  --bpt-line: rgba(26, 15, 61, 0.12);
  --bpt-serif: "Fraunces", Georgia, serif;
  --bpt-sans: "Manrope", "Segoe UI", sans-serif;
}

body {
  font-family: var(--bpt-sans);
}

/* ---------- Contact ---------- */
.bpt-contact {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(107, 58, 237, 0.35), transparent 55%),
    linear-gradient(145deg, #120A2E 0%, #1A0F3D 45%, #2A1658 100%);
  color: #fff;
  overflow: hidden;
}
.bpt-contact::after {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(107, 58, 237, 0.45), transparent 65%);
  pointer-events: none;
}
.bpt-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.bpt-contact__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C4B5FD;
  margin-bottom: 0.85rem;
}
.bpt-contact__title {
  font-family: var(--bpt-serif);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #fff;
}
.bpt-contact__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}
.bpt-contact__call {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.bpt-contact__call:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.bpt-contact__call span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}
.bpt-contact__call strong {
  font-size: 1.25rem;
  font-weight: 700;
}
.bpt-contact__panel {
  background: #fff;
  color: var(--bpt-ink);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.bpt-contact__panel-title {
  font-family: var(--bpt-serif);
  font-size: 1.55rem;
  margin: 0 0 0.35rem;
  color: var(--bpt-deep);
}
.bpt-contact__panel-lead {
  margin: 0 0 1.25rem;
  color: #4B4563;
  font-size: 0.95rem;
}
.bpt-contact__form {
  display: grid;
  gap: 0.85rem;
}
.bpt-contact__field {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}
.bpt-contact__field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6580;
}
.bpt-contact__field input,
.bpt-contact__field textarea {
  width: 100%;
  border: 1px solid var(--bpt-line);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--bpt-ink);
  background: var(--bpt-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bpt-contact__field input:focus,
.bpt-contact__field textarea:focus {
  outline: none;
  border-color: var(--bpt-violet);
  box-shadow: 0 0 0 3px rgba(107, 58, 237, 0.18);
}
.bpt-contact__submit {
  margin-top: 0.35rem;
  border: 0;
  border-radius: 4px;
  padding: 0.95rem 1.25rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--bpt-violet), var(--bpt-violet-dark));
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.bpt-contact__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.bpt-footer {
  background: #0C071C;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.bpt-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bpt-footer__logo img {
  width: min(280px, 72%);
  max-width: 320px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.bpt-footer__tagline {
  max-width: 22rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}
.bpt-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.bpt-footer__contact a {
  color: #E9E4FF;
  text-decoration: none;
  font-weight: 600;
}
.bpt-footer__contact a:hover { color: #fff; }
.bpt-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bpt-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.bpt-footer__col h4 {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #A78BFA;
  font-weight: 700;
}
.bpt-footer__col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}
.bpt-footer__col a:hover { color: #fff; }
.bpt-footer__bottom {
  padding-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.bpt-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.bpt-footer__legal a {
  color: #C4B5FD;
  text-decoration: none;
  font-size: 0.88rem;
}
.bpt-footer__addr,
.bpt-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================================================
   INNER PAGES — same layouts, new skin (not Mastro)
   ========================================================= */
body:not(.page-bpt) {
  background: var(--bpt-cream);
  font-family: var(--bpt-sans);
}

body:not(.page-bpt) .heading {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

/* Dark bands: force light headings (overrides global .heading) */
body:not(.page-bpt) .updatesSection .heading,
body:not(.page-bpt) .updatesSection h2,
body:not(.page-bpt) .updatesSection .heading.text-white,
body:not(.page-bpt) .ctaSection .heading,
body:not(.page-bpt) .ctaSection h2,
body:not(.page-bpt) .ctaSection .heading.text-white {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Banner: editorial light + floating panel form */
.innerBanner {
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(107, 58, 237, 0.18), transparent 55%),
    linear-gradient(165deg, #F8F5FF 0%, #EDE7FF 48%, #DCD2FF 100%) !important;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem !important;
  position: relative;
  overflow: hidden;
  color: #120A2E !important;
}
.innerBanner::before {
  display: none !important;
  content: none !important;
}
.innerBanner .heading,
.innerBanner h2.heading,
.innerBanner .col-md-7 .heading,
.innerBanner .col-md-7 h2 {
  font-family: var(--bpt-serif) !important;
  color: #120A2E !important;
  -webkit-text-fill-color: #120A2E !important;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem) !important;
  line-height: 1.35 !important;
  font-weight: 700 !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  margin-bottom: 1rem !important;
}
.innerBanner .heading .char,
.innerBanner .heading span {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  letter-spacing: normal !important;
  display: inline !important;
}
.innerBanner .heading strong {
  color: #6B3AED !important;
  -webkit-text-fill-color: #6B3AED !important;
  font-weight: 700 !important;
}
.innerBanner .col-md-7 p,
.innerBanner p {
  color: #3F3A55 !important;
  -webkit-text-fill-color: #3F3A55 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  max-width: 36rem;
  opacity: 1 !important;
}
.innerBanner .btnRequest {
  background: linear-gradient(135deg, var(--bpt-violet), var(--bpt-violet-dark)) !important;
  border: 0 !important;
  border-radius: 4px !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(107, 58, 237, 0.35) !important;
  padding: 0.9rem 1.4rem !important;
  font-family: var(--bpt-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: none !important;
}
.innerBanner .btnRequest {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.innerBanner .btnRequest svg {
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  margin: 0 !important;
  padding: 0 !important;
  right: auto !important;
  top: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: #fff !important;
  flex-shrink: 0;
}
.innerBanner .btnRequest svg path {
  fill: currentColor !important;
}

.bannerForm {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.bannerForm > h3 {
  display: none !important;
}
.bannerForm .formWrap {
  background: var(--bpt-deep) !important;
  border-radius: 8px !important;
  padding: 1.5rem 1.35rem 1.35rem !important;
  box-shadow: 0 24px 50px rgba(18, 10, 46, 0.35) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bannerForm .formWrap h5 {
  font-family: var(--bpt-serif) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 1.35rem !important;
  margin-bottom: 0.25rem !important;
  text-align: left !important;
}
.bannerForm .formWrap > p,
.bannerForm .formWrap p {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-align: left !important;
  margin-bottom: 1rem !important;
  opacity: 1 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}
.bannerForm .formWrap > p strong,
.bannerForm .formWrap p strong {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 800 !important;
}
.bannerForm .formFields {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 4px !important;
  margin-bottom: 0.65rem !important;
}
.bannerForm .formFields img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.bannerForm .formFields input {
  background: transparent !important;
  color: #fff !important;
}
.bannerForm .formFields input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.bannerForm .btnRequest {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.reviewManinHeader { display: none !important; }

/* —— World / intro (keep 8/4 cols) —— */
.worldSection {
  background: #fff !important;
  padding: clamp(3.5rem, 7vw, 5rem) 0 !important;
  position: relative;
}
.worldSection::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--bpt-violet), transparent);
}
.worldSection .heading {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem) !important;
  line-height: 1.35 !important;
  margin-bottom: 1.15rem !important;
}
.worldSection p { color: #4B4563 !important; line-height: 1.65 !important; }
.worldSection .btnRequest {
  background: var(--bpt-violet) !important;
  border-radius: 4px !important;
  border: 0 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.worldSection .btnRequest {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.worldSection .btnRequest svg {
  display: inline-block !important;
  width: 0.95rem !important;
  height: 0.95rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #fff !important;
}
.worldSection .btnRequest svg path { fill: currentColor !important; }
.worldSection .phoneBtn {
  background: var(--bpt-paper) !important;
  border-radius: 4px !important;
  padding: 0.65rem 1rem !important;
  border: 1px solid var(--bpt-line) !important;
  color: var(--bpt-deep) !important;
  align-items: center !important;
}
.worldSection .phoneBtn a { color: var(--bpt-deep) !important; font-weight: 700; }
.worldSection .phoneBtn svg {
  background: #6B3AED !important;
  color: #fff !important;
  width: 46px !important;
  height: 46px !important;
  padding: 12px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
}
.worldSection .phoneBtn svg path { fill: #fff !important; }
.worldSection .phoneBtn .smallTitleLine {
  padding-left: 2.6rem !important;
  color: var(--bpt-deep) !important;
}
.worldSection .phoneBtn .smallTitleLine:before {
  background: #6B3AED !important;
}
.worldSection .col-md-4 img {
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(18, 10, 46, 0.15);
  width: 100%;
  height: clamp(260px, 36vw, 420px);
  object-fit: cover;
  object-position: center;
}

/* —— Services tabs: ORIGINAL left list + right panel —— */
.innerServices {
  background:
    linear-gradient(180deg, var(--bpt-paper) 0%, #fff 100%) !important;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
}
.innerServices > .container > .heading {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  text-align: left !important;
  max-width: 36rem;
  margin-bottom: 1.15rem !important;
  line-height: 1.35 !important;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem) !important;
}
.innerServices > .container > p {
  max-width: 44rem;
  margin-bottom: 2.25rem !important;
  color: #4B4563 !important;
}
.innerServices .row.no-gutters {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;
  border: 1px solid var(--bpt-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 10, 46, 0.06);
}
.innerServices .col-md-6 {
  width: 50% !important;
  max-width: 50% !important;
  flex: 0 0 50% !important;
}
.custom-tab-list-ghost {
  background: #F7F4FF !important;
  padding: 1rem 0.75rem !important;
  height: 100%;
  border-right: 1px solid var(--bpt-line);
}
.custom-tab-list-ghost .nav-tabs {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem;
  border: 0 !important;
}
.custom-tab-list-ghost .nav-item {
  width: 100% !important;
  margin: 0 !important;
  padding-bottom: 0 !important;
}
.custom-tab-list-ghost .nav-link {
  display: flex !important;
  gap: 0.9rem;
  align-items: flex-start;
  background: transparent !important;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 0.95rem 1rem !important;
  color: var(--bpt-ink) !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.custom-tab-list-ghost .nav-link.active,
.custom-tab-list-ghost .nav-link:hover {
  background: #fff !important;
  box-shadow: 0 6px 18px rgba(107, 58, 237, 0.1) !important;
}
.custom-tab-list-ghost .nav-link.active {
  outline: 1px solid rgba(107, 58, 237, 0.35);
}
.custom-tab-list-ghost .tabsicon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bpt-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.custom-tab-list-ghost .tabsicon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.custom-tab-list-ghost .tabTitle {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  font-size: 1.05rem !important;
  line-height: 1.25 !important;
  display: block;
  margin-bottom: 0.25rem !important;
}
.custom-tab-list-ghost .tabsContent p {
  color: #5B5670 !important;
  margin: 0 !important;
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Right detail panel — show again, new look */
.ghostdetails,
.innerServices .tab-content {
  display: block !important;
}
.ghostdetails {
  background: #fff !important;
  padding: clamp(1.5rem, 3vw, 2.25rem) !important;
  border-radius: 0 !important;
  height: 100%;
}
.ghostdetails .tab-content {
  padding: 0 !important;
}
.ghostdetails h4 {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  font-size: 1.15rem !important;
  margin: 1.25rem 0 0.35rem !important;
  padding-left: 0.85rem;
  border-left: 3px solid var(--bpt-violet);
}
.ghostdetails h4:first-child {
  margin-top: 0 !important;
}
.ghostdetails p {
  color: #4B4563 !important;
  line-height: 1.6 !important;
  margin: 0 0 0.35rem !important;
  padding-left: 0.85rem;
}

/* —— Updates band —— */
.updatesSection {
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(107, 58, 237, 0.35), transparent 55%),
    linear-gradient(120deg, #120A2E 0%, #1A0F3D 55%, #2A1658 100%) !important;
  padding: clamp(3rem, 6vw, 4.5rem) 0 !important;
}
.updatesSection .heading,
.updatesSection h2 {
  font-family: var(--bpt-serif) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.updatesSection p {
  color: rgba(255, 255, 255, 0.82) !important;
  line-height: 1.65 !important;
}
.updatesSection p strong,
.updatesSection p strong span {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
.updatesSection .btnRequest {
  background: #fff !important;
  color: #1A0F3D !important;
  -webkit-text-fill-color: #1A0F3D !important;
  border-radius: 4px !important;
  border: 0 !important;
  font-weight: 700 !important;
}
.updatesSection .btnRequest {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.updatesSection .btnRequest svg {
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  width: 0.95rem !important;
  height: 0.95rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #1A0F3D !important;
}
.updatesSection .btnRequest svg path { fill: #1A0F3D !important; }
.updatesSection img {
  border-radius: 8px;
  width: 100%;
  height: clamp(240px, 34vw, 400px) !important;
  object-fit: cover !important;
  object-position: center !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* —— CTA band (different from updates) —— */
.ctaSection {
  background: #0C071C !important;
  padding: clamp(2.25rem, 4vw, 3rem) 0 !important;
  border-top: 1px solid rgba(167, 139, 250, 0.25);
}
.ctaSection .heading,
.ctaSection h2 {
  font-family: var(--bpt-serif) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem) !important;
}
.ctaSection p { color: rgba(255, 255, 255, 0.7) !important; }
.ctaSection .btnRequest {
  background: var(--bpt-violet) !important;
  color: #fff !important;
  border-radius: 4px !important;
  border: 0 !important;
}
.ctaSection .btnRequest {
  display: inline-flex !important;
  align-items: center;
  gap: 0.55rem;
}
.ctaSection .btnRequest svg {
  display: inline-block !important;
  width: 0.95rem !important;
  height: 0.95rem !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: #fff !important;
}
.ctaSection .btnRequest svg path { fill: currentColor !important; }
.ctaSection .phoneBtn {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0.55rem 0.9rem;
}
.ctaSection .phoneBtn a { color: #fff !important; }
.ctaSection .smallTitleLine { color: #C4B5FD !important; }
.ctaSection .smallTitleLine:before { background: #C4B5FD !important; }
.ctaSection .border-left {
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* —— About / more services (keep 8/4 + 2-col list) —— */
.aboutSection {
  background: #fff !important;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 !important;
}
.aboutSection .heading {
  font-family: var(--bpt-serif) !important;
  color: var(--bpt-deep) !important;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
  max-width: 22ch;
}
.aboutSection p {
  color: #4B4563 !important;
  line-height: 1.65 !important;
  max-width: 40rem;
}
.aboutList ul {
  column-count: 2 !important;
  column-gap: 1rem !important;
  padding: 0 !important;
  margin-top: 1.75rem !important;
  list-style: none !important;
}
.aboutList ul li {
  break-inside: avoid;
  margin-bottom: 0.75rem !important;
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem !important;
  background: var(--bpt-cream) !important;
  border: 1px solid var(--bpt-line) !important;
  border-radius: 6px !important;
  border-left: 3px solid var(--bpt-violet) !important;
  color: var(--bpt-deep) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
.aboutList ul li img {
  display: none !important; /* drop Mastro cyan arrows */
}
.aboutList ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--bpt-violet);
  flex-shrink: 0;
}
.aboutSection .col-md-4 img,
.aboutSection .col-md-6 img,
.aboutSection img.img-fluid {
  border-radius: 8px;
  width: 100%;
  height: clamp(280px, 40vw, 440px);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 40px rgba(18, 10, 46, 0.12);
}
.aboutList ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.aboutList li {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  margin: 0 !important;
  padding: 0.75rem 0.9rem !important;
  background: #F3F0FF !important;
  border: 1px solid rgba(107, 58, 237, 0.18) !important;
  border-left: 3px solid #6B3AED !important;
  border-radius: 0.55rem !important;
  color: #1A0F3D !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
}
.aboutList li img {
  width: 14px !important;
  height: 14px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  filter: none !important;
}
@media (max-width: 640px) {
  .aboutList ul { grid-template-columns: 1fr; }
}

/* Global button cleanup on inner */
body:not(.page-bpt) .btnRequest {
  border-radius: 4px !important;
  text-transform: none !important;
  font-family: var(--bpt-sans) !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.55rem !important;
  padding-right: 1.35rem !important;
}
body:not(.page-bpt) .btnRequest svg {
  display: inline-block !important;
  position: static !important;
  transform: none !important;
  width: 1.05rem !important;
  height: 1.05rem !important;
  margin: 0 !important;
  padding: 0 !important;
  right: auto !important;
  top: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: inherit !important;
  flex-shrink: 0;
}
body:not(.page-bpt) .btnRequest svg path {
  fill: currentColor !important;
}
body:not(.page-bpt) .btnRequest.chat {
  cursor: pointer;
}

/* Platform include on inner pages */
.bpt-plat-band {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  background: var(--bpt-paper);
  text-align: center;
}
.bpt-plat-band__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bpt-violet);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.bpt-plat-band__title {
  font-family: var(--bpt-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--bpt-deep);
  margin: 0 0 0.5rem;
}
.bpt-plat-band__lead {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: #4B4563;
}
.bpt-plat-band__logos img {
  max-width: 100%;
  height: auto;
}

/* Hide legacy chrome if old markup ever reappears */
.main-footer,
.contactSection { display: none !important; }

/* Process + hero typography alignment */
.bpt-process .bpt-title,
.bpt-hero__title {
  font-family: var(--bpt-serif);
}
.page-bpt {
  font-family: var(--bpt-sans);
}

/* Responsive */
@media (max-width: 991px) {
  .bpt-contact__grid,
  .bpt-footer__top,
  .bpt-shelf__rail,
  .bpt-story__split,
  .bpt-offer__layout,
  .bpt-atelier__inner,
  .bpt-ask__layout,
  .bpt-reasons__band {
    grid-template-columns: 1fr;
  }
  .bpt-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
  .bpt-offer__list {
    grid-template-columns: 1fr;
  }
  .bpt-offer__list li:nth-child(even) {
    padding-left: 0;
  }
  .bpt-reasons__grid {
    grid-template-columns: 1fr 1fr;
  }
  .innerServices .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .custom-tab-list-ghost {
    border-right: 0 !important;
    border-bottom: 1px solid var(--bpt-line);
  }
  .aboutList ul {
    column-count: 1 !important;
  }
  .ctaSection .border-left {
    border-left: 0 !important;
    margin-top: 1.5rem;
  }
  .bpt-shelf__track {
    animation-duration: 55s;
  }
  .bpt-atelier__inset {
    justify-self: start;
  }
  .bpt-story__media::after { display: none; }
}
@media (max-width: 640px) {
  .bpt-reasons__grid,
  .bpt-footer__nav {
    grid-template-columns: 1fr;
  }
  .bpt-shelf__item {
    width: 110px;
  }
  .bpt-shelf__item img { height: 165px; }
}

.bpt-shelf {
  background: var(--bpt-cream);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}
.bpt-shelf__rail {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2rem;
  align-items: center;
  width: min(1400px, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.bpt-shelf__kicker,
.bpt-offer__kicker,
.bpt-atelier__kicker,
.bpt-reach__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bpt-violet);
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.bpt-shelf__title {
  font-family: var(--bpt-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--bpt-deep);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.bpt-shelf__text {
  margin: 0;
  color: #4B4563;
  line-height: 1.6;
}
.bpt-shelf__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  animation: bptShelf 42s linear infinite;
}
.bpt-shelf__track:hover { animation-play-state: paused; }
.bpt-shelf__item {
  margin: 0;
  flex: 0 0 auto;
  width: 140px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18, 10, 46, 0.18);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}
.bpt-shelf__item:nth-child(even) { transform: rotate(2deg); }
.bpt-shelf__item:hover { transform: rotate(0deg) translateY(-6px) scale(1.04); }
.bpt-shelf__item img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
@keyframes bptShelf {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Home: story ---------- */
.bpt-story {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--bpt-paper) 100%);
}
.bpt-story__quote {
  font-family: var(--bpt-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.3;
  color: var(--bpt-deep);
  max-width: 40rem;
  margin: 0 0 2.75rem;
  border: 0;
  padding: 0;
  position: relative;
}
.bpt-story__quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--bpt-violet);
  margin-bottom: 1.25rem;
}
.bpt-story__split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.bpt-story__media {
  position: relative;
}
.bpt-story__media::after {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 18%;
  border: 2px solid var(--bpt-violet);
  z-index: 0;
  pointer-events: none;
}
.bpt-story__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(320px, 42vw, 480px);
  object-fit: cover;
  display: block;
}
.bpt-story__copy h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  color: var(--bpt-deep);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.bpt-story__copy p {
  color: #4B4563;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.bpt-story__points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.65rem;
}
.bpt-story__points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--bpt-ink);
  font-weight: 500;
}
.bpt-story__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--bpt-violet);
  border-radius: 1px;
}
.bpt-story__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.bpt-story__phone {
  font-weight: 700;
  color: var(--bpt-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--bpt-violet);
  padding-bottom: 2px;
}

/* ---------- Home: offer list ---------- */
.bpt-offer {
  background: var(--bpt-deep);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.bpt-offer__layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.bpt-offer__kicker { color: #C4B5FD; }
.bpt-offer__head h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
  color: #fff;
}
.bpt-offer__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.bpt-offer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.bpt-offer__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1rem 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.bpt-offer__list li:nth-child(even) {
  padding-left: 1.25rem;
  border-right: 0;
}
.bpt-offer__list span {
  font-family: var(--bpt-serif);
  font-size: 1.35rem;
  color: #A78BFA;
  line-height: 1;
}
.bpt-offer__list h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #fff;
}
.bpt-offer__list p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.bpt-offer__cta {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
}

/* ---------- Home: atelier ---------- */
.bpt-atelier {
  position: relative;
  min-height: clamp(420px, 55vw, 560px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.bpt-atelier__bg {
  position: absolute;
  inset: 0;
}
.bpt-atelier__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.85);
}
.bpt-atelier__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 10, 46, 0.88) 0%, rgba(18, 10, 46, 0.45) 55%, rgba(18, 10, 46, 0.2) 100%);
}
.bpt-atelier__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.bpt-atelier__kicker { color: #C4B5FD; }
.bpt-atelier__panel h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
  max-width: 18ch;
}
.bpt-atelier__panel p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 34rem;
}
.bpt-atelier__inset {
  margin: 0;
  justify-self: end;
  width: min(280px, 100%);
  border: 3px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.bpt-atelier__inset img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ---------- Home: reach ---------- */
.bpt-reach {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: #fff;
  border-block: 1px solid var(--bpt-mist);
}
.bpt-reach__head {
  text-align: left;
  margin-bottom: 1.75rem;
}
.bpt-reach__head h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--bpt-deep);
  margin: 0;
}
.bpt-reach__strip {
  background: var(--bpt-paper);
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
}
.bpt-reach__strip img {
  display: block;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  height: auto;
}

/* ---------- Home: ask (FAQ) ---------- */
.bpt-ask {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bpt-paper);
}
.bpt-ask__layout {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.bpt-ask__intro h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.25rem);
  color: var(--bpt-deep);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}
.bpt-ask__intro p {
  color: #4B4563;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.bpt-ask__list {
  display: grid;
  gap: 0.65rem;
}
.bpt-ask__item {
  background: #fff;
  border: 1px solid var(--bpt-line);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.bpt-ask__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  font-weight: 650;
  color: var(--bpt-deep);
  font-size: 1.02rem;
}
.bpt-ask__item summary::-webkit-details-marker { display: none; }
.bpt-ask__item summary span {
  font-family: var(--bpt-serif);
  color: var(--bpt-violet);
  min-width: 1.6rem;
}
.bpt-ask__item[open] summary {
  background: rgba(107, 58, 237, 0.06);
}
.bpt-ask__item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem 3.6rem;
  color: #4B4563;
  line-height: 1.6;
}

/* ---------- Home: reasons ---------- */
.bpt-reasons {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #fff;
}
.bpt-reasons__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.bpt-reasons__head h2 {
  font-family: var(--bpt-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: var(--bpt-deep);
  margin: 0 0 0.65rem;
}
.bpt-reasons__head p {
  margin: 0;
  color: #4B4563;
}
.bpt-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.bpt-reasons__card {
  padding: 1.35rem 1.25rem;
  background: var(--bpt-cream);
  border-left: 3px solid var(--bpt-violet);
}
.bpt-reasons__card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--bpt-deep);
}
.bpt-reasons__card p {
  margin: 0;
  color: #4B4563;
  font-size: 0.94rem;
  line-height: 1.55;
}
.bpt-reasons__band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--bpt-deep);
  overflow: hidden;
  min-height: 260px;
}
.bpt-reasons__band-copy {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.bpt-reasons__band-copy p {
  margin: 0;
  font-family: var(--bpt-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: #fff;
  line-height: 1.3;
}
.bpt-reasons__band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}
