/* =========================
   BASE
   ========================= */

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.row > * {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  width: 100%;
}

/* Base columns (mobile first) */
.col-12 { width: 100%; }

/* Medium breakpoint (≥768px) */
@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
  .col-md-12 { width: 100%; }
}

/* Optional: more sizes if you need them */
@media (min-width: 768px) {
  .col-md-4 { width: 33.3333%; }
  .col-md-3 { width: 25%; }
  .col-md-8 { width: 66.6667%; }
}

:root {
  --color-primary: #623ee7;
  --color-primary-dark: #4f31c4;
  --color-green-start: #08c577;
  --color-green-end: #30dd95;
  --color-text: #2a3b6c;
  --color-text-soft: #5b6475;
  --color-bg-soft: #f7f9fc;
  --color-bg-purple-soft: #f6f4ff;
  --color-border: #e6eaf2;
  --color-white: #ffffff;
  --header-height: 88px;
  --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 0 15px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container-width: 1400px;
  --wide-rail-width: 1400px;
}

:root[data-theme="dark"] {
  --color-primary: #9b7cff;
  --color-primary-dark: #b69cff;
  --color-green-start: #1ad598;
  --color-green-end: #59e8b4;
  --color-text: #eef2ff;
  --color-text-soft: #b8c0d9;
  --color-bg-soft: #0f1728;
  --color-bg-purple-soft: #151028;
  --color-border: rgba(255, 255, 255, 0.10);
  --color-white: #0f1728;
  --shadow-soft: 0 14px 32px rgba(0, 0, 0, 0.40);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html[data-anchor-pending="true"] body {
  visibility: hidden;
}

section[id],
footer[id] {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
    max-width: 1400px;
  margin: 0 auto;
}

h1{
    font-family: 'Uniform', sans-serif;
    font-size: clamp(1rem, 7vw, 2.5rem);
}

@font-face {
    font-family: 'Uniform';
    src: url('../fonts/Uniform/Uniform-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Uniform';
    src: url('../fonts/Uniform/Uniform.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Uniform';
    src: url('../fonts/Uniform/Uniform-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Uniform';
    src: url('../fonts/Uniform/Uniform-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Uniform';
    src: url('../fonts/Uniform/Uniform-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 197, 119, 0.18);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: #ddd;
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}


/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--color-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.header-logo img {
margin-top:6px;
  max-height: 48px;
}

.theme-logo-pair {
  display: inline-flex;
  align-items: center;
}

.theme-logo {
  max-height: 48px;
}

.theme-logo-light,
.theme-logo-dark {
  display: none;
}

html[data-theme="light"] .theme-logo-light {
  display: block;
}

html[data-theme="dark"] .theme-logo-dark {
  display: block;
}

.header-nav {
  display: flex;
  justify-content: center;
}

.nav-list {
    font-family: 'Uniform', sans-serif;
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
    font-size: 17px;
    font-weight: 500;
  color: var(--color-text);
  position: relative;
}

.nav-list a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   HERO
   ========================= */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 62px 20px 80px;
  background:
    radial-gradient(circle at top center, rgba(98, 62, 231, 0.10), transparent 35%),
    linear-gradient(to bottom, #ffffff 0%, #f7f9fc 100%);
}

.hero-section-has-video {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.78) 0%, rgba(247, 249, 252, 0.86) 100%);
}

.hero-video-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  display: none;
  background-image: var(--hero-video-fallback-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--hero-video-overlay-color, 255, 255, 255), var(--hero-video-overlay-opacity, 0));
}

.hero-video-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section > .container,
.hero-section .hero-top-grid {
  position: relative;
  z-index: 1;
}

.hero-ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 0 auto;
  color: #2a3b6c;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-ai-badge__icon {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

:root[data-theme="light"] .hero-video-layer-light,
:root:not([data-theme]) .hero-video-layer-light,
:root[data-theme="dark"] .hero-video-layer-dark {
  display: block;
}

.hero-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 440px);
  align-items: center;
  gap: 46px;
  margin: 0 auto;
  max-width: 1300px;
}

.hero-content {
  max-width: 700px;
  text-align: left;
}

.hero-top-badges {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  margin: 0;
  padding: 10px 22px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #e4e0ff;
  color: #2a3b6c;
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
    margin: 20px 0 30px;
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1.06;
    color: #2a3b6c;
    font-family: 'Uniform', sans-serif;
}

.hero-text {
max-width: 720px;
    margin: 0 0 40px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.hero-pricing-card {
  width: 100%;
  padding: 26px 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e8e4ff;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(98, 62, 231, 0.10);
  backdrop-filter: blur(10px);
}

.hero-pricing-kicker {
  margin: 0 0 15px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero-pricing-kicker span {
  color: var(--color-green-start);
}

.hero-pricing-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.hero-pricing-amount {
  font-family: 'Uniform', sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  color: #2a3b6c;
font-weight:bold;
}

.hero-pricing-period {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.hero-pricing-extra {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-soft);
}

.hero-pricing-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.hero-pricing-points li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.hero-pricing-points li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual-wrap {
  margin-top: 56px;
}

.hero-visual {
  position: relative;
    max-width: 1070px;
  margin: 0 auto;
}

.hero-integrations-mobile {
  display: none;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.hero-integrations-mobile > li {
  list-style: none;
}

.hero-integrations-mobile > li + li {
  margin-top: 12px;
}

.hero-integrations-mobile-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0,0,0,.05);
}

.hero-integrations-mobile-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  justify-self: center;
}

.hero-integrations-mobile-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.hero-integrations-mobile-link {
  color: inherit;
  display: grid;
  text-decoration: none;
}

.hero-integrations-mobile-link:focus-visible {
  outline: 3px solid rgba(98, 62, 231, 0.35);
  outline-offset: 4px;
}


/* =========================
   HERO APP IMAGE
   ========================= */

.hero-app-card {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  margin: 0 auto;
  overflow: hidden;
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.hero-app-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}


/* =========================
   INTEGRATION ICONS
   ========================= */

.integration-icon {
  position: absolute;
  z-index: 5;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

a.integration-icon {
  color: inherit;
  text-decoration: none;
}

a.integration-icon:focus-visible {
  outline: 3px solid rgba(98, 62, 231, 0.35);
  outline-offset: 4px;
}

.integration-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #623ee7;
  color: #fff;
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.integration-icon::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #623ee7;
  z-index: 1000;
  opacity: 0;
  transition: opacity .2s ease;
}

.integration-icon:hover::after,
.integration-icon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.integration-icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.integration-icon.is-visible {
  opacity: 1;
  transform: scale(1);
}

.integration-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* =========================
   ICON POSITIONS
   ========================= */

.icon-1 { top: 30px; left: 90px; }
.icon-2 { top: 160px; left: 50px; }
.icon-3 { top: 300px; left: 80px; }

.icon-4 { top: 30px; right: 90px; }
.icon-5 { top: 160px; right: 50px; }
.icon-6 { top: 300px; right: 80px; }

.icon-7 { top: -100px; left: 160px; }
.icon-8 { top: -100px; right: 160px; }

.hero-integrations-title{
text-align: center;
    font-size: 26px;
    font-family: 'Uniform', sans-serif;
    font-weight: 700;
    color: #2a3b6c;
    margin-bottom: 35px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px){

.hero-top-grid{
grid-template-columns:1fr;
gap:24px;
}

.hero-content{
max-width:none;
text-align:center;
}

.hero-text{
margin:0 auto;
}

.hero-actions{
justify-content:center;
}

.hero-visual{
min-height:520px;
}

.integration-icon{
width:64px;
height:64px;
padding:12px;
}

}

@media (max-width: 767px){
	
	.hero-section {
  padding: 42px 20px 50px;
}

.hero-actions{margin-bottom:20px;}

.hero-visual{
max-width: 100%;
min-height: auto;
}

.integration-icon{
display:none;
}

.hero-app-card{
width:min(100%, 520px);
}

.hero-integrations-mobile{
display:block;
}

.hero-pricing-card {
padding: 22px 20px;
border-radius: 18px;
}

.hero-pricing-period {
font-size: 16px;
}

.hero-pricing-extra {
font-size: 15px;
}

.hero-pricing-points li {
font-size: 14px;
padding: 13px 14px 13px 40px;
}

}

@media (max-width:600px){

.hero-visual-wrap{
margin-top:38px;
}

.hero-app-card{
width:100%;
}

.hero-integrations-mobile{
margin-top:22px;
}

.hero-integrations-mobile-item{
grid-template-columns:46px 1fr;
padding:12px 14px;
}

.hero-integrations-mobile-item img{
width:34px;
height:34px;
}

.hero-integrations-mobile-item span{
font-size:14px;
}

.hero-actions{
flex-direction:column;
}

.hero-actions .btn{
width:100%;
}

}

/* =========================
   WHY SECTION
   ========================= */

.why-section {
  padding: 50px 0 100px;
  background:#ffffff;
}

.why-header {
  max-width:1200px;
  margin:0 auto 60px;
  text-align:center;
}

.why-header h2 {
  font-family: 'Uniform', sans-serif;
font-size: clamp(1rem, 7vw, 2.5rem);
  color: #2a3b6c;
  margin-bottom:20px;
}

.why-header p {
  font-size:18px;
  line-height:1.7;
  color:#5b6475;
}

.why-eyebrow{
  display:inline-block;
  margin:0 0 22px;
  padding:10px 22px;
  border-radius:10px;
  background-color:#ffffff;
  border:1px solid #e4e0ff;
  color:var(--color-primary);
  font-size:14px;
  font-weight:600;
}

.why-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:32px;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.why-card {
  background:#ffffff;
  border:1px solid #e6eaf2;
  border-radius:20px;
  padding:40px;
  box-shadow:0 0 15px rgba(0,0,0,0.06);
  transition:all .25s ease;
  text-align:center;
}

.why-card:hover {
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.why-icon-circle {
  width:86px;
  height:86px;
  margin:0 auto 22px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid var(--color-border);
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.why-icon-circle img {
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.why-card h3 {
  font-family: 'Uniform', sans-serif;
    color: #2a3b6c;
  margin-bottom:12px;
  font-size:24px;
}

.why-card p {
  color:#5b6475;
  line-height:1.6;
}

@media(max-width:900px){

.why-grid{
grid-template-columns:1fr;
gap:20px;
}

.why-actions{
flex-wrap:wrap;
}

}

/* =========================
   WIDER FIXED FADE WRAPPER
   ========================= */

.scroll-fade-wrap {
  position: relative;
  width: min(100% - 32px, var(--wide-rail-width));
  margin: 0 auto;
}

.scroll-fade-wrap::before,
.scroll-fade-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 140px);
  z-index: 4;
  pointer-events: none;
}

.scroll-fade-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f7f9fc 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-fade-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f7f9fc 0%, rgba(255, 255, 255, 0) 100%);
}


.scroll-fade-wrap.scroll-fade-soft::before {
  background: linear-gradient(to right, #fff 0%, rgba(247, 249, 252, 0) 100%);
}

.scroll-fade-wrap.scroll-fade-soft::after {
  background: linear-gradient(to left, #fff 0%, rgba(247, 249, 252, 0) 100%);
}

.scroll-fade-wrap.scroll-fade-white::before {
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.scroll-fade-wrap.scroll-fade-white::after {
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* TESTIMONIALS */


.testimonial-section{
  padding: 50px 0 100px;
  background:#f7f9fc;
}

.testimonial-header{
  text-align:center;
  margin-bottom:60px;
}

.testimonial-header h2{
  font-family: 'Uniform', sans-serif;
font-size: clamp(1rem, 7vw, 2.5rem);
  color: #2a3b6c;
}

.testimonial-wrapper{
  position:relative;
  width:100%;
}

.testimonial-viewport{
  overflow:hidden;
  width:100%;
  padding:0;
}

.testimonial-track{
  display:flex;
  gap:30px;
  transition:transform .5s ease;
  width:max-content;
}

.testimonial-card{
  flex:0 0 320px;
  background:#fff;
  border:1px solid #e6eaf2;
  border-radius:20px;
  padding:15px 30px 30px 30px;
  box-shadow:0 0 15px rgba(0,0,0,.05);
}

.testimonial-card p{
  color:#5b6475;
}

.stars{
  color:#08c577;
  font-size:30px;
  margin-bottom:10px;
}

.testimonial-user{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:30px;
}

.testimonial-user img{
  width:42px;
  height:42px;
  border-radius:50%;
}

.testimonial-meta{
  display:flex;
  flex-direction:column;
}

.testimonial-meta span{
  font-size:14px;
  color:#888;
}

/* =========================
PROCESS SECTION
========================= */

.process-section{
  padding:50px 0;
  background:#fff;
  overflow:hidden;
}

.process-header{
  text-align:center;
  max-width:1000px;
  margin:0 auto 80px;
}

.process-header h2{
  font-family: 'Uniform', sans-serif;
font-size: clamp(1rem, 7vw, 2.5rem);
  color: #2a3b6c;
  margin-bottom:20px;
}

.process-header p{
  font-size:18px;
  color:#5b6475;
}

.process-wrapper{
  position:relative;
  width:100%;
}

.process-rail{
  display:flex;
  gap:80px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:0 88px 50px;
  position:relative;
  scrollbar-width:none;
  -ms-overflow-style:none;
}

.process-rail::-webkit-scrollbar{
  display:none;
}

.process-step{
  min-width:320px;
  position:relative;
  text-align:center;
  z-index:1;
  flex:0 0 320px;
}

.process-screen{
  margin-bottom:25px;
}

.process-screen img{
  padding:5px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.process-card{
  background:#fff;
  border:1px solid #e6eaf2;
  border-radius:20px;
  padding:28px;
  box-shadow:0 0 15px rgba(0,0,0,.05);
  display:grid;
  grid-template-columns:36px 1fr;
  column-gap:16px;
  row-gap:10px;
  align-items:center;
  text-align:left;
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
  color:#fff;
  font-weight:600;
  grid-column:1;
  grid-row:1;
  margin:0;
}

.process-card h3{
  font-family: 'Uniform', sans-serif;
  color:#623ee7;
  margin:0;
  grid-column:2;
  grid-row:1;
}

.process-card p{
  color:#5b6475;
  font-size:15px;
  margin:0;
  grid-column:1 / -1;
  grid-row:2;
}

.process-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid #e6eaf2;
  background:#fff;
  cursor:pointer;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin:0;
}

.process-arrow.left{
  left:24px;
}

.process-arrow.right{
  right:24px;
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  position:relative;
  padding:60px 0 32px;
  background:#f7f9fc;
  border-top:1px solid var(--color-border);
  overflow:hidden;
}

.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:32px;
  padding:40px;
  background:rgba(255, 255, 255, 0.72);
  backdrop-filter:blur(14px);
  border:1px solid #e8e4ff;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(98, 62, 231, 0.08);
}

.footer-brand{
  max-width:420px;
}

.footer-logo{
  display:inline-flex;
  margin-bottom:20px;
}

.footer-logo img{
  max-height:48px;
}

.footer-brand p{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:var(--color-text-soft);
}

.footer-contact{
  margin-top:0;
}

.footer-contact p{
  margin:0 0 14px;
  font-size:15px;
  line-height:1.8;
  color:var(--color-text-soft);
}

.footer-contact a{
  display:inline-flex;
  font-size:15px;
  font-weight:600;
  color:var(--color-primary);
  transition:color .2s ease;
}

.footer-contact a:hover{
  color:var(--color-primary-dark);
}

.footer-contact-column{
  justify-self:end;
  text-align:left;
}

.footer-socials{
  display:flex;
  gap:12px;
  margin-top:24px;
}

.footer-socials a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid var(--color-border);
  color:var(--color-primary);
  transition:all .25s ease;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.footer-socials a:hover{
  transform:translateY(-2px);
  border-color:#dcd2ff;
  box-shadow:0 12px 28px rgba(98, 62, 231, 0.12);
}

.footer-socials svg{
  width:18px;
  height:18px;
  fill:currentColor;
}

.footer-links{
  width:100%;
}

.footer-links-centered{
  justify-content:center;
}

.footer-links-inner{
  display:block;
  text-align:left;
}

.footer-links h4{
    font-family: 'Uniform', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.footer-links ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li + li{
  margin-top:12px;
}

.footer-links a{
  color:var(--color-text-soft);
  font-size:15px;
  transition:color .2s ease, transform .2s ease;
}

.footer-links a:hover{
  color:var(--color-primary);
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:26px;
  margin-top:22px;
}

.footer-bottom p{
  margin:0;
  font-size:14px;
  color:#7b8597;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.footer-bottom-links .menu{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:0;
  list-style:none;
  margin:0;
  padding:0;
}

.footer-bottom-links .menu li{
  display:inline-flex;
  align-items:center;
  margin:0;
}

.footer-bottom-links .menu li + li::before{
  content:"|";
  margin:0 11px;
  color:#7b8597;
}

.footer-bottom-links a{
  font-size:14px;
  color:#7b8597;
  transition:color .2s ease;
}

.footer-bottom-links a:hover{
  color:var(--color-primary);
}

@media (max-width: 900px) {
  .testimonial-viewport{
    padding:0 64px;
  }

  .process-rail{
    gap:40px;
    padding:0 64px 20px;
  }

  .process-line{
    left:64px;
    right:64px;
  }

  .process-arrow.left{
    left:12px;
  }

  .process-arrow.right{
    right:12px;
  }

  .footer-top{
    grid-template-columns:1fr 1fr;
    padding:32px;
  }

  .footer-brand{
    max-width:none;
    grid-column:1 / -1;
  }

  .footer-links-centered{
    justify-self:start;
  }

  .footer-contact-column{
    justify-self:start;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 600px) {
  .scroll-fade-wrap::before,
  .scroll-fade-wrap::after {
    width:56px;
  }

  .testimonial-viewport{
    padding:0 48px;
  }

  .testimonial-card{
    flex:0 0 280px;
  }

  .process-rail{
    padding:0 48px 20px;
  }

  .process-line{
    left:48px;
    right:48px;
  }

  .process-step{
    min-width:280px;
    flex:0 0 280px;
  }

  .process-arrow{
    width:40px;
    height:40px;
  }

  .process-arrow.left{
    left:8px;
  }

  .process-arrow.right{
    right:8px;
  }

  .site-footer{
    padding:64px 0 28px;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:28px;
    padding:24px;
    border-radius:22px;
  }

  .footer-socials{
    flex-wrap:wrap;
  }

  .footer-contact-column{
    justify-self:start;
  }

  .footer-bottom-links{
    gap:14px 18px;
  }

  .footer-bottom-links .menu li + li::before{
    margin:0 9px;
  }
}
/* =========================
   FEATURES SECTION
   ========================= */

.features-section{
  padding:50px 0 100px;
  background:#f7f9fc;
}

.features-header{
  max-width:1000px;
  margin:0 auto 56px;
  text-align:center;
}

.features-eyebrow{
  display:inline-block;
  margin:0 0 22px;
  padding:10px 22px;
  border-radius:10px;
  background-color:#ffffff;
  border:1px solid #e4e0ff;
  color:var(--color-primary);
  font-size:14px;
  font-weight:600;
}

.features-header h2{
  font-family: 'Uniform', sans-serif;
  margin:10px 0 24px;
font-size: clamp(1rem, 7vw, 2.5rem);
  line-height:1.1;
  color:#2a3b6c;
}

.features-header p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:var(--color-text-soft);
}

.features-wide{
  width:min(100% - 32px, var(--wide-rail-width));
  margin:0 auto;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:22px;
}

.feature-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:18px;
  height:100%;
  background:#fff;
  border:1px solid var(--color-border);
  border-radius:24px;
  padding:28px;
  box-shadow:0 0 15px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 34px rgba(98, 62, 231, 0.10);
  border-color:#dcd2ff;
}

.feature-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  gap:16px;
  min-height:62px;
}

.feature-icon{
  width:62px;
  height:62px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(98, 62, 231, 0.12), rgba(8, 197, 119, 0.12));
  color:var(--color-primary);
  flex-shrink:0;
}

.feature-icon svg{
  width:30px;
  height:30px;
  fill:currentColor;
}

.feature-tag {
    position:absolute;
    top:24px;
    right:24px;
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    background: linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
    color: #fff;
    line-height: 1;
}

.feature-card h3{
  font-family: 'Uniform', sans-serif;
  margin:0;
  font-size:clamp(22px, 2.6vw, 24px);
  line-height:1.15;
  color:#2a3b6c;
}

.feature-card p{
  margin:0;
  color:var(--color-text-soft);
  line-height:1.7;
  font-size:15px;
}

.feature-points{
  list-style:none;
  margin:6px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.feature-points li{
  position:relative;
  padding-left:28px;
  color:var(--color-text);
  font-size:15px;
  font-weight:600;
}

.feature-points li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
  box-shadow:0 0 0 6px rgba(8, 197, 119, 0.12);
}

.feature-card-hero{
  background:radial-gradient(circle at top right, rgba(98, 62, 231, 0.10), transparent 42%), #ffffff;
}

.feature-card-hero,
.feature-card-wide,
.feature-card-tall,
.feature-card-compact{
  grid-column:span 1;
}

.feature-card-tall{
  min-height:100%;
}

@media (max-width: 1100px) {
  .features-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .feature-card-hero,
  .feature-card-wide,
  .feature-card-tall,
  .feature-card-compact{
    grid-column:span 1;
  }
}

@media (max-width: 767px) {
  .hero-top-badges {
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ai-badge {
margin-top:20px;
    margin-left: auto;
    margin-right: auto;
  }

  .features-section{
    padding:42px 0 72px;
  }

  .features-header{
    margin-bottom:28px;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .feature-card{
    padding:24px;
    padding-top:20px;
    border-radius:22px;
  }

  .feature-card-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .feature-tag{
    top:20px;
    right:20px;
  }
}

/* =========================
   FLOATING THEME TOGGLE
   ========================= */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 8px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.theme-toggle-track {
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(98, 62, 231, 0.14), rgba(8, 197, 119, 0.14));
  border: 1px solid rgba(98, 62, 231, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  flex-shrink: 0;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--color-green-start) 0%, var(--color-green-end) 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.theme-toggle-icon {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1;
}

.theme-toggle-label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* =========================
   RESPONSIVE HEADER + MOBILE MENU
   ========================= */

.theme-toggle-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  display: grid;
  gap: 22px;
  padding: 8px 0 20px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  gap: 8px;
}

.mobile-nav-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  font-weight: 600;
  color: var(--color-text);
  transition: border-color .2s ease, transform .2s ease, background .2s ease, color .2s ease;
}

.mobile-nav-list a:hover {
  border-color: rgba(98, 62, 231, 0.25);
  color: var(--color-primary);
  transform: translateX(2px);
}

.mobile-nav-actions {
  display: grid;
  gap: 12px;
}

.mobile-nav-actions .btn {
  width: 100%;
  min-height: 52px;
}

.mobile-nav-actions .btn + .btn {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .header-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, opacity .25s ease;
  }

  .mobile-nav.is-open {
    max-height: 560px;
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1600px);
  }

  .header-inner {
    min-height: 78px;
  }

  .header-logo img {
margin-top:6px;
    max-height: 42px;
  }

  .theme-toggle {
    padding-right: 8px;
  }

  .theme-toggle-label {
    display: none;
  }

  .theme-toggle-floating {
    right: 14px;
    bottom: 14px;
  }
}

/* =========================
   RESPONSIVE FOOTER ACCORDIONS
   ========================= */

.footer-accordion {
  display: block;
}

.footer-accordion-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: default;
}

.footer-accordion-toggle h4 {
  margin: 4px 0 18px;
}

.footer-accordion-icon {
  display: none;
}

.footer-accordion-panel {
  display: block;
  overflow: visible;
}

@media (min-width: 768px) {
  .footer-links-centered.footer-accordion {
    display: block;
    justify-self: center;
  }

  .footer-links-centered.footer-accordion .footer-accordion-toggle {
    display: block;
    width: 100%;
  }

  .footer-links-centered.footer-accordion .footer-accordion-panel {
    display: block;
  }

  .footer-links-centered.footer-accordion .footer-links-inner {
    display: block;
    text-align: left;
  }

  .footer-contact-column.footer-accordion {
    display: block;
  }

  .footer-contact-column.footer-accordion .footer-accordion-toggle {
    display: block;
    width: 100%;
  }

  .footer-contact-column.footer-accordion .footer-accordion-panel {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .footer-brand {
    max-width: none;
    grid-column: auto;
  }

  .footer-links,
  .footer-links-centered,
  .footer-contact-column,
  .footer-accordion {
    display: block;
    width: 100%;
    justify-self: stretch;
    justify-content: initial;
    text-align: left;
  }

  .footer-accordion {
    border-top: 1px solid var(--color-border);
    padding-top: 18px;
  }

  .footer-accordion-toggle {
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
  }

  .footer-accordion-toggle h4 {
    margin: 0;
  }

  .footer-accordion-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    position: relative;
    flex: 0 0 18px;
    margin-left: auto;
  }

  .footer-accordion-icon::before,
  .footer-accordion-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
  }

  .footer-accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .footer-accordion.is-open .footer-accordion-icon::after {
    opacity: 0;
  }

  .footer-accordion-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .25s ease, padding-top .25s ease;
    padding-top: 0;
  }

  .footer-accordion.is-open .footer-accordion-panel {
    max-height: 260px;
    opacity: 1;
    padding-top: 14px;
  }

  .footer-links-inner {
    display: block;
    text-align: left;
  }
}

/* =========================
   DARK MODE OVERRIDES FOR NEW RESPONSIVE UI
   ========================= */

:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .mobile-nav-list a,
:root[data-theme="dark"] .theme-toggle {
  background: rgba(15, 23, 40, 0.92);
  border-color: rgba(255,255,255,.1);
}

:root[data-theme="dark"] .mobile-nav-list a:hover {
  border-color: rgba(182, 156, 255, 0.4);
}


:root[data-theme="dark"] .footer-accordion {
  border-top-color: rgba(255,255,255,.1);
}


/* =========================
   FULL DARK MODE FIXES
   ========================= */

:root[data-theme="dark"] body {
  background: #08101e;
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .feature-tag {
    color: #0f1728;
}

:root[data-theme="dark"] .site-header {
  background: rgba(8, 16, 30, 0.82);
}

:root[data-theme="dark"] .site-header.is-scrolled {
  background: rgba(8, 16, 30, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

:root[data-theme="dark"] .hero-section {
  background: radial-gradient(circle at top center, rgba(155, 124, 255, 0.16), transparent 35%), linear-gradient(to bottom, #08101e 0%, #0f1728 100%);
}

:root[data-theme="dark"] .hero-section-has-video {
  background: linear-gradient(to bottom, rgba(8, 16, 30, 0.54) 0%, rgba(15, 23, 40, 0.72) 100%);
}



:root[data-theme="dark"] .why-section {
  background: #08101e;
}

:root[data-theme="dark"] .process-section {
  background: #08101e;
}

:root[data-theme="dark"] .testimonial-section,
:root[data-theme="dark"] .site-footer {
  background: #0f1728;
}

:root[data-theme="dark"] .features-section {
  background:#0f1728;
}

:root[data-theme="dark"] .features-wide {
  width:min(100% - 32px, var(--wide-rail-width));
}

:root[data-theme="dark"] .feature-card-hero {
  background:radial-gradient(circle at top right, rgba(155, 124, 255, 0.16), transparent 42%), #101827;
}

:root[data-theme="dark"] .hero-eyebrow,
:root[data-theme="dark"] .features-eyebrow,
:root[data-theme="dark"] .why-eyebrow {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(155, 124, 255, 0.25);
  color: var(--color-primary);
}

:root[data-theme="dark"] .hero-ai-badge{
color:#fff;
}

:root[data-theme="dark"] .nav-list a,
:root[data-theme="dark"] .hero-title,
:root[data-theme="dark"] .why-header h2,
:root[data-theme="dark"] .testimonial-header h2,
:root[data-theme="dark"] .process-header h2,
:root[data-theme="dark"] .features-header h2,
:root[data-theme="dark"] .feature-card h3,
:root[data-theme="dark"] .process-card h3,
:root[data-theme="dark"] .footer-links h4,
:root[data-theme="dark"] .footer-contact a,
:root[data-theme="dark"] .footer-socials a,
:root[data-theme="dark"] .theme-toggle {
  color: var(--color-text);
}

:root[data-theme="dark"] .why-card h3,
:root[data-theme="dark"] .career-job-single__title {
  color: var(--color-primary);
}

:root[data-theme="dark"] .hero-text,
:root[data-theme="dark"] .why-header p,
:root[data-theme="dark"] .why-card p,
:root[data-theme="dark"] .testimonial-card p,
:root[data-theme="dark"] .testimonial-meta span,
:root[data-theme="dark"] .process-header p,
:root[data-theme="dark"] .process-card p,
:root[data-theme="dark"] .features-header p,
:root[data-theme="dark"] .feature-card p,
:root[data-theme="dark"] .footer-brand p,
:root[data-theme="dark"] .footer-contact p,
:root[data-theme="dark"] .footer-links a,
:root[data-theme="dark"] .footer-bottom p,
:root[data-theme="dark"] .footer-bottom-links a {
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .why-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .process-card,
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .footer-top,
:root[data-theme="dark"] .integration-icon,
:root[data-theme="dark"] .why-icon-circle,
:root[data-theme="dark"] .footer-socials a,
:root[data-theme="dark"] .btn-secondary,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .mobile-nav-list a,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .hero-pricing-card,
:root[data-theme="dark"] .hero-pricing-points li {
  background: #101827;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

:root[data-theme="dark"] .why-card,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .process-card,
:root[data-theme="dark"] .feature-card {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .btn-secondary:hover,
:root[data-theme="dark"] .nav-list a:hover,
:root[data-theme="dark"] .footer-links a:hover,
:root[data-theme="dark"] .footer-bottom-links a:hover,
:root[data-theme="dark"] .footer-contact a:hover,
:root[data-theme="dark"] .mobile-nav-list a:hover {
  color: var(--color-primary-dark);
  border-color: rgba(182, 156, 255, 0.4);
}

:root[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(26px);
}

:root[data-theme="dark"] .scroll-fade-wrap::before {
  background: linear-gradient(to right, #0f1728  0%, rgba(8, 16, 30, 0) 100%);
}

:root[data-theme="dark"] .scroll-fade-wrap::after {
  background: linear-gradient(to left, #0f1728 0%, rgba(8, 16, 30, 0) 100%);
}

:root[data-theme="dark"] .scroll-fade-wrap.scroll-fade-soft::before,
:root[data-theme="dark"] .scroll-fade-wrap.scroll-fade-white::before {
  background: linear-gradient(to right, #0f1728 0%, rgba(15, 23, 40, 0) 100%);
}

:root[data-theme="dark"] .scroll-fade-wrap.scroll-fade-soft::after,
:root[data-theme="dark"] .scroll-fade-wrap.scroll-fade-white::after {
  background: linear-gradient(to left, #0f1728 0%, rgba(15, 23, 40, 0) 100%);
}

:root[data-theme="dark"] .process-screen img,
:root[data-theme="dark"] .hero-app-card img {
}

:root[data-theme="dark"] .hero-pricing-amount,
:root[data-theme="dark"] .hero-pricing-period,
:root[data-theme="dark"] .hero-pricing-kicker,
:root[data-theme="dark"] .hero-integrations-title,
:root[data-theme="dark"] .hero-pricing-points li {
  color: var(--color-text);
}

:root[data-theme="dark"] .hero-pricing-extra {
  color: var(--color-text-soft);
}


@supports (padding: max(0px)) {
  .theme-toggle-floating {
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  @media (max-width: 600px) {
    .theme-toggle-floating {
      right: max(14px, env(safe-area-inset-right));
      bottom: max(14px, env(safe-area-inset-bottom));
    }
  }
}


:root[data-theme="dark"] .hero-title,
:root[data-theme="dark"] .why-header h2,
:root[data-theme="dark"] .testimonial-header h2,
:root[data-theme="dark"] .process-header h2,
:root[data-theme="dark"] .features-header h2,
:root[data-theme="dark"] .feature-card h3,
:root[data-theme="dark"] .process-card h3,
:root[data-theme="dark"] .why-card h3,
:root[data-theme="dark"] .footer-accordion-toggle,
:root[data-theme="dark"] .footer-links h4,
:root[data-theme="dark"] .footer-contact a,
:root[data-theme="dark"] .theme-toggle-label,
:root[data-theme="dark"] .theme-toggle-icon,
:root[data-theme="dark"] .mobile-menu-toggle {
  color: var(--color-text);
}

:root[data-theme="dark"] .nav-list a,
:root[data-theme="dark"] .mobile-nav-list a,
:root[data-theme="dark"] .hero-text,
:root[data-theme="dark"] .why-header p,
:root[data-theme="dark"] .why-card p,
:root[data-theme="dark"] .testimonial-card p,
:root[data-theme="dark"] .testimonial-meta span,
:root[data-theme="dark"] .process-header p,
:root[data-theme="dark"] .process-card p,
:root[data-theme="dark"] .features-header p,
:root[data-theme="dark"] .feature-card p,
:root[data-theme="dark"] .footer-brand p,
:root[data-theme="dark"] .footer-contact p,
:root[data-theme="dark"] .footer-links a,
:root[data-theme="dark"] .footer-bottom p,
:root[data-theme="dark"] .footer-bottom-links a {
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .theme-toggle {
  background: rgba(16, 24, 39, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

:root[data-theme="dark"] .theme-toggle-track {
  background: linear-gradient(135deg, rgba(155, 124, 255, 0.22), rgba(26, 213, 152, 0.18));
  border-color: rgba(255, 255, 255, 0.10);
}


:root[data-theme="dark"] .hero-integrations-mobile-item{
  background:#101827;
  border-color:rgba(255,255,255,0.10);
  box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

:root[data-theme="dark"] .hero-integrations-mobile-item span{
  color:var(--color-text);
}

/* =========================
   PRICING SECTION
   ========================= */

.pricing-section{
    padding: 90px 0 90px;
  background:#ffffff;
}

.pricing-shell{
  background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
  border:1px solid #e8e4ff;
  border-radius:28px;
  padding:40px;
  box-shadow:0 0 15px rgba(0, 0, 0, 0.06);
}

.pricing-top{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) minmax(320px, 440px);
  gap:32px;
  align-items:start;
}

.pricing-copy{
  max-width:760px;
  padding-top:6px;
}

.pricing-eyebrow{
  display:inline-block;
  margin:0 0 22px;
  padding:10px 22px;
  border-radius:10px;
  background-color:#ffffff;
  border:1px solid #e4e0ff;
  color:var(--color-primary);
  font-size:14px;
  font-weight:600;
}

.pricing-copy h2{
  font-family: 'Uniform', sans-serif;
  margin:10px 0 24px;
font-size: clamp(1rem, 7vw, 2.5rem);
  line-height:1.1;
  color:#2a3b6c;
}

.pricing-copy p{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.7;
  color:var(--color-text-soft);
}

.pricing-copy p:last-child{
  margin-bottom:0;
}

.pricing-side{
  display:grid;
}

/* Pricing CTA buttons under pricing card */

.pricing-cta{
    margin-top: 40px;
margin-bottom:15px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.pricing-cta .btn{
min-width:150px;
}

.pricing-summary-card{
  position:relative;
}


.pricing-tier-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:26px;
}

.pricing-tier-card{
  display:grid;
  gap:10px;
  padding:26px;
  background:#fff;
  border:1px solid var(--color-border);
  border-radius:22px;
  box-shadow:0 0 15px rgba(0,0,0,.05);
}

.pricing-tier-card-featured{
  background:radial-gradient(circle at top right, rgba(98, 62, 231, 0.10), transparent 45%), #ffffff;
  border-color:#dcd2ff;
}

.pricing-tier-range{
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--color-primary);
}

.pricing-tier-price{
    font-family: 'Uniform', sans-serif;
  font-size:34px;
  line-height:1.05;
  color:#2a3b6c;
}

.pricing-tier-card p{
  margin:0;
  font-size:15px;
  color:var(--color-text-soft);
}

@media (max-width: 1024px){
  .pricing-top{
    grid-template-columns:1fr;
  }

  .pricing-copy{
    max-width:none;
  }

  .pricing-tier-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 600px){
  .pricing-section{
    padding: 10px 0 72px;
  }

  .pricing-shell{
    padding:24px;
    border-radius:22px;
  }

  .pricing-copy h2{
    font-size:30px;
  }

  .pricing-copy p{
    font-size:16px;
  }

  .pricing-highlight,
  .pricing-tier-card{
    padding:22px;
  }

  .pricing-tier-price{
    font-size:28px;
  }
}

:root[data-theme="dark"] .pricing-section{
  background:#08101e;
}

:root[data-theme="dark"] .pricing-shell{
  background: linear-gradient(135deg, #101827 0%, #0f1728 100%);
  border-color: rgba(155, 124, 255, 0.18);
}

:root[data-theme="dark"] .pricing-eyebrow{
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(155, 124, 255, 0.25);
  color: var(--color-primary);
}

:root[data-theme="dark"] .pricing-copy h2,
:root[data-theme="dark"] .pricing-highlight strong,
:root[data-theme="dark"] .pricing-tier-price{
  color: var(--color-text);
}


:root[data-theme="dark"] .integrations-directory-header h2{
  color: var(--color-text);
}

:root[data-theme="dark"] .pricing-copy p,
:root[data-theme="dark"] .pricing-highlight span,
:root[data-theme="dark"] .pricing-tier-card p{
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .pricing-highlight,
:root[data-theme="dark"] .pricing-tier-card{
  background:#101827;
  border-color: rgba(255,255,255,0.1);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

:root[data-theme="dark"] .pricing-tier-card-featured{
  background:radial-gradient(circle at top right, rgba(155, 124, 255, 0.16), transparent 45%), #101827;
  border-color: rgba(182, 156, 255, 0.35);
}



:root[data-theme="dark"] .process-arrow{
  background:#182235;
  border-color:rgba(255,255,255,0.14);
  color:var(--color-text);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

:root[data-theme="dark"] .process-arrow:hover{
  box-shadow:0 16px 34px rgba(0,0,0,0.42);
}

:root[data-theme="dark"] .step-number{
  color:#08101e;
}


/* pricing includes tag */
.hero-pricing-card{
  position:relative;
}

.pricing-includes{
  position:absolute;
  top:18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  background:rgba(98,62,231,0.08);
  border:1px solid rgba(98,62,231,0.15);
  color:var(--color-primary);
  line-height:1;
}

.hero-pricing-kicker{
  padding-right:130px;
}

@media (max-width: 600px){
  .pricing-includes{
    position:static;
    top:auto;
    right:auto;
    display:inline-flex;
    margin:0 0 12px;
    font-size:11px;
    padding:6px 10px;
  }

  .hero-pricing-kicker{
    padding-right:0;
  }
}

:root[data-theme="dark"] .pricing-includes{
  background:rgba(155,124,255,0.12);
  border-color:rgba(155,124,255,0.22);
  color:var(--color-primary);
}

/* feature tag top right */
.feature-card{
  position:relative;
}
.feature-card .feature-tag{
  position:absolute;
  top:16px;
  right:16px;
}

/* dark mode fixes */
:root[data-theme="dark"] .step-number{
  color:#0f1728;
}

:root[data-theme="dark"] .process-arrow{
  color:#fff;
  background:#101827;
  border-color:rgba(255,255,255,0.2);
}


/* ONLY hero-eyebrow white text in dark mode */
:root[data-theme="dark"] .hero-eyebrow{
  color:#ffffff;
}

/* default content pages */
.servicemate-page{
  padding:40px 0 30px;
}

.servicemate-page-content{
font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 767px){
  .servicemate-page{
    padding:0px;
  }
}

/* FAQ shortcode */
.servicemate-faq{
  margin:2rem 0 0;
}

.servicemate-faq:first-child{
  margin-top:0;
}

.servicemate-faq-header{
  margin-bottom:20px;
}

.servicemate-faq-title{
  margin:0;
  color:var(--color-primary);
  font-size:clamp(1.75rem, 3vw, 2.5rem);
  line-height:1.1;
}

.servicemate-faq-list{
  display:grid;
  gap:16px;
}

.servicemate-faq-item{
  border:1px solid var(--color-border);
  border-radius:20px;
  box-shadow:var(--shadow-card);
  overflow:hidden;
}

.servicemate-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 28px;
  border:0;
  background:none;
  color:var(--color-text);
  font:inherit;
  font-size:1.125rem;
  font-weight:700;
  line-height:1.35;
  text-align:left;
  cursor:pointer;
}

.servicemate-faq-question-text{
  font-family:'Uniform', sans-serif;
}

.servicemate-faq-icon{
  position:relative;
  flex:0 0 22px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:rgba(98, 62, 231, 0.08);
}

.servicemate-faq-icon::before,
.servicemate-faq-icon::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:10px;
  height:2px;
  background:var(--color-primary);
  border-radius:999px;
  transform:translate(-50%, -50%);
  transition:transform 0.25s ease, opacity 0.25s ease;
}

.servicemate-faq-icon::after{
  transform:translate(-50%, -50%) rotate(90deg);
}

.servicemate-faq-item.is-open .servicemate-faq-icon::after{
  opacity:0;
}

.servicemate-faq-answer{
  padding:0 28px 28px;
  color:var(--color-text-soft);
}

.servicemate-faq-answer-inner{
  padding-top:24px;
  border-top:1px solid var(--color-border);
}

.servicemate-faq-answer-inner > *:first-child{
  margin-top:0;
}

.servicemate-faq-answer-inner > *:last-child{
  margin-bottom:0;
}

.servicemate-faq-answer-inner p,
.servicemate-faq-answer-inner ul,
.servicemate-faq-answer-inner ol{
  margin:0 0 1rem;
}

.servicemate-faq-answer-inner a{
  color:var(--color-primary);
}

@media (max-width: 767px){
  .servicemate-faq-question{
    padding:20px;
    font-size:1rem;
  }

  .servicemate-faq-answer{
    padding:0 20px 20px;
  }

  .servicemate-faq-answer-inner{
    padding-top:18px;
  }
}


/* =========================
   INTEGRATIONS DIRECTORY
   ========================= */

.integrations-directory-section {
  padding: 56px 0 66px;
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, #ffffff 100%);
}

.integrations-directory-header {
  max-width: 1200px;
  margin: 0 auto 42px;
  text-align: center;
}

.integrations-directory-header h2 {
  font-family: 'Uniform', sans-serif;
  margin: 22px 0 32px;
font-size: clamp(1rem, 7vw, 2.5rem);
  line-height: 1.08;
  color: #2a3b6c;
}

.integrations-directory-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.integrations-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.integration-directory-card {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(42, 59, 108, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.integration-directory-card:hover {
  transform: translateY(-4px);
    border-color: rgba(155, 124, 255, 0.75);
  box-shadow: 0 20px 46px rgba(42, 59, 108, 0.12);
}

.integration-directory-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.integration-directory-card-inner {
  position: relative;
  z-index: 1;
  padding: 28px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.integration-directory-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-purple-soft);
  margin-bottom: 22px;
  border: 1px solid rgba(98, 62, 231, 0.12);
}

.integration-directory-icon {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
}

.integration-directory-card h3 {
  font-family: 'Uniform', sans-serif;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.integration-directory-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 16px;
  line-height: 1.7;
}

.integration-directory-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary);
}

.integration-directory-cta::after {
  content: '→';
  font-size: 18px;
  line-height: 1;
}

:root[data-theme="dark"] .integrations-directory-section {
  background: linear-gradient(180deg, #0f1728 0%, #0b1220 100%);
}

:root[data-theme="dark"] .integration-directory-card {
      background: #0b1220;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .integration-directory-icon-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .integrations-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .integrations-directory-section {
    padding: 72px 0;
  }

  .integrations-directory-grid {
    grid-template-columns: 1fr;
  }

  .integration-directory-card-inner {
    padding: 24px;
  }
}

.cookie-policy {
  line-height: 1.7;
}

/* Headings */
.cookie-policy h4 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* General spacing */
.cookie-policy > * {
  margin-bottom: 14px;
}

/* Links */
.cookie-policy a {
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-word;
}

.cookie-policy a:hover {
  opacity: 0.85;
}

/* Table wrapper */
.cookie-policy .table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 22px;
}

/* Table */
.cookie-policy table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

/* Table header */
.cookie-policy thead th {
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* Table body */
.cookie-policy tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

/* Zebra rows */
.cookie-policy tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Prevent awkward wrapping in key columns */
.cookie-policy td:first-child,
.cookie-policy th:first-child,
.cookie-policy td:nth-child(2),
.cookie-policy th:nth-child(2),
.cookie-policy td:nth-child(5),
.cookie-policy th:nth-child(5) {
  white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .cookie-policy {
    font-size: 15px;
  }

  .cookie-policy h4 {
    font-size: 1.1rem;
  }
}

.privacy-policy {
  line-height: 1.7;
}

/* Headings */
.privacy-policy h4 {
  margin: 28px 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* General spacing */
.privacy-policy > * {
  margin-bottom: 14px;
}

/* Links */
.privacy-policy a {
  color: var(--color-primary);
  text-decoration: none;
  word-break: break-word;
}

.privacy-policy a:hover {
  opacity: 0.85;
}

/* Lists (privacy policies usually have these) */
.privacy-policy ul,
.privacy-policy ol {
  margin: 10px 0 16px 20px;
}

.privacy-policy li {
  margin-bottom: 6px;
}

/* Tables (in case you have any here too) */
.privacy-policy .table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 22px;
}

.privacy-policy table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.privacy-policy thead th {
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-policy tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.privacy-policy tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-policy {
    font-size: 15px;
  }

  .privacy-policy h4 {
    font-size: 1.1rem;
  }
}

/* =========================
   HELP CENTRE: PAGE + HERO
   ========================= */

.help-centre-page {
    padding-top: 40px;
}

.help-centre-hero {
    padding: 0 0 10px;
}

.help-centre-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.help-centre-title-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.help-centre-title {
  font-family: 'Uniform', sans-serif;
    margin: 0;
    font-size: clamp(1rem, 7vw, 2.5rem);
    line-height: 1.1;
    color: var(--color-primary);
    font-weight: 700;
}

.help-search {
    max-width: 360px;
    margin-left: auto;
}

.help-search form {
    display: block;
    margin: 0;
}

.help-search-wrap {
    position: relative;
}

.help-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #7a869f;
    pointer-events: none;
    z-index: 2;
}

.help-search-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.help-search input {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 56px;
    padding: 0 18px 0 50px;
    font-size: 14px;
    border: 1px solid #d9e2ef;
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(42, 59, 108, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.help-search input::placeholder {
    color: #98a2b3;
}

.help-search input:focus {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(98, 62, 231, 0.45);
    box-shadow: 0 0 0 4px rgba(98, 62, 231, 0.12), 0 12px 28px rgba(42, 59, 108, 0.1);
}

.help-search button {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.help-centre-page .post-list.reduce-header {
    padding-top: 20px;
}


/* =========================
   HEADER
   ========================= */

.header-main-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.header-logo-col {
    flex: 0 0 auto;
}

.header-menu-col {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
}

.header-menu-col > div,
.header-menu-col .menu-secondary-nav-container,
.header-menu-col .menu {
    width: 100%;
}

.header-menu-col ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: 24px;
}


/* =========================
   SINGLE HELP ARTICLE
   ========================= */

/* Hide duplicate Tango H1 inside Help Centre articles */
.single-post.category-help-centre .standard-post h1:first-of-type {
    display: none;
}

.help-article-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 55px;
    border: 1px solid #d9d4d4;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.help-article-intro {
    margin-bottom: 45px;
}

.help-article-note-blue {
    background-color: #e8f2ff;
    padding: 30px;
    margin-bottom: 55px;
    border-radius: 15px;
    border: 1px solid #7fb3ff;
    color: #1d4ed8;
}

.help-article-note-green {
    background-color: #e8f7e8;
    padding: 30px;
    margin-bottom: 55px;
    border-radius: 15px;
    border: 1px solid #9ed89e;
    color: #166534;
}

.help-article-note-yellow {
    background-color: #fff6dd;
    padding: 30px;
    margin-bottom: 55px;
    border-radius: 15px;
    border: 1px solid #ffd558;
    color: #92400e;
}

.help-article-note-red {
    background-color: #fde8e8;
    padding: 30px;
    margin-bottom: 55px;
    border-radius: 15px;
    border: 1px solid #f5a3a3;
    color: #991b1b;
}

.help-article-content {
    flex: 1 1 45%;
    padding: 10px;
}

.help-article-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.help-article-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #1bd085;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.help-article-image {
    flex: 1 1 50%;
}

.help-article-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid #F4F2F7;
    border-radius: 8px;
}

h3.help-article {
  font-family: 'Uniform', sans-serif;
    color: #623ee7;
}

.help-article-content p {
    margin-top: 0;
}

.help-filters {
    margin-bottom: 35px;
    margin-top: 30px;
border-radius:15px;
    background: #f7f9fc;
    border: 1px solid var(--color-border);
    padding: 30px;
}


.help-filters-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 22px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    background: #fff;
    font-size: 16px;
font-weight:600;
    transition: 0.2s;
    color: inherit;
}

.filter-btn:hover {
    background: #623ee7;
    color: #fff;
    border-color: #623ee7;
    box-shadow: none;
}

.filter-btn.active {
    background: #623ee7;
    color: #fff;
    border-color: #623ee7;
}
.help-list-wrap {
    padding-top: 20px;
}

.help-article-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-list-item {
    border: 1px solid #e9e9ef;
    border-radius: 14px;
    background: #fff;
    transition: 0.2s;
}

.help-list-item:hover {
    border-color: #d9d3fb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.help-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
}

.help-list-link:hover {
    box-shadow: none;
}

.help-list-content {
    flex: 1 1 auto;
    min-width: 0;
}

.help-list-title {
  font-family: 'Uniform', sans-serif;
    margin: 0px;
    font-size: 20px;
    line-height: 1.3;
    color: #2a3b6c;
}

.help-list-excerpt {
    margin: 15px 0 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-soft);
}

.help-list-meta {
    margin-top: 14px;
}

.help-list-helpful {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 5px;
    background: #f6f4ff;
    border: 1px solid #e4e0ff;
    color: #623ee7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.help-list-helpful-full {
    display: inline;
}

.help-list-helpful-short {
    display: none;
}

.help-list-arrow {
    flex: 0 0 auto;
    margin-top: -5px;
    font-size: 22px;
    line-height: 1;
    color: #623ee7;
}

.help-empty-state {
    padding: 48px 36px;
    text-align: center;
}

.help-empty-inline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.help-empty-state-icon {
    font-size: 28px;
    line-height: 1;
}

.help-empty-state-title {
font-family: 'Uniform', sans-serif;
    margin: 0;
    font-size: 26px;
    color: #2a3b6c;
}

.help-empty-state-text {
    margin-top: 6px;
    font-size: 16px;
    color: #5b6475;
}

.help-pagination {
    margin-top: 32px;
    text-align: center;
}

.help-centre-feedback-row {
    margin-bottom: 20px;
}

.help-centre-feedback-row .help-centre-helpful-box,
.help-centre-feedback-row .help-centre-share-box {
    height: 100%;
}

.help-centre-share-box {
    padding: 32px;
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    background: #f7f9fc;
    text-align: center;
}

.help-centre-share-box h3 {
font-family: 'Uniform', sans-serif;
    margin: 0 0 18px;
    color: #2a3b6c;
    font-size: 24px;
}

.help-centre-share-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.help-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #d8def0;
    background: #fff;
    border-radius: 5px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #2a3b6c;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: none;
}

.help-share-btn:hover {
    border-color: #623ee7;
    color: #623ee7;
    box-shadow: none;
}

.help-share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.help-share-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.help-share-message {
    margin: 16px 0 0;
    color: #555;
}

.help-centre-related-row {
    margin-top: 60px;
    margin-bottom: 20px;
}

.help-centre-related-box {
    padding: 36px;
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    background: #f7f9fc;
}

.help-centre-related-header {
    margin-bottom: 24px;
    text-align: center;
}

.help-centre-related-header h3 {
font-family: 'Uniform', sans-serif;
    margin: 0 0 10px;
    color: #2a3b6c;
    font-size: 28px;
}

.help-centre-related-header p {
    margin: 0;
    color: #5b6475;
    font-size: 16px;
}

.help-centre-related-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-centre-related-item {
    border: 1px solid #e9e9ef;
    border-radius: 14px;
    background: #fff;
    transition: 0.2s;
}

.help-centre-related-item:hover {
    border-color: #d9d3fb;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.help-centre-related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
}

.help-centre-related-link:hover {
    box-shadow: none;
}

.help-centre-related-content {
    flex: 1 1 auto;
    min-width: 0;
}

.help-centre-related-title {
  font-family: 'Uniform', sans-serif;
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: #2a3b6c;
font-weight:600;
}

.help-centre-related-excerpt {
margin: 15px 0 20px;
    font-size: 16px;
    line-height: 1.8;
}

.help-centre-related-meta {
    margin-top: 14px;
}

.help-centre-related-helpful {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 5px;
    background: #f6f4ff;
    border: 1px solid #e4e0ff;
    color: #623ee7;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.help-centre-related-arrow {
    flex: 0 0 auto;
    margin-top: -5px;
    font-size: 22px;
    line-height: 1;
    color: #623ee7;
}

.help-centre-cta {
    margin: 55px 0;
}

.help-centre-banner {
    background: #eef8f5;
    border: 1px solid #dbdbdb;
    border-radius: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-centre-banner h3 {
font-family: 'Uniform', sans-serif;
    color: #2a3b6c;
    font-size: 28px;
    margin: 10px 0;
}

.help-centre-banner p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.help-centre-banner .btn {
    background: linear-gradient(to right, #08c577 0%, #30dd95 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 0;
    text-align: center;
}

.help-centre-banner-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.help-centre-banner-panel {
    flex: 1 1 50%;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.help-centre-banner-panel-left {
    background: #f6f4ff;
}

.help-centre-banner-panel-right {
    background: #eef8f5;
}

.help-centre-banner-divider {
    width: 1px;
    background: #e4e0ff;
    align-self: stretch;
}

/* =========================
   BREADCRUMBS
   ========================= */

.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    font-size: 14px !important;
    line-height: 1.4 !important;
}

.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-item,
.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-item a,
.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-current,
.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-separator {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-item a {
    text-decoration: none;
}

.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-separator {
    opacity: 0.6;
}

.single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-current {
    color: inherit !important;
}


/* =========================
   HELP CENTRE CATEGORY INTRO
   ========================= */

/* Help centre category intro */
.help-category-description-wrap {
    width: 100%;
    padding: 10px 0 20px 0;
}

.help-category-description {
    margin: auto;
    padding: 12px 40px;
    background: #f7f9fc;
    border-radius: 16px;
    border: 1px solid #e6eaf2;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.help-category-description p:last-child {
}


/* =========================
   HELPFUL BOX
   ========================= */

.help-centre-helpful-box {
    padding: 32px;
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    background: #f7f9fc;
    text-align: center;
}

.help-centre-helpful-box h3 {
font-family: 'Uniform', sans-serif;
    margin: 0 0 18px;
    color: #2a3b6c;
    font-size: 24px;
}

.help-centre-helpful-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.helpful-btn {
    border: 1px solid #d8def0;
    background: #fff;
    border-radius: 5px;
    padding: 12px 18px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.helpful-btn:hover:not(:disabled) {
    border-color: #623ee7;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.helpful-btn:disabled {
    cursor: default;
    opacity: 0.8;
}

.helpful-count {
    margin-left: 8px;
    font-weight: 700;
    color: #623ee7;
}

.helpful-message {
    margin: 16px 0 0;
    color: #555;
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    .header-menu-col {
        display: none !important;
    }

    .header-actions {
        margin-left: auto;
    }
}

@media (max-width: 900px) {
    .help-article-row {
        flex-direction: column;
    }

    .help-article-content,
    .help-article-image {
        flex: 1 1 100%;
    }
}

@media (max-width: 767px) {
    .help-centre-page {
        padding-top: 0px;
    }

    .help-centre-header-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .help-search {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

    .help-search form,
    .help-search-wrap,
    .help-search input {
        width: 100%;
    }

    .help-centre-title {
        font-size: 32px;
    }

    .hero-top-badges {
        align-items: flex-start;
        flex-direction: column;
    }

    .help-list-link {
        padding: 18px;
    }

    .help-list-title {
        font-size: 18px;
    }

    .help-list-meta {
        margin-top: 12px;
    }

    .help-list-helpful {
        font-size: 13px;
        padding: 6px 10px;
    }

    .help-list-helpful-full {
        display: none;
    }

    .help-list-helpful-short {
        display: inline;
    }

    .help-share-btn {
        width: 100%;
    }

    .help-centre-feedback-row > div:first-child {
        margin-bottom: 20px;
    }

    .help-centre-banner-split {
        flex-direction: column;
    }

    .help-centre-banner-divider {
        width: 100%;
        height: 1px;
    }

    .help-centre-banner-panel {
        padding: 36px 24px;
    }

    .help-centre-related-box {
        padding: 24px 20px;
    }

    .help-centre-related-link {
        padding: 18px;
    }

    .help-centre-related-title {
        font-size: 18px;
    }

    .help-centre-related-helpful {
        font-size: 13px;
        padding: 6px 10px;
    }
}
/* =========================
   HELP METRIC GRID
   ========================= */

.help-metric-box {
    border: 1px solid #e6eaf2;
    border-radius: 14px;
    padding: 35px;
    margin: 40px 0;
	border: 1px solid #d9d4d4;
    border-bottom: 5px solid #e3e3e3;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.help-metric-title {
    margin-top: 0;
    margin-bottom: 10px;
		color: #2a3b6c;
    font-weight: 600;
}

.help-metric-intro {
    margin-bottom: 30px;
    max-width: 850px;
}

/* grid */

.help-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* item */

.help-metric-item {
    text-align: center;
}

.help-metric-item img {
    width: 100%;
    max-width: 210px;
    margin: 0 auto 30px;
    display: block;
}

.help-metric-item h5 {
    margin-bottom: 8px;
    color: #623ee7;
}

.help-metric-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #5b6475;
}

/* responsive */

@media (max-width: 900px) {
    .help-metric-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .help-metric-grid {
        grid-template-columns: 1fr;
    }
}

.help-metric-box p:empty {
    display: none;
}

/* =========================
   HELP BENEFIT BOX
   ========================= */

.help-benefit-box {
    padding: 35px;
    margin: 40px 0;
    border: 1px solid #d9d4d4;
    border-bottom: 5px solid #e3e3e3;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.help-benefit-title {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2a3b6c;
    font-weight: 600;
}

.help-benefit-intro {
    margin-bottom: 18px;
}
/* benefit checklist */

/* =========================
   HELP BENEFIT CHECKLIST
   ========================= */

.help-benefit-list {
    list-style: none;
    padding-left: 18px;
    margin: 0 0 20px 0;
}

.help-benefit-list li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}

/* custom bullet */
.help-benefit-list li::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1bd085;
    left: -3px;
    top: 7px;
}

.help-benefit-footer {
    margin: 0;
    color: #5b6475;
}

/* Lightbox caption readability */
.lb-dataContainer {
    padding-top: 18px;
}

.lb-data .lb-caption {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 2em !important;
	text-align: left !important;
    max-width: 100% !important;
	margin-top: 10px !important;
	font-weight:600 !important;
	padding-bottom: 10px !important;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
    margin-top: 25px !important;
}

.lb-data {
    padding: 0 0 24px;
}

.lb-data .lb-details {
    width: 100%;
    text-align: center;
}

.lb-data .lb-caption {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    padding: 12px 18px 0;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    color: #f2f2f2;
    text-align: center;
    white-space: normal;
    text-indent: 0;
}

.lb-data .lb-number {
    margin-top: 10px;
}

/* =========================
   HELP CENTRE DARK MODE
   ========================= */

:root[data-theme="dark"] .help-centre-page {
  background: #08101e;
}

:root[data-theme="dark"] .help-list-title,
:root[data-theme="dark"] .help-empty-state-title,
:root[data-theme="dark"] .help-centre-share-box h3,
:root[data-theme="dark"] .help-centre-related-header h3,
:root[data-theme="dark"] .help-centre-banner h3,
:root[data-theme="dark"] .help-centre-helpful-box h3,
:root[data-theme="dark"] .help-category-description,
:root[data-theme="dark"] .help-metric-title,
:root[data-theme="dark"] .help-centre-related-title,
:root[data-theme="dark"] .help-benefit-title,
:root[data-theme="dark"] h3.help-article {
  color: var(--color-text);
}

:root[data-theme="dark"] .help-list-excerpt,
:root[data-theme="dark"] .help-empty-state-text,
:root[data-theme="dark"] .help-share-message,
:root[data-theme="dark"] .helpful-message,
:root[data-theme="dark"] .help-centre-related-header p,
:root[data-theme="dark"] .help-centre-banner p,
:root[data-theme="dark"] .help-metric-item p,
:root[data-theme="dark"] .help-benefit-footer,
:root[data-theme="dark"] .help-category-description,
:root[data-theme="dark"] .help-centre-related-excerpt,
:root[data-theme="dark"] .help-article-content,
:root[data-theme="dark"] .help-article-content p {
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .help-filters {
  background: #0f1728;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .filter-btn {
  background: #101827;
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--color-text);
}

:root[data-theme="dark"] .filter-btn:hover,
:root[data-theme="dark"] .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

:root[data-theme="dark"] .help-search-icon {
  color: #7f8ba3;
}

:root[data-theme="dark"] .help-search input {
  background: #101827;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .help-search input::placeholder {
  color: var(--color-text-soft);
  opacity: 1;
}

:root[data-theme="dark"] .help-search input:focus {
    border-color: rgba(155, 124, 255, 0.65);
    box-shadow: 0 0 0 4px rgba(155, 124, 255, 0.16);
}

:root[data-theme="dark"] .help-list-item,
:root[data-theme="dark"] .help-centre-related-item,
:root[data-theme="dark"] .help-centre-share-box,
:root[data-theme="dark"] .help-centre-related-box,
:root[data-theme="dark"] .help-centre-helpful-box,
:root[data-theme="dark"] .help-category-description,
:root[data-theme="dark"] .help-metric-box,
:root[data-theme="dark"] .help-benefit-box,
:root[data-theme="dark"] .help-article-row,
:root[data-theme="dark"] .help-centre-banner,
:root[data-theme="dark"] .help-article-image img {
  background: #101827;
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

:root[data-theme="dark"] .help-list-item:hover,
:root[data-theme="dark"] .help-centre-related-item:hover {
  border-color: rgba(182, 156, 255, 0.35);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .help-list-helpful,
:root[data-theme="dark"] .help-centre-related-helpful {
  background: rgba(155, 124, 255, 0.10);
  border-color: rgba(155, 124, 255, 0.20);
color: #4de4af;
}

:root[data-theme="dark"] .help-list-arrow,
:root[data-theme="dark"] .help-centre-related-arrow,
:root[data-theme="dark"] .helpful-count {
    color: #4de4af;
}

:root[data-theme="dark"] .help-share-btn,
:root[data-theme="dark"] .helpful-btn {
  background: #0f1728;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

:root[data-theme="dark"] .help-share-btn:hover,
:root[data-theme="dark"] .helpful-btn:hover:not(:disabled) {
  border-color: rgba(182, 156, 255, 0.4);
  color: var(--color-primary);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .help-centre-banner-panel-left {
    background: #19253d;
}

:root[data-theme="dark"] .help-centre-banner-panel-right {
  background: #101827;
}

:root[data-theme="dark"] .help-centre-banner-divider {
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .help-article-step-number {
  color: #08101e;
}

:root[data-theme="dark"] .help-article-note-blue {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(96, 165, 250, 0.35);
  color: #bfdbfe;
}

:root[data-theme="dark"] .help-article-note-green {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(74, 222, 128, 0.35);
  color: #bbf7d0;
}

:root[data-theme="dark"] .help-article-note-yellow {
  background: rgba(234, 179, 8, 0.14);
  border-color: rgba(250, 204, 21, 0.35);
  color: #fde68a;
}

:root[data-theme="dark"] .help-article-note-red {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

:root[data-theme="dark"] .help-metric-item h5 {
  color: var(--color-primary);
}

:root[data-theme="dark"] .single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs,
:root[data-theme="dark"] .single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-item,
:root[data-theme="dark"] .single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-item a,
:root[data-theme="dark"] .single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-current,
:root[data-theme="dark"] .single-post.category-help-centre #breadcrumbs.help-centre-breadcrumbs .crumb-separator {
  color: var(--color-text-soft) !important;
}

:root[data-theme="dark"] .help-pagination .page-numbers {
  background: #101827;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--color-text);
}

:root[data-theme="dark"] .help-pagination .page-numbers.current,
:root[data-theme="dark"] .help-pagination .page-numbers:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #08101e;
}

/* optional: make CTA buttons in help centre dark mode keep contrast */
:root[data-theme="dark"] .help-centre-banner .btn,
:root[data-theme="dark"] .help-search button {
  box-shadow: none;
}

/* Breadcrumb container */
#breadcrumbs {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Remove bold slashes and replace spacing */
#breadcrumbs b {
  margin: 0 8px;
  font-weight: normal;
}

/* Links */
#breadcrumbs a {
  text-decoration: none;
    color: var(--color-primary);
  transition: color 0.2s ease;
}

/* Hover effect */
#breadcrumbs a:hover {
  text-decoration: underline;
}

/* Last breadcrumb (current page) */
#breadcrumbs .breadcrumb_last {
  font-weight: 500;
}

/* Optional: make separators cleaner using pseudo-element instead */
#breadcrumbs span > span:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #ccc;
}

/* If you enable the above, hide the existing <b> separators */
#breadcrumbs b {
  display: none;
}

/* =========================
   Integrations repository page
   ========================= */

.integrations-repository-page {
margin-bottom:30px;
}


.integrations-repository-page-header {
  margin-bottom: 20px;
}

.integrations-repository-page-content {
  max-width: 820px;
  margin-bottom: 0;
}

.integrations-repository-shell {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.integrations-repository-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.integrations-repository-toolbar__copy {
  min-width: 0;
  max-width: 620px;
}

.integrations-repository-toolbar__copy h2 {
  margin: 0;
  font-family: 'Uniform', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: #2a3b6c;
}

.integrations-repository-search-shell {
  max-width: 360px;
  margin-left: auto;
}

.integrations-repository-search-wrap {
  position: relative;
}

.integrations-repository-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #7a869f;
  pointer-events: none;
  z-index: 2;
}

.integrations-repository-search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.integrations-repository-search {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 56px;
  padding: 0 18px 0 50px;
  border: 1px solid #d9e2ef;
  border-radius: 16px;
  background: #fff;
  color: var(--color-text);
  box-shadow: 0 10px 24px rgba(42, 59, 108, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.integrations-repository-search::placeholder {
  color: #98a2b3;
}

.integrations-repository-search:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(98, 62, 231, 0.45);
  box-shadow: 0 0 0 4px rgba(98, 62, 231, 0.12), 0 12px 28px rgba(42, 59, 108, 0.1);
}

.integrations-repository-search-meta {
  margin: 10px 2px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-soft);
  text-align: right;
}

.integration-feature-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  margin-bottom: 34px;
  border: 1px solid #e5ebf5;
  border-radius: 28px;
  background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 55%, #fbfcff 100%);
  box-shadow: 0 24px 50px rgba(42, 59, 108, 0.08);
}

.integration-feature-card__media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.integration-feature-card__icon-wrap {
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 1px solid #e6edf7;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.integration-feature-card__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-feature-card__fallback {
  width: 82px;
  height: 82px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Uniform', sans-serif;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(135deg, #623ee7 0%, #7d5af5 100%);
}

.integration-feature-card__content h3 {
  margin: 0 0 12px;
  font-family: 'Uniform', sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
}

.integration-feature-card__description p,
.integration-feature-card__description {
  margin: 0;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.integration-feature-card__description p + p {
  margin-top: 14px;
}

.integration-feature-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.integration-feature-card__gallery {
  display: flex;
  align-items: center;
  gap: 8px;
}

.integration-feature-card__gallery-link.is-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #17233d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.integration-feature-card__gallery-link.is-trigger:hover,
.integration-feature-card__gallery-link.is-trigger:focus-visible {
  color: #fff;
  background: #623ee7;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(98, 62, 231, 0.18);
}

.integration-feature-card__gallery-link.is-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.integrations-repository-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.integrations-repository-results__header h3 {
  margin: 0;
  font-family: 'Uniform', sans-serif;
  font-size: 28px;
  line-height: 1.1;
}

.integrations-repository-results__header p {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-soft);
}

.integrations-repository-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.integration-repository-card {
  min-width: 0;
}

.integration-repository-card[hidden] {
  display: none !important;
}

.integration-repository-card__button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.integration-repository-card__button:focus-visible {
  outline: none;
}

.integration-repository-card__inner {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #e5ebf5;
  background: #fff;
  box-shadow: 0 14px 34px rgba(42, 59, 108, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.integration-repository-card__button:hover .integration-repository-card__inner,
.integration-repository-card__button:focus-visible .integration-repository-card__inner,
.integration-repository-card.is-selected .integration-repository-card__inner {
  transform: translateY(-4px);
  border-color: rgba(98, 62, 231, 0.24);
  box-shadow: 0 22px 42px rgba(42, 59, 108, 0.12);
}

.integration-repository-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.integration-repository-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 1px solid #e6edf7;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}

.integration-repository-card__icon {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-repository-card__fallback {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Uniform', sans-serif;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #623ee7 0%, #7d5af5 100%);
}

.integration-repository-card h4 {
  margin: 0 0 10px;
  font-family: 'Uniform', sans-serif;
  font-size: 22px;
  line-height: 1.15;
}

.integration-repository-card p {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-soft);
}

.integrations-repository-empty {
  padding: 34px;
  border: 1px dashed #ccd8e8;
  border-radius: 24px;
  background: #f9fbff;
  text-align: center;
}

.integrations-repository-empty__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.integrations-repository-empty h3 {
  margin: 0 0 10px;
  font-family: 'Uniform', sans-serif;
  font-size: 28px;
}

.integrations-repository-empty p {
  margin: 0;
  color: var(--color-text-soft);
}

@media (max-width: 1100px) {
  .integrations-repository-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-feature-card__icon-wrap {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 900px) {
  .integrations-repository-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .integrations-repository-search-shell {
    flex: 1 1 auto;
    max-width: none;
  }

  .integrations-repository-search-meta {
    text-align: left;
    margin-right: 0;
  }

  .integration-feature-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
  }

  .integration-feature-card__media {
    justify-content: flex-start;
  }

  .integration-feature-card__actions {
    width: auto;
  }
}

@media (max-width: 767px) {
  .integrations-repository-page {
    padding: 0px 0 64px;
  }

  .integrations-repository-shell {
    margin-top: 28px;
    padding-top: 24px;
  }

  .integrations-repository-grid {
    grid-template-columns: 1fr;
  }

  .integrations-repository-results__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .integration-feature-card__content h3 {
    font-size: 30px;
  }

  .integration-feature-card__description,
  .integration-feature-card__description p {
    font-size: 16px;
  }
}

.servicemate-page-title {
  font-family: 'Uniform', sans-serif;
  margin: 0;
  font-size: clamp(1rem, 7vw, 2.5rem);
  line-height: 1.1;
  color: var(--color-primary);
  font-weight: 700;
}

:root[data-theme="dark"] .servicemate-page-title {
  color: var(--color-primary);
}

/* =========================================================
   INTEGRATIONS REPOSITORY REFINEMENTS
   ========================================================= */

.integrations-repository-page-header,
.integrations-repository-page-content,
.integrations-repository-shell {
  position: relative;
}

.integrations-repository-page-header {
  margin-bottom: 24px;
}

.integrations-repository-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.integrations-repository-page .servicemate-page-title {
  margin: 0;
    font-size: clamp(1rem, 7vw, 2.5rem);
  line-height: 1.05;
}

.integrations-repository-page-content {
  max-width: 820px;
  margin-bottom: 40px;
  color: #475467;
  font-size: 1rem;
  line-height: 1.75;
}

.integrations-repository-page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.integrations-repository-shell {
  border-top: 1px solid #eef2f6;
  padding-top: 32px;
}

.integrations-repository-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.integrations-repository-toolbar__copy h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}

.integrations-repository-search-shell {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}

.integrations-repository-search-wrap {
  position: relative;
}

.integrations-repository-search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #98a2b3;
  pointer-events: none;
}

.integrations-repository-search-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.integrations-repository-search {
  width: 100%;
  height: 56px;
  border: 1px solid #d0d5dd;
  border-radius: 16px;
  background: #fff;
  padding: 0 18px 0 52px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.integrations-repository-search::placeholder {
  color: #98a2b3;
}

.integrations-repository-search:focus {
  outline: none;
  border-color: #7f56d9;
  box-shadow: 0 0 0 4px rgba(127, 86, 217, 0.12);
  transform: translateY(-1px);
}

.integration-feature-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 32px;
  margin-bottom: 34px;
  border: 1px solid #e6ebf2;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.integration-feature-card__media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.integration-feature-card__icon-wrap {
  width: 150px;
  height: 150px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.integration-feature-card__icon {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.integration-feature-card__fallback {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7f56d9;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}

.integration-feature-card__content {
  min-width: 0;
  width: 100%;
  max-width: none;
}

.integration-feature-card__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1rem, 7vw, 2.5rem);
  line-height: 1.1;
}

.integration-feature-card__description {
  width: 100%;
  max-width: none;
  color: #475467;
}

.integration-feature-card__description > *:first-child {
  margin-top: 0;
}

.integration-feature-card__description > *:last-child {
  margin-bottom: 0;
}

.integration-feature-card__description p,
.integration-feature-card__description li {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.8;
}

.integration-feature-card__description h1,
.integration-feature-card__description h2,
.integration-feature-card__description h3,
.integration-feature-card__description h4,
.integration-feature-card__description h5,
.integration-feature-card__description h6 {
}

.integration-feature-card__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
}

.integration-feature-card__gallery-button {
    font-family: 'Uniform', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.integration-feature-card__gallery-button:hover,
.integration-feature-card__gallery-button:focus-visible {
  transform: translateY(-1px);
  border-color: #7f56d9;
  box-shadow: 0 12px 28px rgba(127, 86, 217, 0.15);
  outline: none;
}

.integrations-repository-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.integrations-repository-results__header h3 {
  margin: 0;
}

.integrations-repository-results__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.integrations-repository-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  background: #fff;
  color: #344054;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.integrations-repository-stat--total {
  background: #f5f3ff;
  border-color: rgba(127, 86, 217, 0.18);
  color: #6941c6;
}

.integrations-repository-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.integration-repository-card[hidden] {
  display: none !important;
}

.integration-repository-card__button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.integration-repository-card__inner {
  height: 100%;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.integration-repository-card__button:hover .integration-repository-card__inner,
.integration-repository-card__button:focus-visible .integration-repository-card__inner {
  transform: translateY(-4px);
  border-color: #d0d5dd;
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.10);
}

.integration-repository-card.is-selected .integration-repository-card__inner {
  border-color: #7f56d9;
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.12), 0 16px 32px rgba(127, 86, 217, 0.12);
}

.integration-repository-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.integration-repository-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}

.integration-repository-card__icon {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.integration-repository-card__fallback {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7f56d9;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.integration-repository-card h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
color: #2a3b6c;
}

.integration-repository-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #667085;
}

.integrations-repository-empty {
  padding: 44px 24px;
  border: 1px dashed #d0d5dd;
  border-radius: 24px;
  background: #fcfcfd;
  text-align: center;
}

.integration-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.integration-gallery-lightbox[hidden] {
  display: none !important;
}

.integration-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 18, 0.78);
  backdrop-filter: blur(6px);
}

.integration-gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  min-height: calc(100% - 32px);
  margin: 16px auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.integration-gallery-lightbox__figure {
  margin: 0;
  background: #0b1220;
  border-radius: 24px;
  padding: 20px;
  min-height: min(78vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.integration-gallery-lightbox__image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.integration-gallery-lightbox__caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.integration-gallery-lightbox__nav,
.integration-gallery-lightbox__close {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #3f3f3f;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.integration-gallery-lightbox__nav {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 2rem;
}

.integration-gallery-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}

.integration-lightbox-open,
.integration-lightbox-open body {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .integrations-repository-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {

  .integrations-repository-header-row,
  .integrations-repository-toolbar,
  .integrations-repository-results__header {
    flex-direction: column;
    align-items: stretch;
  }

  .integrations-repository-search-shell {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .integrations-repository-results__meta {
    justify-content: flex-start;
  }

  .integration-feature-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .integration-feature-card__actions {
    justify-content: flex-start;
  }

  .integration-feature-card__icon-wrap {
    width: 120px;
    height: 120px;
  }

  .integration-gallery-lightbox__dialog {
    width: calc(100% - 20px);
    margin: 10px auto;
    min-height: calc(100% - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .integration-gallery-lightbox__figure {
    min-height: auto;
  }

  .integration-gallery-lightbox__nav {
    position: absolute;
    bottom: 24px;
    z-index: 2;
  }

  .integration-gallery-lightbox__nav.is-prev {
    left: 18px;
  }

  .integration-gallery-lightbox__nav.is-next {
    right: 18px;
  }
}

@media (max-width: 640px) {

  .integrations-repository-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .integration-repository-card__button,
  .integration-repository-card__inner {
    height: auto;
  }

  .integrations-repository-search {
    height: 52px;
    border-radius: 14px;
  }

  .integration-feature-card {
    gap: 18px;
    border-radius: 20px;
  }

  .integration-feature-card__content h3 {
    font-size: 1.5rem;
  }

  .integration-repository-card__inner {
    border-radius: 18px;
    padding: 18px;
  }

  .integration-gallery-lightbox__figure {
    padding: 14px;
    border-radius: 18px;
  }
}

/* =========================================================
   INTEGRATIONS REPOSITORY FINAL FIXES
   ========================================================= */
.integrations-repository-page .container {
}

.integrations-repository-page-header {
  margin-bottom: 32px;
}

.integrations-repository-header-row {
  align-items: center;
}

.integrations-repository-search-shell {
  max-width: 360px;
  margin-left: auto;
}

.integrations-repository-results__header {
  align-items: flex-start;
  margin-bottom: 22px;
}

.integrations-repository-results__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.integrations-repository-results__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
  color: #667085;
  font-size: 0.95rem;
  line-height: 1.5;
}

.integrations-repository-results__summary-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

.integrations-repository-results__summary-item strong {
  font-size: 1.05rem;
  line-height: 1;
    color: #623ee7;
}

.integrations-repository-results__summary-separator {
  color: #d0d5dd;
}

.integrations-repository-stat,
.integrations-repository-results__meta {
  all: unset;
}

.integration-feature-card__actions {
  padding-top: 4px;
}

.integration-feature-card__gallery-button {
  min-width: 148px;
}

.integration-gallery-lightbox__figure {
  gap: 16px;
}

.integration-gallery-lightbox__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 4px 2px 0;
  scrollbar-width: thin;
}

.integration-gallery-lightbox__thumb {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.integration-gallery-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.integration-gallery-lightbox__thumb.is-active {
  border-color: #9b7cff;
  box-shadow: 0 0 0 3px rgba(155, 124, 255, 0.18);
}

@media (max-width: 900px) {
  .integrations-repository-page .container {
    width: min(100% - 24px, 1200px);
  }

  .integrations-repository-results__summary {
    gap: 8px;
  }

  .integrations-repository-results__summary-separator {
    display: none;
  }
}

@media (max-width: 767px) {
  .integrations-repository-toolbar {
    align-items: stretch;
  }

  .integrations-repository-search-shell {
    max-width: 100%;
  }

  .integration-feature-card__gallery-button {
    width: 100%;
    min-width: 0;
  }

  .integration-gallery-lightbox__thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }
}

/* =========================================================
   INTEGRATIONS REPOSITORY V5 POLISH
   ========================================================= */
.integrations-repository-results__header {
  align-items: center;
}

.integrations-repository-results__summary {
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.integrations-repository-results__summary-item {
  align-items: center;
}

.integrations-repository-results__summary-item span {
  white-space: nowrap;
}

.integration-gallery-lightbox__backdrop {
  background: rgba(22, 27, 39, 0.54);
  backdrop-filter: blur(10px);
}

.integration-gallery-lightbox__figure {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f5f7fb 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.integration-gallery-lightbox__caption {
  color: #475467;
}

.integration-gallery-lightbox__nav,
.integration-gallery-lightbox__close {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

.integration-gallery-lightbox__thumb {
  background: rgba(99, 102, 241, 0.06);
}


:root[data-theme="dark"] .integrations-repository-toolbar__copy h2,
:root[data-theme="dark"] .integration-feature-card__content h3,
:root[data-theme="dark"] .integrations-repository-results__header h3,
:root[data-theme="dark"] .integration-repository-card h4,
:root[data-theme="dark"] .integrations-repository-results__summary-item strong {
  color: #eef2ff;
}

:root[data-theme="dark"] .servicemate-faq-title,
:root[data-theme="dark"] .servicemate-faq-question{
  color:var(--color-text);
}

:root[data-theme="dark"] .servicemate-faq-item{
background: linear-gradient(135deg, #101827 0%, #0f1728 100%);
  border-color:var(--color-border);
}

:root[data-theme="dark"] .servicemate-faq-answer{
  color:var(--color-text-soft);
}

:root[data-theme="dark"] .servicemate-faq-answer-inner{
  border-top-color:var(--color-border);
}

:root[data-theme="dark"] .servicemate-faq-icon{
  background:rgba(155, 124, 255, 0.12);
}

:root[data-theme="dark"] .integrations-repository-page .servicemate-page-title {
    color: var(--color-primary);
}

:root[data-theme="dark"] .integrations-repository-page-content,
:root[data-theme="dark"] .integration-feature-card__description,
:root[data-theme="dark"] .integration-feature-card__description p,
:root[data-theme="dark"] .integration-feature-card__description li,
:root[data-theme="dark"] .integration-repository-card p,
:root[data-theme="dark"] .integrations-repository-results__summary,
:root[data-theme="dark"] .integration-gallery-lightbox__caption,
:root[data-theme="dark"] .integrations-repository-empty p {
  color: #b8c0d9;
}

:root[data-theme="dark"] .integrations-repository-shell {
  border-top-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .integrations-repository-search {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #eef2ff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .integrations-repository-search::placeholder,
:root[data-theme="dark"] .integrations-repository-search-icon {
  color: #8ea0c7;
}

:root[data-theme="dark"] .integrations-repository-search:focus {
  border-color: rgba(155, 124, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(155, 124, 255, 0.16);
}

:root[data-theme="dark"] .integration-feature-card {
  background: #08101e;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .integration-feature-card__icon-wrap,
:root[data-theme="dark"] .integration-repository-card__icon-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .integration-feature-card__gallery-button,
:root[data-theme="dark"] .integration-repository-card__inner,
:root[data-theme="dark"] .integrations-repository-empty {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .integration-feature-card__gallery-button {
  color: #eef2ff;
}

:root[data-theme="dark"] .integration-feature-card__gallery-button:hover,
:root[data-theme="dark"] .integration-feature-card__gallery-button:focus-visible,
:root[data-theme="dark"] .integration-repository-card__button:hover .integration-repository-card__inner,
:root[data-theme="dark"] .integration-repository-card__button:focus-visible .integration-repository-card__inner {
  border-color: rgba(155, 124, 255, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .integration-repository-card.is-selected .integration-repository-card__inner {
  border-color: rgba(155, 124, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(155, 124, 255, 0.15), 0 20px 44px rgba(0, 0, 0, 0.32);
}

:root[data-theme="dark"] .integrations-repository-results__summary-separator {
  color: rgba(255, 255, 255, 0.18);
}

:root[data-theme="dark"] .integration-gallery-lightbox__backdrop {
  background: rgba(8, 12, 20, 0.68);
}

:root[data-theme="dark"] .integration-gallery-lightbox__figure {
  background: linear-gradient(180deg, #111a2e 0%, #0b1220 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

:root[data-theme="dark"] .integration-gallery-lightbox__nav,
:root[data-theme="dark"] .integration-gallery-lightbox__close {
  background: rgba(17, 26, 46, 0.88);
  color: #eef2ff;
}

:root[data-theme="dark"] .integration-gallery-lightbox__thumb {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .integrations-repository-results__summary {
    margin-left: 0;
    justify-content: flex-start;
    text-align: left;
  }
}

/* =========================
   CONTACT US PAGE
   ========================= */

.servicemate-contact-page {
  padding: 48px 0 88px;
}

.servicemate-contact-page-article {
  display: grid;
  gap: 40px;
}

.servicemate-contact-page-header {
  margin: 0;
  padding: 0;
}

.servicemate-contact-page-title {
  margin: 0;
}

.servicemate-contact-page-content {
  display: grid;
  gap: 24px;
}

.servicemate-contact-support {
  display: grid;
  gap: 24px;
  margin-top: 8px;
}

.servicemate-contact-support__header {
  max-width: 720px;
}

.servicemate-contact-support__header h2 {
  margin: 0 0 10px;
  font-family: "Uniform", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.servicemate-contact-support__header p {
  margin: 0;
  color: var(--color-text-soft);
}

.servicemate-contact-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.servicemate-contact-support-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(42, 59, 108, 0.10);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

a.servicemate-contact-support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(42, 59, 108, 0.10);
  border-color: rgba(42, 59, 108, 0.16);
}

.servicemate-contact-support-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
padding:13px;
  height: 62px;
  border-radius: 14px;
  background: rgba(98, 62, 231, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.servicemate-contact-support-card__icon svg {
  width: 24px;
  height: 24px;
}

.servicemate-contact-support-card__content {
  display: grid;
  gap: 10px;
  height: 100%;
}

.servicemate-contact-support-card__content h3 {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.2;
}

.servicemate-contact-support-card__content p {
  margin: 0;
  color: var(--color-text-soft);
}

.servicemate-contact-support-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-weight: 700;
  color: var(--color-primary);
}

.servicemate-contact-support-card__link::after {
  content: "→";
}

.servicemate-contact-support-card--social:hover {
  transform: none;
}

.servicemate-contact-support-socials {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.servicemate-contact-support-socials__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(42, 59, 108, 0.10);
  border-radius: 14px;
  background: #fff;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.servicemate-contact-support-socials__item:hover {
  transform: translateY(-2px);
  border-color: rgba(42, 59, 108, 0.16);
  box-shadow: 0 10px 20px rgba(42, 59, 108, 0.08);
}

.servicemate-contact-support-socials__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(98, 62, 231, 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.servicemate-contact-support-socials__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.servicemate-contact-support-socials__empty {
  color: var(--color-text-soft);
  font-size: 14px;
}

:root[data-theme="dark"] .servicemate-contact-support-card,
:root[data-theme="dark"] .servicemate-contact-support-socials__item {
  background: rgba(18, 25, 43, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
}

:root[data-theme="dark"] .servicemate-contact-support-card__icon,
:root[data-theme="dark"] .servicemate-contact-support-socials__icon {
  background: rgba(155, 124, 255, 0.16);
}

@media (max-width: 991px) {
  .servicemate-contact-support__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .servicemate-contact-page {
    padding: 32px 0 72px;
  }

  .servicemate-contact-page-article {
    gap: 32px;
  }

  .servicemate-contact-support-card {
    padding: 22px;
    border-radius: 18px;
  }
}

/* =========================================================
   Careers page + job listings
   ========================================================= */
.careers-page{
margin-bottom:30px;
}

.careers-page-article {
}

.careers-page-header {
  margin-bottom: -30px;
}

.careers-page-intro {
    max-width: 1200px;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 20px;
}

.careers-listings {
  margin-top: 12px;
}

.careers-listings__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.careers-listings__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.careers-listings__header h2 {
  margin: 0;
  font-family: 'Uniform', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  line-height: 1.1;
}

.careers-listings__count {
  flex-shrink: 0;
  color: var(--color-text-soft);
  font-weight: 600;
}

.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 22px;
}

.career-job-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid #e6ebf2;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.career-job-card.is-featured {
  border-color: rgba(127, 86, 217, 0.35);
  box-shadow: 0 18px 48px rgba(127, 86, 217, 0.12);
}

.career-job-card__meta {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 160px;
}

.career-job-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
margin:15px;
  background: #eef2ff;
  color: #5b3cc4;
  font-size: 0.88rem;
  font-weight: 700;
}

.career-job-card__tag.is-highlight {
  background: #f4ebff;
  color: #7f56d9;
}

.career-job-card__title {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.career-job-card__summary {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.75;
}

.career-job-card__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.career-job-card__details div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.03);
}

.career-job-card__details dt {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #667085;
  font-weight: 700;
}

.career-job-card__details dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.career-job-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.career-job-card__date {
  color: #667085;
  font-size: 0.92rem;
}

.careers-empty-state {
  padding: 32px;
  border: 1px dashed #d0d5dd;
  border-radius: 24px;
  background: #fcfcfd;
}

.careers-empty-state h3 {
  margin-top: 0;
}

@media (max-width: 991px) {
  .careers-jobs-grid {
    grid-template-columns: 1fr;
  }

  .career-job-card__details {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .careers-page-article {
    padding: 0px;
  }

  .careers-listings__header,
  .career-job-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-job-card__details {
    grid-template-columns: 1fr;
  }
}

:root[data-theme="dark"] .career-job-card {
  background: #101827;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

:root[data-theme="dark"] .career-job-card__tag {
  background: rgba(127, 86, 217, 0.18);
  color: #d9ccff;
}

:root[data-theme="dark"] .career-job-card__details div,
:root[data-theme="dark"] .careers-empty-state {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .careers-listings__count,
:root[data-theme="dark"] .career-job-card__summary,
:root[data-theme="dark"] .career-job-card__date,
:root[data-theme="dark"] .career-job-card__details dt {
  color: rgba(255, 255, 255, 0.7);
}


.integrations-directory-actions {
  margin-top: 50px;
  text-align: center;
}

.integrations-directory-actions .btn {
  min-width: 220px;
}


.career-job-single {
  padding: 56px 0;
}


.career-job-single__back {
  display: inline-flex;
  margin-bottom: 24px;
  font-weight: 700;
}

.career-job-single__header {
  position: relative;
  margin-bottom: 24px;
  padding-right: 190px;
}

.career-job-single__title {
  margin: 0 0 10px;
    font-size: clamp(1rem, 7vw, 2.5rem);
  line-height: 1.08;
}

.career-job-single__meta {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 180px;
}

.career-job-single__submeta {
  color: #667085;
  font-weight: 600;
}

.career-job-single__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.career-job-single__details div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.03);
}

.career-job-single__details dt {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #667085;
  font-weight: 700;
}

.career-job-single__details dd {
  margin: 0;
  color: var(--color-text);
  font-weight: 600;
}

.career-job-single__content {
  line-height: 1.8;
}

.career-job-single__actions {
  margin-top: 28px;
}

@media (max-width: 767px) {
  .career-job-single {
    padding: 24px 0;
  }


  .career-job-card__top,
  .career-job-single__header {
    padding-right: 0;
  }

  .career-job-card__meta,
  .career-job-single__meta {
    position: static;
    max-width: none;
    justify-content: flex-start;
    margin-bottom: 18px;
  }

  .career-job-single__details {
    grid-template-columns: 1fr;
  }
}


:root[data-theme="dark"] .career-job-single__details div {
  background: rgba(255, 255, 255, 0.03);
}

:root[data-theme="dark"] .career-job-single__submeta,
:root[data-theme="dark"] .career-job-single__details dt {
  color: #98a2b3;
}

/* =========================================================
   ServiceMate CF7 - full replacement
   ========================================================= */

.servicemate-cf7 {
  width: 100%;
}

.servicemate-cf7__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.servicemate-cf7__field {
  min-width: 0;
}

.servicemate-cf7__field--full {
  grid-column: 1 / -1;
}

.servicemate-cf7__field label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

.servicemate-cf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Base fields */
.servicemate-cf7 input[type="text"],
.servicemate-cf7 input[type="email"],
.servicemate-cf7 input[type="tel"],
.servicemate-cf7 textarea,
.servicemate-cf7 select {
  width: 100%;
  min-height: 56px;
  border: 1px solid #d9e2ef;
  border-radius: 16px;
  background-color: #ffffff;
  color: var(--color-text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(42, 59, 108, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.servicemate-cf7 input[type="text"],
.servicemate-cf7 input[type="email"],
.servicemate-cf7 input[type="tel"] {
  padding: 0 18px;
}

.servicemate-cf7 textarea {
  min-height: 160px;
  padding: 16px 18px;
  resize: vertical;
}

/* Select wrapper */
.servicemate-cf7__select {
  position: relative;
  width: 100%;
}

.servicemate-cf7__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #98a2b3;
  border-bottom: 2px solid #98a2b3;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.servicemate-cf7 select {
  padding: 0 48px 0 18px;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  background-position: initial !important;
  background-size: initial !important;
}

.servicemate-cf7 select::-ms-expand {
  display: none;
}

.servicemate-cf7 input::placeholder,
.servicemate-cf7 textarea::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.servicemate-cf7 input[type="text"]:focus,
.servicemate-cf7 input[type="email"]:focus,
.servicemate-cf7 input[type="tel"]:focus,
.servicemate-cf7 textarea:focus,
.servicemate-cf7 select:focus {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(98, 62, 231, 0.45);
  box-shadow: 0 0 0 4px rgba(98, 62, 231, 0.12), 0 12px 28px rgba(42, 59, 108, 0.10);
}

/* Consent */
.servicemate-cf7__consent {
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.servicemate-cf7__consent .wpcf7-list-item {
  margin: 0;
}

.servicemate-cf7__consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  accent-color: var(--color-primary);
  box-shadow: none;
  min-height: 0;
}

/* Submit */
.servicemate-cf7__actions {
  margin-top: 4px;
}

.servicemate-cf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(to right, var(--color-green-start), var(--color-green-end));
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.servicemate-cf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8, 197, 119, 0.18);
}

/* Messages */
.servicemate-cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #dc2626;
}

.servicemate-cf7 .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 4px 0 0 !important;
  padding: 14px 16px !important;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.servicemate-cf7 .wpcf7-spinner {
  margin: 14px 0 0 12px;
  vertical-align: middle;
}

/* Dark mode */
:root[data-theme="dark"] .servicemate-cf7__field label {
  color: var(--color-text);
}

:root[data-theme="dark"] .servicemate-cf7 input[type="text"],
:root[data-theme="dark"] .servicemate-cf7 input[type="email"],
:root[data-theme="dark"] .servicemate-cf7 input[type="tel"],
:root[data-theme="dark"] .servicemate-cf7 textarea,
:root[data-theme="dark"] .servicemate-cf7 select {
  background-color: #101827;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

:root[data-theme="dark"] .servicemate-cf7 input::placeholder,
:root[data-theme="dark"] .servicemate-cf7 textarea::placeholder {
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .servicemate-cf7__consent {
  color: var(--color-text-soft);
}

:root[data-theme="dark"] .servicemate-cf7__select::after {
  border-right-color: #d1d5db;
  border-bottom-color: #d1d5db;
}

:root[data-theme="dark"] .servicemate-cf7 input[type="submit"] {
	    color: var(--color-white);
}

/* Mobile */
@media (max-width: 767px) {
  .servicemate-cf7__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .servicemate-cf7__field--full {
    grid-column: auto;
  }

  .servicemate-cf7 input[type="submit"] {
    width: 100%;
  }
}

/* Integration card title alignment */
.integration-directory-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.integration-directory-card-header .integration-directory-icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

.integration-directory-card-header h3 {
  margin: 0;
}

.integration-repository-card__header {
  align-items: center;
  justify-content: flex-start;
}

.integration-repository-card__header h4 {
  margin: 0;
}

@media (max-width: 575.98px) {
  .integration-directory-card-header,
  .integration-repository-card__header {
    gap: 12px;
  }

  .integration-directory-icon-wrap,
  .integration-repository-card__icon-wrap {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
}



/* Repository cards match directory card typography */
.integration-repository-card h4 {
  font-family: 'Uniform', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a3b6c;
  margin: 0;
}

.integration-repository-card p {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0;
}

:root[data-theme="dark"] .integration-repository-card h4 {
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .integration-repository-card h4 {
    font-size: 24px;
  }

  .integration-repository-card p {
    font-size: 16px;
  }
}

.wpcf7 form .wpcf7-response-output {
          margin: 30px 0 0 !important;
    border: 2px solid #9b7cff !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
}


/* =========================================================
   MOBILE SEARCH LAYOUT REFRESH
   ========================================================= */
@media (max-width: 767px) {
  .help-centre-hero {
    z-index: 18;
    margin-bottom: 12px;
    padding-bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 82%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(10px);
  }

  .help-centre-header-row {
    gap: 14px;
  }

  .help-centre-title-wrap {
    width: 100%;
  }

  .help-centre-title {
    font-size: 28px;
    line-height: 1.05;
  }

  .servicemate-page-title {
    width: 100%;
    font-size: 28px;
    line-height: 1.05;
  }

  .help-search input {
    min-height: 54px;
    border-radius: 18px;
  }

  .help-filters {
        border: none;
        padding: 0px;
        margin-bottom: 18px;
        background: none;
  }

  .help-filters-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-right: -12px;
    padding-right: 12px;
    scrollbar-width: none;
  }

  .help-filters-inner::-webkit-scrollbar {
    display: none;
  }

  .help-list-wrap {
    margin-top: 0;
  }

  .help-article-list {
    display: grid;
    gap: 14px;
  }

  .help-list-item {
    margin: 0;
  }

  .help-list-link {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(42, 59, 108, 0.08);
  }

  .help-centre-archive-cta {
    margin-top: 28px;
  }

  .integrations-repository-page-header {
    z-index: 18;
    padding-bottom: 14px;
    margin-bottom: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 82%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(10px);
  }

  .integrations-repository-page-header .servicemate-page-title {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.05;
  }

  .integrations-repository-page-content {
    margin-bottom: 18px;
  }

  .integrations-repository-shell {
    margin-top: 18px;
    padding-top: 0;
  }

  .integration-feature-card {
    display: none;
  }

  .integrations-repository-results {
    border: 0;
    background: transparent;
    box-shadow: none;
    padding-top: 25px;
    padding-left: 5px;
    padding-right: 0;
    padding-bottom: 0;
  }

  .integrations-repository-results__header {
    gap: 10px;
    margin-bottom: 25px;
    align-items: center;
    text-align: center;
  }

  .integrations-repository-results__heading {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .integrations-repository-results__summary {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .integrations-repository-grid {
    gap: 14px;
  }

  .integration-repository-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 34px rgba(42, 59, 108, 0.08);
    border: 1px solid #e8edf6;
  }

  .integration-repository-card__button {
    width: 100%;
  }

  .integration-repository-card__inner {
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 18px;
  }

  .integration-repository-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 1 1 auto;
  }

  .integration-repository-card__header {
    margin-bottom: 0;
  }

  .integration-repository-card__header h4 {
    margin: 0;
  }

  .integration-text {
    display: none !important;
    margin-top: 0;
  }

  .integration-repository-card__toggle {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-right: 2px solid #6b7280;
    border-bottom: 2px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .integration-repository-card.is-current .integration-repository-card__toggle {
    transform: rotate(-135deg);
  }

  .integration-repository-card__mobile-detail[hidden] {
    display: none !important;
  }

  .integration-repository-card__mobile-detail-inner {
    padding: 0 18px 18px;
    border-top: 1px solid #edf1f7;
  }

  .integration-repository-card__mobile-description {
    padding-top: 16px;
    color: var(--color-text);
  }

  .integration-repository-card__mobile-description p {
    display: block;
    margin: 0 0 14px;
    color: inherit;
  }

  .integration-repository-card__mobile-description > *:first-child {
    margin-top: 0;
  }

  .integration-repository-card__mobile-description > *:last-child {
    margin-bottom: 0;
  }

  .integration-repository-card__mobile-actions {
    margin-top: 16px;
  }

  .integration-repository-card__mobile-actions .integration-feature-card__gallery-button {
    width: 100%;
  }
}


/* =========================================================
   MOBILE HELP CENTRE + INTEGRATIONS PATCHES
   ========================================================= */
.help-filters-mobile {
  display: none;
}

.help-list-mobile {
  display: none;
}

.help-list-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(98, 62, 231, 0.08);
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.help-list-read-more:hover {
  box-shadow: none;
}

@media (max-width: 767px) {
  .help-category-description-wrap {
    display: none;
  }

  .help-centre-hero {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 82%, rgba(255,255,255,0) 100%);
  }

  .help-centre-header-row {
    align-items: center;
    text-align: center;
  }

  .help-centre-title-wrap {
    display: flex;
    justify-content: center;
  }

  .help-centre-title {
        width: 100%;
        text-align: left;
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.05;
  }

  .help-filters {
  }

  .help-filters-inner--desktop {
    display: none;
  }

  .help-filters-mobile {
    display: block;
    position: relative;
    padding-bottom: 8px;
  }

  .help-filters-mobile::after {
    content: '';
    position: absolute;
    top: 43%;
    right: 18px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #6b7280;
    border-bottom: 1.5px solid #6b7280;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
    z-index: 2;
  }

  .help-filters-select {
    width: 100%;
    min-height: 52px;
    padding: 0 48px 0 16px;
    border: 1px solid #d0d5dd;
    border-radius: 16px;
    background: #fff;
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(42, 59, 108, 0.08);
    appearance: none;
    -webkit-appearance: none;
  }

  .help-list-link--desktop {
    display: none;
  }

  .help-list-mobile {
    display: block;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(42, 59, 108, 0.08);
    overflow: hidden;
  }

  .help-list-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 0;
    background: transparent;
    text-align: left;
    color: inherit;
    cursor: pointer;
  }

  .help-list-toggle .help-list-content {
    min-width: 0;
    flex: 1 1 auto;
  }

  .help-list-toggle .help-list-title {
    margin: 0;
    font-size: 18px;
  }

  .help-list-arrow--faq {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(98, 62, 231, 0.08);
    font-size: 0;
    color: transparent;
    margin-top: 0;
  }

  .help-list-arrow--faq::before,
  .help-list-arrow--faq::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .help-list-arrow--faq::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .help-list-mobile.is-open .help-list-arrow--faq::after {
    opacity: 0;
  }

  .help-list-panel {
    padding: 0 18px 18px;
  }

  .help-list-panel-inner {
    padding-top: 18px;
    border-top: 1px solid #e9e9ef;
  }

  .help-list-panel .help-list-excerpt {
    margin: 0 0 16px;
  }

  .integration-repository-card__toggle {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 999px;
    background: rgba(98, 62, 231, 0.08);
    font-size: 0;
    color: transparent;
    border-right: 0;
    border-bottom: 0;
    transform: none;
  }

  .integration-repository-card__toggle::before,
  .integration-repository-card__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .integration-repository-card__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .integration-repository-card.is-current .integration-repository-card__toggle {
    transform: none;
  }

  .integration-repository-card.is-current .integration-repository-card__toggle::after {
    opacity: 0;
  }
}



@media (max-width: 767px) {
  .help-centre-related-item {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .help-centre-related-item:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .help-centre-related-link--desktop {
    display: none;
  }

  .help-centre-related-mobile {
    display: block;
  }

  .help-centre-related-mobile .help-list-title {
    font-size: 18px;
  }

  .help-centre-related-mobile .help-list-meta {
    margin-top: 12px;
  }

  .help-centre-related-mobile .help-list-helpful {
    font-size: 13px;
    padding: 6px 10px;
  }
}

:root[data-theme="dark"] .help-list-read-more {
  background: rgba(155, 124, 255, 0.14);
  color: #eef2ff;
}

@media (max-width: 767px) {
  :root[data-theme="dark"] .help-centre-hero {
    background: linear-gradient(180deg, rgba(8,16,30,0.98) 0%, rgba(8,16,30,0.92) 82%, rgba(8,16,30,0) 100%);
  }

  :root[data-theme="dark"] .help-filters,
  :root[data-theme="dark"] .integrations-repository-page-header {
    background: linear-gradient(180deg, rgba(8,16,30,0.98) 0%, rgba(8,16,30,0.9) 82%, rgba(8,16,30,0) 100%);
  }

  :root[data-theme="dark"] .help-filters-select,
  :root[data-theme="dark"] .help-list-mobile,
  :root[data-theme="dark"] .integration-repository-card,
  :root[data-theme="dark"] .integrations-repository-empty {
    background: #101827;
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  }

  :root[data-theme="dark"] .help-list-toggle,
  :root[data-theme="dark"] .integration-repository-card__inner,
  :root[data-theme="dark"] .integration-repository-card__mobile-detail-inner {
    background: transparent;
    color: var(--color-text);
  }

  :root[data-theme="dark"] .help-list-panel-inner,
  :root[data-theme="dark"] .integration-repository-card__mobile-detail-inner {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  :root[data-theme="dark"] .integration-repository-card__mobile-description,
  :root[data-theme="dark"] .integration-repository-card__mobile-description p,
  :root[data-theme="dark"] .help-list-panel .help-list-excerpt,
  :root[data-theme="dark"] .integration-repository-card h4,
  :root[data-theme="dark"] .integrations-repository-empty h3 {
    color: var(--color-text);
  }

  :root[data-theme="dark"] .help-filters-select::placeholder,
  :root[data-theme="dark"] .help-list-panel .help-list-excerpt,
  :root[data-theme="dark"] .integration-repository-card__mobile-description,
  :root[data-theme="dark"] .integration-repository-card__mobile-description p,
  :root[data-theme="dark"] .integrations-repository-empty p {
    color: var(--color-text-soft);
  }

  :root[data-theme="dark"] .help-list-arrow--faq,
  :root[data-theme="dark"] .integration-repository-card__toggle,
  :root[data-theme="dark"] .servicemate-faq-icon {
    background: rgba(155, 124, 255, 0.14);
  }

  :root[data-theme="dark"] .help-filters-mobile::after {
    border-right-color: #4de4af;
    border-bottom-color: #4de4af;
  }

  :root[data-theme="dark"] .help-list-arrow--faq::before,
  :root[data-theme="dark"] .help-list-arrow--faq::after,
  :root[data-theme="dark"] .integration-repository-card__toggle::before,
  :root[data-theme="dark"] .integration-repository-card__toggle::after {
    background: #4de4af;
  }
}
