/* ============================================================
   GLOBAL TOKENS & RESET
============================================================ */
:root {
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --color-primary: #3340d0;
  --color-primary-light: #5765ff;
  --color-primary-hover: #2b35b8;

  --color-blue-50: #f2f3fb;
  --color-blue-100: #e6e9ff;
  --color-blue-150: #dde1ff;
  --color-blue-200: #dce0fc;
  --color-blue-250: #d4d9ff;

  --color-text-primary: #161A3D;
  --color-text-secondary: #555870;
  --color-text-muted: #888bac;
  --color-text-white: #ffffff;

  --color-border: #e7e9f6;
  --color-bg-page: #F5F6FF;
  --color-bg-white: #ffffff;
  --color-dark-navy: #161a3d;

  --gradient-primary: linear-gradient(224deg, #1b28a8 0%, #5766ff 55%, #85f3ff 100%);
  --gradient-hero-bg: radial-gradient(ellipse 80% 60% at 70% 40%, #e8ebff 0%, #F5F6FF 60%, #ffffff 100%);
  --gradient-cta: linear-gradient(159deg, #e8ecff 0%, #d4d9ff 100%);

  --shadow-sm: 0 2px 8px rgba(27, 26, 46, 0.06), 0 1px 2px rgba(27, 26, 46, 0.05);
  --shadow-md: 0 4px 14px rgba(27, 26, 46, 0.09), 0 2px 6px rgba(27, 26, 46, 0.06);
  --shadow-lg: 0 14px 40px rgba(27, 26, 46, 0.09), 0 4px 14px rgba(27, 26, 46, 0.06);
  --shadow-xl: 0 40px 80px rgba(27, 26, 46, 0.12), 0 12px 30px rgba(27, 26, 46, 0.1);

  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --spacing-section: 100px;

  /* Type scale */
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-body: 15px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: clamp(22px, 2.8vw, 30px);
  --text-3xl: clamp(28px, 4vw, 50px);
  --text-display: clamp(36px, 5vw, 56px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY SCALE
============================================================ */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-md { font-size: var(--text-md); }
.text-body { font-size: var(--text-body); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-display { font-size: var(--text-display); }

/* ============================================================
   TYPOGRAPHY – GLOBAL (no inline overrides)
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.65;
}

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

/* Section helpers */
.section-gap {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-heading {
  font-size: var(--text-3xl);
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: left;
}

.section-subtext {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 720px;
  line-height: 1.65;
  text-align: left;
}

/* ============================================================
   SECTION LAYOUT (replaces Bootstrap flex/align/height utils)
============================================================ */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-section > .container > .row {
  align-items: center;
  row-gap: 3rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.partner-logos-section > .container > .row {
  justify-content: center;
  align-items: center;
  row-gap: 1rem;
}

.partner-logos-section .row > [class*="col-"] {
  text-align: center;
}

.split-header {
  align-items: flex-end;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card,
.why-main-card,
.why-side-card,
.insight-card {
  height: 100%;
}

.why-tab-panel .col-lg-6 > .row {
  height: 100%;
}

.bond-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.why-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.performance-stats-grid {
  text-align: center;
}

.testimonial-section .row {
  align-items: center;
}

.platform-security-section > .container > .row {
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 1.5rem;
}

/* ============================================================
   SECTION SPACING (replaces Bootstrap margin/padding utils)
============================================================ */
.site-header .navbar-nav {
  margin-left: auto;
  margin-right: auto;
  gap: 4px;
}

.features-mega-dropdown .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.hero-cta {
  margin-bottom: 0;
}

.partner-logos-section > .container > .row {
  row-gap: 1rem;
}

.section-intro {
  margin-bottom: 3rem;
}

.bond-types-section .section-intro,
.shift-section .section-intro,
.why-artemis-section .section-intro {
  max-width: 640px;
}

.solutions-section .section-intro {
  max-width: 720px;
}

.faq-section .section-intro {
  margin-bottom: 40px;
  max-width: 640px;
}

.why-artemis-section .section-intro {
  margin-bottom: 1.5rem;
}

.platform-section .col-lg-6:first-child .section-heading,
.bond-types-section .section-heading:last-child,
.faq-section .section-heading:last-child {
  margin-bottom: 0;
}

.platform-section .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 992px) {
  .platform-section .col-lg-6:last-child {
    margin-left: auto;
    max-width: 560px;
  }
}

.platform-section .col-lg-6:last-child .section-subtext,
.insights-header .section-subtext {
  margin-bottom: 0;
}

.platform-cards,
.capabilities-section > .container > .row:last-child,
.insights-section > .container > .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.platform-cards {
  margin-top: 32px;
}

.why-tab-panel .col-lg-6 > .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.solution-panel-expanded > .row {
  --bs-gutter-y: 1rem;
  margin-top: 12px;
}

.why-tab-panel > .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.performance-stats-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.platform-security-section > .container > .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

@media (min-width: 992px) {
  .platform-security-section > .container > .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
  }
}

.platform-security-section .col-lg-5 .section-heading {
  margin-bottom: 1rem;
}

.platform-security-section .col-lg-5 .section-subtext {
  margin-bottom: 1.5rem;
}

.insights-header .section-heading {
  margin-bottom: 0.5rem;
}

.site-footer > .container > .row {
  row-gap: 3rem;
}

.footer-bottom > p {
  margin-bottom: 0;
}

.section-subtext-small {
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.text-blue {
  color: var(--color-primary-light);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all 0.22s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary-gradient {
  background: var(--gradient-primary);
  color: var(--color-text-white);
  padding: 11px 24px;
  font-size: var(--text-md);
  box-shadow: 0 4px 16px rgba(51, 64, 208, 0.32);
}

.btn-primary-gradient:hover {
  color: var(--color-text-white);
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(51, 64, 208, 0.42);
}

.btn-outline-hero {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  padding: 11px 24px;
  font-size: 14px;
}

.btn-outline-hero:hover {
  border-color: var(--color-primary);
  background: var(--color-blue-100);
  color: var(--color-primary);
}

.btn-ghost-nav {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 8px 16px;
  font-size: 14px;
}

.btn-ghost-nav:hover {
  color: var(--color-primary);
}

.btn-outline-blue {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  padding: 10px 22px;
  font-size: 14px;
}

.btn-outline-blue:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.btn-light-blue {
  background: var(--color-blue-100);
  color: var(--color-primary);
  padding: 10px 22px;
  font-size: 14px;
}

.btn-light-blue:hover {
  background: var(--color-blue-150);
  color: var(--color-primary);
}

.btn-white-sol {
  background: rgba(255,255,255,0.15);
  color: var(--color-text-white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 11px 22px;
  font-size: 14px;
  backdrop-filter: blur(8px);
}

.btn-white-sol:hover {
  background: rgba(255,255,255,0.25);
  color: var(--color-text-white);
}

/* ============================================================
   NAVBAR / HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .navbar {
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.brand-icon {
  color: var(--color-primary);
  font-size: 22px;
  display: flex;
}

.brand-text strong {
  color: var(--color-primary);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-blue-50);
}

.small-icon {
  font-size: 11px;
  opacity: 0.6;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero-bg);
  border-bottom: 1px solid rgba(231, 233, 246, 1);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(228, 232, 255, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 100% 100%, rgba(212, 217, 255, 0.45) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-section .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  letter-spacing: 0.1px;
  margin-bottom: 24px;
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.acf-icon-img {
  width: 1em;
  height: 1em;
  object-fit: contain;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.acf-icon-inline {
  width: 1.1em;
  height: 1.1em;
  margin-right: 4px;
}
#four-reasons .capability-icon .acf-icon-img{
	width: 100%;
	height: auto;
}

.feature-icon .acf-icon-img,
.trust-feature-icon .acf-icon-img,
.numbered-row-icon .acf-icon-img {
  width: 24px;
  height: 24px;
}

.fmd-icon-wrap .acf-icon-img {
  width: 20px;
  height: 20px;
}

.why-tab .acf-icon-img {
  width: 18px;
  height: 18px;
}

.footer-social .acf-icon-img {
  width: 18px;
  height: 18px;
}

.insight-media-icon-wrap .acf-icon-img.insight-media-icon {
  width: 48px;
  height: 48px;
}

.hero-section h1 {
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero-section .col-lg-6:first-child > p {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-cta {
  margin-bottom: 0;
}

.hero-stats {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 520px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.hero-stat {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  padding-right: 0;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--color-border);
}

.hero-stats .stat-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stats .stat-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
  line-height: 1.35;
}

.hero-section .col-lg-6:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 12px 24px;
}

.hero-section .col-lg-6:last-child img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
}

/* ============================================================
   PARTNER LOGOS
============================================================ */
.partner-logos-section {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-white);
}

.partner-logos-section > .container > p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 28px;
}

.partner-logos-section .row span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.55;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.partner-logos-section .row span:hover {
  opacity: 1;
}

/* ============================================================
   PROBLEM STATEMENT
============================================================ */
.problem-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.problem-section .problem-feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--gradient-primary);
  border-radius: 24px;
  padding: 36px 40px;
  color: var(--color-text-white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.problem-section .problem-bento .stat-card-sm {
  border-radius: 24px;
  padding: 28px 32px;
  min-height: 0;
}

.problem-section .stat-card-blue {
  background: #e1f0ff;
  border-color: #cce4f8;
}

.problem-section .stat-card-purple {
  background: #f0f2ff;
  border-color: #e0e4ff;
}

.problem-section .problem-feature::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.problem-section .problem-feature::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.problem-section .problem-feature .feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.problem-section .problem-feature > p {
  font-size: clamp(20px, 2.4vw, 31px);
  font-weight: 500;
  color: var(--color-text-white);
  line-height: 1.4;
  margin-bottom: auto;
  padding-bottom: 32px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.problem-section .comparison-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.problem-section .comparison-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

.problem-section .comparison-content {
  flex: 1;
  min-width: 0;
}

.problem-section .comparison-item span[class^="dot-"] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-legacy { background: rgba(255, 255, 255, 0.4); }
.dot-artemis { background: rgba(255, 255, 255, 0.95); }

.problem-section .comparison-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
  line-height: 1.35;
}

.problem-section .comparison-title span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.problem-section .comparison-item:last-child .comparison-title {
  color: rgba(255, 255, 255, 0.95);
}

.problem-section .comparison-item:last-child .comparison-title span {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.problem-section .comparison-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.problem-section .comparison-item:last-child .comparison-desc {
  color: rgba(255, 255, 255, 0.8);
}

.problem-section .comparison-item > i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.stat-card-sm {
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.stat-card-sm:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.stat-card-blue {
  background: #eff4ff;
  border-color: #e0e8ff;
}

.stat-card-blue .stat-label {
  color: var(--color-primary);
}

.stat-card-blue .stat-value {
  color: var(--color-primary);
}

.stat-card-blue > p {
  color: #5a6a9e;
}

.stat-card-purple {
  background: #f3f1ff;
  border-color: #e8e4ff;
}

.stat-card-purple .stat-label {
  color: #6366f1;
}

.stat-card-purple .stat-value {
  color: #6366f1;
}

.stat-card-purple > p {
  color: #6b6a9e;
}

.stat-card-sm .stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.stat-card-sm .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card-sm > p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  margin-top: auto;
}

.stat-card-title {
  font-size: 13px;
  color: var(--color-text-secondary);
}


/* ============================================================
   PLATFORM
============================================================ */
.platform-mockup {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  line-height: 0;
  background: var(--color-bg-white);
}

.platform-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.platform-cards .feature-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(27, 26, 46, 0.04);
  border-top: 4px solid var(--color-primary);
}

.platform-cards .feature-card:hover {
  border-color: #d8dbe8;
  box-shadow: var(--shadow-sm);
}

.platform-cards .feature-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.platform-cards .feature-icon {
  width: 36px;
  height: 36px;
  background: var(--color-blue-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.platform-cards .feature-num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1;
}

.platform-cards .feature-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.platform-cards .feature-card h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.platform-cards .feature-card > p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FEATURE CARDS
============================================================ */
.capabilities-section .feature-card {
  background: var(--color-bg-white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
  border-left: 3px solid var(--color-primary-light);
}

.capabilities-section .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.capabilities-section .capability-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.capabilities-section .capability-icon i {
  font-size: 20px;
  color: var(--color-primary);
}

.capabilities-section .feature-card h5 {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.capabilities-section .feature-card > p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

.capabilities-section .feature-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* ============================================================
   WHY ARTEMIS
============================================================ */
.why-artemis-section {
  background: var(--color-bg-white);
}

.why-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.why-tab {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1.3;
}

.why-tab i {
  font-size: 15px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.why-tab:hover {
  border-color: var(--color-primary-light);
  background: var(--color-blue-50);
}

.why-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: 0 4px 14px rgba(51, 64, 208, 0.28);
}

.why-tab.active i {
  color: var(--color-text-white);
}

.why-tab-panels {
  margin-top: 28px;
}

.why-tab-panel .row {
  align-items: stretch;
}


.why-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.solution-panels.is-animating {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .solution-panel,
  .solution-panel-collapsed,
  .solution-panel-expanded,
  .bond-accordion .collapsing,
  .faq-accordion .collapsing,
  .why-tab-panel {
    transition: none !important;
  }
}

.why-main-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-main-card::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.why-main-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-main-card .feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.why-main-card h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.why-main-card > p:first-of-type {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: auto;
  position: relative;
  z-index: 1;
}

.why-stat {
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.why-stat .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 500;
  color: var(--color-text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.45;
  max-width: 320px;
}

.why-side-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.why-side-card:hover {
  box-shadow: var(--shadow-md);
}

.why-side-card .feature-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.why-side-card h5 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-side-card > p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.why-tags span {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-blue-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

/* ============================================================
   TESTIMONIAL
============================================================ */
.testimonial-section {
  background: var(--color-bg-white);
}

.testimonial-card {
  background: #f4f6fb;
  border: none;
  border-radius: 20px;
  padding: 48px 56px;
}

.testimonial-section .row {
  --bs-gutter-x: 3rem;
}

.testimonial-section .col-lg-7 {
  padding-right: 2rem;
}

.testimonial-section .col-lg-5 {
  padding-left: 1rem;
}

.testimonial-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: 320px;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  line-height: 0.75;
  color: #c5ccf5;
  letter-spacing: -0.12em;
}

.quote-mark span {
  display: inline-block;
}

.testimonial-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.32;
  letter-spacing: -0.02em;
  border: none;
  padding: 0;
  margin: 0;
  max-width: 540px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.author-role {
  font-size: 13px;
  font-weight: 400;
  color: #8b90a8;
  margin-top: 3px;
  line-height: 1.4;
}

.testimonial-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-stat-card {
  background: var(--color-bg-white);
  border: none;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(27, 26, 46, 0.06);
  text-align: left;
}

.testimonial-stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-stat-card > p {
  font-size: 13px;
  font-weight: 400;
  color: #9499b3;
  margin: 0;
  line-height: 1.35;
}

/* ============================================================
   SOLUTIONS SECTION
============================================================ */
.solutions-section {
  background: var(--color-bg-white);
}

.solution-panels {
  display: flex;
  gap: 12px;
  height: 480px;
  align-items: stretch;
}

.solution-panel {
  position: relative;
  flex: 0 0 80px;
  min-width: 80px;
  max-width: 80px;
  overflow: hidden;
  transition:
    flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    flex-basis 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-panel.is-expanded {
  flex: 1 1 0%;
  min-width: 280px;
  max-width: 100%;
}

.solution-panel-collapsed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 480px;
  padding: 24px 12px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-panel-collapsed:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}

.solution-panel.is-expanded .solution-panel-collapsed {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96);
}

.solution-panel-expanded {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 480px;
  min-width: 280px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(16px);
  transition:
    opacity 0.45s ease 0.08s,
    visibility 0.45s ease 0.08s,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}

.solution-panel.is-expanded .solution-panel-expanded {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  width: 100%;
}

.solution-panel-collapsed > span:first-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-light);
  line-height: 1;
}

.solution-panel-collapsed > span:nth-child(2) {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  letter-spacing: 0.2px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.solution-panel-collapsed > span:last-child {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-blue-50);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 18px;
  flex-shrink: 0;
}

.solution-panel-expanded::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sol-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.solution-panel-expanded h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.solution-panel-expanded > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.sol-feature {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.sol-feature > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.sol-feature > span i {
  font-size: 12px;
  color: var(--color-text-white);
  font-weight: 700;
}

.btn-talk-sol {
  background: var(--color-bg-white);
  color: var(--color-primary);
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  margin-top: auto !important;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-talk-sol:hover {
  color: var(--color-primary);
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-talk-sol i {
  font-size: 15px;
}

/* ============================================================
   PERFORMANCE STATS
============================================================ */
.performance-stats-section {
  background: #F5F6FF;
  padding: 72px 0;
}

.performance-stats-grid {
  align-items: flex-start;
}

.perf-stat {
  padding: 8px 12px;
}

.perf-stat .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 12px;
}

.perf-stat > p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.45;
}

/* ============================================================
   THE SHIFT — FRAGMENTED TO CONNECTED
============================================================ */
.shift-section {
  background: var(--color-bg-white);
}

.frag-card-outer {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.frag-card-before {
  flex: 1;
  background: #f4f6fa;
  padding: 40px 48px 40px 40px;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.frag-card-after {
  flex: 1;
  background: var(--gradient-primary);
  padding: 40px 40px 40px 56px;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  position: relative;
  overflow: hidden;
}

.frag-card-after::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.frag-card-before > span,
.frag-card-after > span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 20px;
}

.frag-card-before > span {
  color: var(--color-text-muted);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
}

.frag-card-after > span {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 1;
}

.frag-card-before h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.35;
}

.frag-card-after h3 {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 24px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.frag-card-outer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frag-card-outer li {
  font-size: 15px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.frag-card-after li {
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}

.frag-card-outer li > span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.frag-card-before li > span {
  background: #fff;
  color: #9aa3b8;
  font-size: 14px;
  font-weight: 700;
}

.frag-card-after li > span {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-text-white);
  font-size: 13px;
  font-weight: 700;
}

.frag-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(51, 64, 208, 0.35);
  border: 3px solid var(--color-bg-white);
}

/* ============================================================
   INSIGHTS
============================================================ */
.insights-section {
  background: var(--color-bg-white);
}

.insights-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: 48px;
}

.insights-intro {
  flex: 1;
  min-width: 280px;
  max-width: 640px;
}

.insights-header .section-subtext {
  max-width: 520px;
}

.btn-insights-all {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  border: 1.5px solid #d8dbe8;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-insights-all:hover {
  background: var(--color-bg-page);
  border-color: #c4c9dc;
  color: var(--color-text-primary);
}

.insight-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}

.insight-card:hover {
  border-color: #d0d4e8;
  box-shadow: var(--shadow-sm);
}

.insight-media {
  position: relative;
  height: 140px;
  padding: 18px 20px;
}

.insight-media-1 { background: linear-gradient(135deg, #2b32c4 0%, #5563e8 60%, #7c86f2 100%); }
.insight-media-2 { background: linear-gradient(135deg, #4046d6 0%, #6b74ee 55%, #9aa2f7 100%); }
.insight-media-3 { background: linear-gradient(135deg, #3340d0 0%, #5766ff 55%, #85a9ff 100%); }

.insight-media span {
  display: inline-block;
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 4px rgba(27, 26, 46, 0.07);
}

.insight-body {
  padding: 24px 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.insight-body > p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.insight-meta {
  font-size: 12px;
  color: #9499b3;
  margin-top: auto;
  padding-top: 20px;
  font-weight: 400;
}

/* dipendu-add-start */
/* ============================================================
   INSIGHTS PAGE
============================================================ */
.insights-page .site-footer {
  margin-top: 0;
}

.insights-hero {
  position: relative;
  padding-top: 72px;
  padding-bottom: 44px;
  overflow: hidden;
  background: var(--gradient-hero-bg);
}

.insights-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(228, 232, 255, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 100% 100%, rgba(212, 217, 255, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

.insights-hero .container {
  position: relative;
  z-index: 1;
}

.insights-hero .section-eyebrow {
  margin-bottom: 16px;
}

.insights-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 560px;
}

.insights-hero .col-lg-6:first-child > p {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 0;
}

.insights-hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.insights-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.insights-grid-section {
  padding-top: 8px;
  padding-bottom: 100px;
}

.insights-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
}

.insights-filter-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, color 0.2s;
}

.insights-filter-btn .bi-lock-fill {
  font-size: 11px;
  color: #b0b5cc;
}

.insights-filter-btn:hover {
  color: var(--color-text-primary);
}

.insights-filter-btn.is-active {
  background: var(--color-primary-light);
  color: var(--color-text-white);
}

.insights-filter-btn.is-active .bi-lock-fill {
  color: var(--color-text-white);
}

.insights-filter-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 44px 0 44px;
  line-height: 1.5;
}

.insights-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.insights-grid-item.is-hidden {
  display: none;
}

.insights-page-card .insight-media {
  height: 150px;
  padding: 0;
  line-height: 0;
  background: var(--color-blue-50);
  overflow: hidden;
}

.insights-page-card .insight-media img {
  width: 100%;
  height: 150px;
  display: block;
  object-fit: cover;
}

.insight-category {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-blue-100);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.insights-page-card .insight-body {
  padding: 22px 24px 24px;
}

.insights-page-card h5 {
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.insights-page-card .insight-meta {
  padding-top: 12px;
  margin-top: 0;
  font-size: 12px;
  color: #9499b3;
}

.insight-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap 0.2s, color 0.2s;
}

.insight-read-more i {
  font-size: 13px;
  transition: transform 0.2s;
}

.insights-page-card:hover .insight-read-more {
  color: var(--color-primary-hover);
}

.insights-page-card:hover .insight-read-more i {
  transform: translateX(3px);
}

.insights-empty-state {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  padding: 48px 0 8px;
  margin: 0;
}

/* dipendu-add-end */
/* ============================================================
   PLATFORM & SECURITY
============================================================ */
.platform-security-section {
  background: #f9faff;
}

.platform-security-section .col-lg-5 .section-subtext {
  max-width: 420px;
}

.trust-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-feature-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 24px 16px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 8px rgba(27, 26, 46, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trust-feature-card:hover {
  border-color: #d8dbe8;
  box-shadow: var(--shadow-sm);
}

.trust-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--color-blue-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.trust-feature-icon i {
  font-size: 20px;
  color: var(--color-primary);
}

.trust-feature-card h5 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-feature-card > p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-section {
  background: var(--color-bg-white);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.faq-accordion .accordion-item {
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-bg-white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: #b8c4f0;
}

.faq-accordion .accordion-item .accordion-header {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  padding: 22px 24px;
  box-shadow: none;
  border-radius: 0;
  transition: background 0.18s;
}

.faq-accordion .accordion-button:hover {
  background: var(--color-bg-white);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  box-shadow: none;
  padding-bottom: 12px;
}

.faq-accordion .accordion-button::after {
  content: '';
  width: 32px;
  height: 32px;
  background: #e8ecff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233340d0'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background: #e8ecff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233340d0'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center/12px no-repeat;
  transform: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.faq-accordion .accordion-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-muted);
  padding: 0 24px 24px;
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-section {
  background: var(--color-bg-white);
}

.cta-card {
  background: radial-gradient(ellipse 90% 120% at 50% 0%, #e8ecff 0%, #f2f4fc 48%, #fafbff 100%);
  border-radius: 40px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 220, 245, 0.7);
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 auto;
  margin-bottom: 16px;
  max-width: 720px;
}

.cta-card > p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.cta-actions .btn-primary-gradient {
  padding: 12px 28px;
  font-size: var(--text-md);
}

.btn-cta-secondary {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(27, 26, 46, 0.06);
}

.btn-cta-secondary:hover {
  background: var(--color-bg-white);
  color: var(--color-text-primary);
  box-shadow: 0 4px 14px rgba(27, 26, 46, 0.1);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #161A3D;
  padding-top: 72px;
  padding-bottom: 0;
}

.site-footer > .container > .row {
  padding-bottom: 56px;
}

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

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand-icon {
  color: var(--color-primary-light);
  font-size: 28px;
  display: flex;
  line-height: 1;
  margin-top: 2px;
}

.footer-brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-white);
}

.footer-brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.footer-brand > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-text-white);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer h6 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  line-height: 1.4;
}

.site-footer ul a:hover {
  color: var(--color-text-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom > p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   FEATURES MEGA DROPDOWN
============================================================ */
.nav-item-dropdown {
  position: static;
}

.features-mega-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: min(780px, calc(100vw - 32px));
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 1050;
}

.nav-item-dropdown:hover .features-mega-dropdown,
.features-mega-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fmd-body {
  padding: 8px 8px 0;
}

.fmd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.18s;
  margin-bottom: 2px;
}

.fmd-item:hover {
  background: var(--color-blue-50);
}

.fmd-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.fmd-icon-blue {
  background: var(--color-blue-100);
  color: var(--color-primary);
}

.fmd-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
  line-height: 1.3;
}

.fmd-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.fmd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
  background: var(--color-blue-50);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.fmd-footer-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.fmd-footer-text strong {
  font-weight: 700;
  color: var(--color-text-primary);
}

.fmd-footer-btn {
  padding: 8px 18px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link-active-indicator.dropdown-open {
  color: var(--color-primary);
  background: var(--color-blue-50);
  border-radius: var(--radius-sm);
}

/* ============================================================
   BOND TYPES SECTION
============================================================ */
.bond-types-section {
  background: #F5F6FF;
}

.bond-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.bond-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.bond-accordion .accordion-item:last-child {
  border-bottom: none;
}

.bond-accordion .accordion-button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: var(--color-text-primary);
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: none;
  border-radius: 0;
  transition: background 0.18s;
}

.bond-accordion .accordion-button:hover {
  background: transparent;
}

.bond-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--color-text-primary);
  box-shadow: none;
  padding-bottom: 16px;
}

.bond-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.bond-accordion .accordion-button::after {
  content: '';
  width: 32px;
  height: 32px;
  margin-top: 6px;
  background: #eef0f8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23555870'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") center/16px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bond-accordion .accordion-button:not(.collapsed)::after {
  background: var(--color-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") center/14px no-repeat;
  transform: rotate(90deg);
}

.bond-accordion .accordion-collapse,
.faq-accordion .accordion-collapse {
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.bond-accordion .collapsing,
.faq-accordion .collapsing {
  transition: height 0.42s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.bond-accordion .accordion-body {
  padding: 0 0 28px 60px;
  background: transparent;
  transition: opacity 0.3s ease;
}

.bond-accordion .accordion-button > span:first-child {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #b8bdd4;
  flex-shrink: 0;
  min-width: 36px;
  line-height: 1.2;
  padding-top: 4px;
}

.bond-accordion .accordion-button .bond-btn-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.bond-accordion .bond-btn-meta > span:first-child {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary-light);
  line-height: 1.2;
}

.bond-accordion .bond-btn-meta > span:last-child {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.25;
}

.bond-accordion .accordion-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 760px;
  line-height: 1.7;
  margin-bottom: 0;
}

.bond-tags span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  background: #eef1ff;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  border: none;
}

/* ============================================================
   CAPABILITIES SECTION
============================================================ */
.capabilities-section {
  background: #F5F6FF;
}

.capabilities-section .split-header .col-lg-6:last-child p {
  max-width: 480px;
}

/* ============================================================
   TERMS & CONDITIONS PAGE
============================================================ */
.terms-page {
  padding-top: 56px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.terms-page::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, #E8EBFF 0%, rgba(232, 235, 255, 0) 100%);
  z-index: -1;
}

.terms-hero {
  max-width: 720px;
  margin-bottom: 56px;
}

.terms-hero .section-eyebrow {
  margin-bottom: 16px;
}

.terms-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.terms-hero p {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  max-width: 640px;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.terms-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 14px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-md);
  line-height: 1.3;
  color: var(--color-primary);
}

.terms-meta-label {
  font-weight: 500;
  white-space: nowrap;
}

.terms-meta-value {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--color-blue-50);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.terms-meta-version {
  font-weight: 700;
  color: var(--color-text-primary);
  padding-right: 6px;
}

.terms-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
}

.terms-toc-slot {
  position: relative;
  width: 100%;
  align-self: stretch;
}

.terms-toc {
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}

.terms-toc.is-fixed {
  position: fixed;
  top: 14px;
  z-index: 50;
  width: 290px;
  max-height: 100%;
}

.terms-toc.is-docked {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  max-height: none;
  z-index: 50;
}

.terms-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.terms-toc-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.terms-toc-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.terms-toc-link:hover {
  color: var(--color-text-primary);
  background: var(--color-blue-50);
}

.terms-toc-link.is-active {
  background: var(--color-blue-100);
  color: var(--color-text-primary);
  border-left-color: var(--color-primary);
  font-weight: 600;
}

.terms-content {
  min-width: 0;
  max-width: 760px;
}

.terms-section {
  padding-bottom: 48px;
  margin-bottom: 8px;
  scroll-margin-top: 100px;
}

.terms-section:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 48px;
}

.terms-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.terms-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-blue-100);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.terms-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.terms-section h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 24px 0 10px;
}

.terms-section p {
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

.terms-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: var(--color-text-secondary);
}

.terms-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.terms-section a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-section a:hover {
  color: var(--color-primary-hover);
}

.terms-callout {
  margin: 20px 0;
  padding: 16px 18px;
  background: var(--color-blue-50);
  border: 1px solid var(--color-blue-150);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--color-text-secondary);
}

.terms-callout strong {
  color: var(--color-text-primary);
}

.terms-table-wrap {
  margin: 20px 0 8px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}

.terms-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: var(--text-md);
}

.terms-table th,
.terms-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.terms-table th {
  background: var(--color-blue-100);
  color: var(--color-text-primary);
  font-weight: 700;
  white-space: nowrap;
}

.terms-table td {
  color: var(--color-text-secondary);
  line-height: 1.55;
}

.terms-table th:first-child,
.terms-table td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
}

.terms-table tbody tr:last-child td {
  border-bottom: none;
}

.terms-table tbody tr:nth-child(even) td {
  background: rgba(242, 243, 251, 0.45);
}

/* ============================================================
   INSIGHTS SINGLE / LISTING EXTRAS
   (breadcrumb, single-post layout, TOC + share sidebar, pull-quote,
   newsletter CTA, related posts, gated-download sidebar, empty state,
   template-preview banner)
============================================================ */

/* -- Card media: centered icon instead of a text pill -- */
.insight-media-icon-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-media-icon {
  font-size: 40px;
  color: var(--color-bg-white);
  opacity: 0.92;
}

.insight-single-hero .insight-media-icon {
  font-size: 64px;
}

/* -- Breadcrumb + back link -- */
.insight-breadcrumb {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.insight-breadcrumb a {
  color: var(--color-text-muted);
}

.insight-breadcrumb a:hover {
  color: var(--color-primary);
}

.insight-breadcrumb .sep {
  margin: 0 6px;
  color: var(--color-border);
}

.insight-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 22px;
}

.insight-back-link:hover {
  color: var(--color-primary);
}

/* -- Single post header -- */
.insight-single-header {
  max-width: 780px;
  margin: 0 0 32px;
}

.insight-single-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: 14px 0 16px;
}

.insight-single-subtext {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.insight-single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-md);
  color: var(--color-text-muted);
}

.insight-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -- Single post hero image / gradient block -- */
.insight-single-hero {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.insight-single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -- Two-column single-post layout -- */
.insight-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.insight-sidebar {
  position: sticky;
  top: 100px;
}

.insight-sidebar-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.insight-sidebar-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 14px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  background: var(--color-blue-100);
  color: var(--color-primary);
}

.insight-toc-box nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.insight-toc-box a {
  display: block;
  padding: 6px 0;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: 1.45;
}

.insight-toc-box a:hover {
  color: var(--color-primary);
}

.insight-share-box .addtoany_share_save_container {
  margin: 0;
}

/* -- Body content typography (reuses .terms-content sizing via shared class in markup) -- */
.insight-content {
  max-width: 760px;
}

.insight-content > p {
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
}

.insight-content h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 40px 0 16px;
  scroll-margin-top: 100px;
}

.insight-content h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 28px 0 12px;
  scroll-margin-top: 100px;
}

.insight-content ol {
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
  padding-left: 22px;
}

.insight-content ul {
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
  padding-left: 0;
  list-style: none;
}

.insight-content li {
  margin-bottom: 6px;
}

.insight-content ul > li {
  position: relative;
  padding-left: 34px;
}

.insight-content ul > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-pullquote {
  border-left: 3px solid var(--color-primary);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.5;
}

/* -- Newsletter CTA -- */
.insight-newsletter {
  background: linear-gradient(135deg, #161a3d 0%, #1e2464 50%, #2d2f9e 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 56px 0;
  color: var(--color-text-white);
}

.insight-newsletter .section-eyebrow {
  color: #9ba3ff;
}

.insight-newsletter .section-eyebrow::before {
  background: #9ba3ff;
}

.insight-newsletter h3 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  margin: 10px 0 10px;
	color: #FFFFFF;
}

.insight-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 460px;
  margin-bottom: 24px;
}

.insight-newsletter-form .wpcf7-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
	max-width: 560px;
}

.insight-newsletter-form .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 220px;
  display: block;
}

.insight-newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: var(--text-md);
}

.insight-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.insight-newsletter-form .wpcf7-submit {
  white-space: nowrap;
}

.insight-newsletter-form .wpcf7-response-output {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2) !important;
  margin: 8px 0 0 !important;
}

.insight-newsletter-fineprint {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
}

/* -- Related insights -- */
.insight-related {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

/* -- Contact Form 7: match the site's gradient button + form control look -- */
.wpcf7-submit {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: var(--gradient-primary);
  color: var(--color-text-white);
  padding: 11px 24px;
  font-size: var(--text-md);
  box-shadow: 0 4px 16px rgba(51, 64, 208, 0.32);
  transition: all 0.22s ease;
}

.wpcf7-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.wpcf7-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.wpcf7-not-valid-tip {
  font-size: var(--text-sm);
  color: #d92d20;
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  font-size: var(--text-md) !important;
  margin: 16px 0 0 !important;
}

/* -- Gated content sidebar (Whitepaper / Guide) -- */
.insight-gated-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 56px;
  align-items: start;
}

.insight-gated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insight-gated-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.insight-gated-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.insight-gated-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-gated-form-box {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.insight-gated-form-box h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0 6px;
}

.insight-gated-form-box .insight-gated-form-note {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.insight-gated-form-box .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 14px;
}

.insight-gated-form-box .wpcf7 input[type="text"],
.insight-gated-form-box .wpcf7 input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--text-md);
}

.insight-gated-form-box .wpcf7 label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.insight-gated-form-box .wpcf7-submit {
  width: 100%;
  justify-content: center;
}

.insight-gated-download {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--color-blue-50);
  border-radius: var(--radius-sm);
}

.insight-gated-download.is-visible {
  display: block;
}

.insight-gated-meta-box dl {
  margin: 0;
}

.insight-gated-meta-box .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-md);
}

.insight-gated-meta-box .row:last-child {
  border-bottom: none;
}

.insight-gated-meta-box .row dt {
  color: var(--color-text-muted);
}

.insight-gated-meta-box .row dd {
  margin: 0;
  font-weight: 600;
  color: var(--color-text-primary);
}

/* -- Case Studies: empty state -- */
.insight-empty-cs {
  background: var(--color-blue-50);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

.insight-empty-cs-skeletons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 32px;
}

.insight-skeleton-card {
  height: 150px;
  border-radius: var(--radius-md);
  background: var(--color-bg-white);
  border: 1px dashed var(--color-border);
}

.insight-empty-cs h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-empty-cs p {
  color: var(--color-text-secondary);
  max-width: 480px;
  margin: 0 auto 24px;
}

/* -- Template-preview banner -- */
.insight-template-banner {
  background: var(--color-blue-100);
  color: var(--color-primary);
  text-align: center;
  padding: 12px 20px;
  font-size: var(--text-md);
  font-weight: 500;
}

.insight-template-banner i {
  margin-right: 6px;
}

.insight-template-placeholder {
  display: inline-block;
  background: var(--color-blue-100);
  color: var(--color-primary);
  padding: 1px 6px;
  border-radius: 4px;
}

/* -- Case study reference template page -- */
.insight-cs-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 48px;
}

.insight-cs-snapshot-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.insight-cs-snapshot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.insight-cs-section {
  margin-bottom: 48px;
}

.insight-cs-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.insight-cs-section-eyebrow .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue-100);
  font-size: 11px;
}

.insight-cs-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.insight-cs-result-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.insight-cs-result-card .value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.insight-cs-quote-card {
  background: linear-gradient(135deg, #161a3d 0%, #1e2464 50%, #2d2f9e 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-text-white);
  margin: 40px 0;
}

.insight-cs-quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 24px;
}

.insight-cs-quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

/* -- Gated content body: "Who it's for" audience cards -- */
.insight-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.insight-audience-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.insight-audience-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.insight-audience-card span {
  display: block;
  color: var(--color-text-secondary);
  font-size: var(--text-md);
  line-height: 1.5;
}

@media (max-width: 575px) {
  .insight-audience-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Request a Demo page -- */
.insight-demo-form-card {
  max-width: 520px;
  margin: 0 auto 56px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.insight-demo-form-card .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 16px;
}

.insight-demo-form-card .wpcf7 label {
  display: block;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.insight-demo-form-card .wpcf7 input[type="text"],
.insight-demo-form-card .wpcf7 input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: var(--text-md);
  margin-top: 6px;
}

.insight-demo-form-card .wpcf7-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* -- Hero decorative floating cards (Insights hub) -- */
.insight-hero-illustration {
  position: relative;
  height: 280px;
}

.insight-float-card {
  position: absolute;
  width: 190px;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px;
}

.insight-float-card .pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.insight-float-card .lines span {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--color-blue-100);
  margin-bottom: 6px;
}

.insight-float-card.card-1 {
  top: 0;
  right: 60px;
  z-index: 1;
}

.insight-float-card.card-1 .pill {
  background: var(--color-blue-100);
  color: var(--color-primary);
}

.insight-float-card.card-2 {
  top: 90px;
  right: 220px;
  z-index: 2;
}

.insight-float-card.card-2 .pill {
  background: var(--color-blue-100);
  color: var(--color-primary);
}

.insight-float-card.card-3 {
  top: 70px;
  right: 20px;
  z-index: 3;
  background: var(--gradient-primary);
  color: var(--color-text-white);
}

.insight-float-card.card-3 .lines span {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .insight-single-layout,
  .insight-gated-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .insight-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .insight-sidebar-box {
    flex: 1;
    min-width: 240px;
  }

  .insight-hero-illustration {
    display: none;
  }

  .insight-empty-cs-skeletons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .insight-empty-cs-skeletons {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GENERAL PAGES (Why Artemis / About / Book a Demo / Contact / Support)
============================================================ */

/* -- Page hero text (explicit selectors to avoid specificity conflicts) -- */
.page-hero .page-hero-text {
  position: relative;
  z-index: 2;
}

.page-hero-heading {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.08;
}

.page-hero-subtext {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* -- Page hero image (uploaded from Figma) -- */
.page-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 12px 24px;
}

.page-hero-image img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .page-hero-image {
    padding-left: 0;
    margin-top: 16px;
  }
}

/* -- Hero search variant (Support) -- */
.page-hero-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 20px;
  max-width: 520px;
  box-shadow: var(--shadow-sm);
}

.page-hero-search i {
  color: var(--color-text-muted);
  font-size: 18px;
}

.page-hero-search input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font-size: var(--text-md);
  background: transparent;
}

.page-hero-search .btn {
  white-space: nowrap;
}

/* -- Numbered List (Why Artemis / About) -- */
.numbered-aside-quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  background: var(--color-blue-50);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--text-md);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.numbered-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.numbered-item-num {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-blue-50);
  border-radius: var(--radius-pill);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbered-item-body h5 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.numbered-item-body h5 i {
  color: var(--color-primary);
  margin-right: 6px;
}

.numbered-item-body > p {
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* -- Timeline (About) -- */
.page-timeline {
  position: relative;
  padding-left: 60px;
}

.page-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--color-border);
}

.timeline-step {
  position: relative;
  padding-bottom: 40px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-step-num {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--gradient-primary);
  color: var(--color-text-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-step-body h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.timeline-step-body > p {
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0 0 12px;
}

.timeline-pills {
  margin-top: 0;
}

.page-timeline-footnote {
  margin: 32px 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-style: italic;
}

/* -- Card grid link (Why Artemis / Contact / Support cards) -- */
.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.feature-card-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* -- Contact table (Contact page) -- */
.contact-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact-table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 28px 22px;
  border-bottom: 1px solid var(--color-border);
}
.contact-table-row:last-child {
  border-bottom: none;
}
.contact-table-cell {
  display: flex;
  justify-content: space-between;
  flex: 1 1 240px;
}

.contact-table-cell .feature-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(136, 139, 172, 1);
  margin-bottom: 8px;
}

.contact-table-cell > p {
  color: rgba(136, 139, 172, 1);
  font-weight: 700;
  margin: 0;
}

/* -- Tiers table (Support page) -- */
.tiers-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tiers-table th,
.tiers-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.tiers-table th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-blue-50);
}

.tiers-table td {
  color: var(--color-text-primary);
  font-weight: 500;
}

.tiers-table tr:last-child td {
  border-bottom: none;
}

.tiers-table-footnote {
  margin: 20px 0 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

@media (max-width: 767px) {
  .page-timeline {
    padding-left: 48px;
  }

  .page-timeline::before {
    left: 19px;
  }

  .timeline-step-num {
    left: -48px;
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .contact-table-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================================
   GENERAL PAGES — round 2 (Figma content-accuracy pass)
============================================================ */

/* -- Hero checklist (Book a Demo / Contact) -- */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: var(--text-md);
  color: var(--color-text-secondary);
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-blue-100);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-meta-note {
  margin: 16px 0 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* -- Numbered list: "rows" style (About's Three Convictions) -- */
.numbered-list-rows .section-intro {
  margin-bottom: 2rem;
}

.numbered-rows {
  border-top: 1px solid var(--color-border);
}

.numbered-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.numbered-row-num {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  width: 60px;
}

.numbered-row-body {
  flex: 1 1 auto;
}

.numbered-row-body .feature-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.numbered-row-body h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.numbered-row-body > p {
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.numbered-row-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-blue-50);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* -- Card grid: generic feature-label + footnote -- */
.feature-card .feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.card-grid-footnote {
  margin: 28px 0 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.card-grid-footnote a {
  color: var(--color-primary);
  font-weight: 600;
}

/* -- Tabs Comparison: plain bordered tabs + panel (not the home page's
      pill tabs / gradient card) -- */
.tabs-comparison-section .why-tabs {
  gap: 12px;
}

.tabs-comparison-section .why-tab {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: var(--color-bg-white);
  text-align: left;
}

.tabs-comparison-section .why-tab.active {
  background: var(--color-bg-white);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
  box-shadow: none;
}

.tabs-comparison-tab-label {
  font-size: 13px;
  font-weight: 700;
  color: inherit;
}

.tabs-comparison-tab-sublabel {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.tabs-comparison-section .why-main-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  padding: 40px;
}

.tabs-comparison-section .why-main-card::before,
.tabs-comparison-section .why-main-card::after {
  display: none;
}

.tabs-comparison-section .why-main-card .capability-icon {
  margin-bottom: 20px;
}

.tabs-comparison-section .why-main-card h3 {
  color: var(--color-text-primary);
  font-size: 22px;
}

.tabs-comparison-section .why-main-card > p:first-of-type {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* -- Page hero structured card mockup -- */
.page-hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0 12px 24px;
}

.phm-card {
  width: 100%;
  max-width: 380px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  position: relative;
}

.phm-header {
  margin-bottom: 20px;
}

.phm-logo {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phm-logo i {
  color: var(--color-primary);
  font-size: 16px;
}

.phm-tabs {
  display: flex;
  gap: 8px;
}

.phm-tab {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: var(--color-bg-white);
}

.phm-tab-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text-white);
}

.phm-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phm-checklist li {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.phm-checklist li i {
  color: var(--color-primary);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.phm-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phm-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-blue-100);
  color: var(--color-primary);
  white-space: nowrap;
}

.phm-small {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.35;
}
.insights-pagination{
	margin-top: 20px;
}
.insights-pagination .page-link{
	color: var(--color-primary);
}
.insights-pagination .active>.page-link{
	background-color: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
}

.insight-single{
	padding: 60px 0;
}



@media (max-width: 991px) {
  .page-hero-mockup {
    display: none;
  }
}

@media (max-width: 767px) {
  .numbered-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .numbered-row-icon {
    order: -1;
  }
}

/* ─── Fruitfull Template ───────────────────────────────────────────────────── */

/* Hero */
.ff-hero .ff-hero-content {
  position: relative;
  z-index: 2;
}
.ff-hero-heading {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.ff-hero-subtext {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.ff-hero-image {
  position: relative;
  z-index: 2;
}
.ff-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Workflow (dark) */
.ff-workflow-section {
/*   background: var(--color-dark-navy); */
  color: #fff;
  border-radius: 16px;
  padding: 80px 0;
}
.ff-workflow-section .section-eyebrow {
  color: var(--color-primary-light);
}
.ff-workflow-section .section-heading,
.ff-workflow-section .section-subtext {
  color: #fff;
}
.ff-workflow-step {
  padding: 28px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  height: 100%;
}
.ff-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-primary-light);
  margin-bottom: 12px;
}
.ff-step-icon {
  margin-bottom: 12px;
}
.ff-step-icon .acf-icon-img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) opacity(.9);
}
.ff-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.ff-workflow-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0;
}

/* Platform: link cards */
.feature-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
}
.feature-card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Ecosystem cards */
.ff-eco-card {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}
.ff-eco-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ff-eco-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-primary);
  background: var(--color-blue-100);
  border-radius: 4px;
  padding: 2px 7px;
}
.ff-eco-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ff-eco-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.ff-eco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ff-eco-tags span {
  font-size: 0.75rem;
  background: var(--color-bg-alt, #f0f2f5);
  border-radius: 100px;
  padding: 3px 10px;
  color: var(--color-body-muted, #6b7280);
}

/* CTA: light variant */
.ff-cta-light .cta-card {
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.ff-cta-light .cta-card h2 {
  color: var(--color-text-primary);
}

/* Solutions: card-grid layout feature list */
.sol-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.sol-card-features {
  list-style: none;
  margin: 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sol-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.sol-card-features li i {
  color: var(--color-primary);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Solutions: icon in collapsed tab */
.sol-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.sol-panel-icon .acf-icon-img {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .ff-hero-image {
    display: none;
  }
  .ff-workflow-section {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .ff-eco-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Feature Page Template ────────────────────────────────────────────────── */

/* Hero */
.fp-hero .fp-hero-content { position: relative; z-index: 2; }
.fp-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.fp-hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.fp-hero-subtext {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.fp-hero-image { position: relative; z-index: 2; }
.fp-hero-image img { width: 100%; height: auto; display: block; border-radius: 12px; }

/* Statement */
.fp-statement-section { padding: 60px 0; }
.fp-statement-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.fp-statement-subtext {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* Feature Detail Cards */
.fp-fdc-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
}
.fp-fdc-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fp-fdc-icon .acf-icon-img { width: 32px; height: 32px; }
.fp-fdc-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-primary);
  background: var(--color-blue-100);
  border-radius: 4px;
  padding: 2px 7px;
}
.fp-fdc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.fp-fdc-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
  line-height: 1.65;
}
.fp-fdc-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}
.fp-fdc-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.45;
}
.fp-check-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-top: 1px;
}

/* Split Features */
.fp-split-section {}
.fp-split-intro { margin-bottom: 56px; }
.fp-split-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-top: 8px;
}
.fp-split-row {
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}
.fp-split-row:last-child { border-bottom: none; }
.fp-split-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.fp-split-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}
.fp-split-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}
.fp-split-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-split-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.fp-split-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}

/* Proof placeholder */
.fp-proof-section {}
.fp-proof-inner {
  border: 1px dashed var(--color-border, #e5e7eb);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  background: var(--color-bg-page);
}
.fp-proof-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-body-muted, #9ca3af);
  margin-bottom: 12px;
}
.fp-proof-inner p {
  font-size: 0.875rem;
  color: var(--color-body-muted, #9ca3af);
  margin: 0;
  line-height: 1.6;
}

/* Related Links */
.fp-related-header { margin-bottom: 32px; }
.fp-related-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-top: 6px;
}
.fp-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.fp-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(51,64,208,.1);
  color: inherit;
}
.fp-related-icon .acf-icon-img { width: 28px; height: 28px; }
.fp-related-cat {
  font-size: 0.75rem;
  color: var(--color-body-muted, #9ca3af);
  line-height: 1.4;
}
.fp-related-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
  flex: 1;
}
.fp-related-arrow {
  color: var(--color-primary);
  font-size: 0.875rem;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .fp-hero-image { display: none; }
  .fp-split-row { padding: 36px 0; }
  .fp-split-media { margin-top: 24px; order: 2 !important; }
  .fp-split-content { order: 1 !important; }
  .fp-fdc-checklist { grid-template-columns: 1fr; }
  .fp-hero2 .fp-hero-image { display: block; }
}

/* 17/08/26 start */
.fp-statement-section .section-eyebrow {
    justify-content: center;
}
.fp-statement-section2 .section-intro .section-heading,
.fp-statement-section2 .section-intro .section-subtext {
  text-align: center;
  margin-inline: auto;
  max-width: 760px;
}
.fp-statement-section2 {
    background: #fff;
	padding-bottom:0;
}
.fp-statement-section2 .section-heading {
    max-width:760px
}
.fp-fdc-section2 .section-intro{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.fp-split-section2 .fp-split-intro{
	display: flex;
    flex-direction: column;
    align-items: center;
}
.fp-split-section2 .fp-split-row .fp-split-media img{
	border: none;
}
.fp-split-section2 .fp-split-row {
    padding: 0;
    border-bottom: none;
}
.fp-fdc-section2 .section-intro .section-heading {
    text-align: center;
    margin-inline: auto;
    max-width: 760px;
}
.fp-split-section2 .fp-split-intro .section-heading {
    text-align: center;
    margin-inline: auto;
    max-width: 760px;
}
.fp-split-section2 .fp-split-intro .section-subtext {
    text-align: center;
	max-width: 760px;
}
.fp-fdc-section2 .section-intro .section-subtext {
    text-align: center;
	max-width: 760px;
}
.fp-statement-section2 .section-eyebrow {
    justify-content: center;
}
.fp-statement-section2 .feature-card {
    border-left: none;
}
.fp-statement-section2 .feature-card .acf-icon-img{
	width: 23px;
    height: 23px;
}
.ff-workflow-section .container {
    background: var(--color-dark-navy);
    border-radius: 30px;
    padding: 64px 50px;
}
.ff-workflow-section .ff-step-icon{
	width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.ff-solutions-section .feature-card {
    border-left: none;
}
.ff-solutions-section .feature-card .acf-icon-img{
	width: 24px;
    height: 24px;
}
.ff-solutions-section .feature-card .feature-card-link {
  margin-top: 27px !important;
  background: #E8EBFF;
  width: fit-content;
  border-radius: 50px;
  padding: 10px 18px;
  color: var(--color-primary);
}
.ff-ecosystem-section .section-heading{
	max-width: 720px;
}
.ff-ecosystem-section .feature-card {
    border-left: 0;
}
.ff-ecosystem-section .feature-card .acf-icon-img {
    width: 20px;
    height: 20px;
}
.ff-ecosystem-section .feature-card .feature-card-link {
  color: var(--color-primary);
}
.ff-ecosystem-section .feature-card .feature-card-link:hover {
  background: transparent;
  box-shadow: none;
}
.fp-cta-section .cta-card {
    background: radial-gradient(120% 140% at 8% 100%, rgba(87, 101, 255, 0.55) 0%, rgba(87, 101, 255, 0) 55%), var(--color-dark-navy);
    border-radius: 30px;
}
.fp-cta-section .cta-card h2 {
    color: #fff;
}
.fp-cta-section2 .cta-card {
    background: radial-gradient(120% 140% at 8% 100%, rgba(87, 101, 255, 0.55) 0%, rgba(87, 101, 255, 0) 55%), var(--color-dark-navy);
    border-radius: 30px;
}
.fp-cta-section2 .cta-card h2 {
    color: #fff;
}
.fp-cta-section .btn-cta-secondary {
	background: transparent;
    color: #fff;
    border: 1.5px solid var(--color-border);
    padding: 11px 24px;
    font-size: 14px;
}
.fp-cta-section2 .btn-cta-secondary {
	background: transparent;
    color: #fff;
    border: 1.5px solid var(--color-border);
    padding: 11px 24px;
    font-size: 14px;
}
.fp-fdc-section .fp-fdc-icon {
	width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: #E6E9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.fp-fdc-section .fp-fdc-icon .acf-icon-img {
    width: 23px;
    height: 23px;
}
.fp-fdc-section .fp-check-icon{
	width: 20px;
    height: 20px;
    border-radius: var(--radius-sm);
    background: #E6E9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.fp-related-section .fp-related-icon{
	width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: #E6E9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.fp-related-section .fp-related-icon .acf-icon-img {
    width: 21px;
    height: 21px;
}
.fp-related-section .fp-related-arrow{
	width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #E6E9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.ff-platform-section2{
	padding-top:0;
}
.ff-platform-section2 .platform-cards .feature-card{
	border-top: none;
}
.ff-platform-section2 .platform-cards > .col-12:first-child > .feature-card {
  background: linear-gradient(
    106.51deg,
    #E8EBFF 0%,
    #FFFFFF 62%
  );
}
.platform-cards > .col-12:last-child > .feature-card {
  background: #F2F3FB;
  );
}
.ff-platform-section2 .platform-cards .feature-card-link {
    color: var(--color-primary);
    text-decoration: none ;
}
.ff-platform-section2 .platform-cards .feature-card > p {
    margin-bottom: 11px;
}
.fp-proof-section2{
	padding: 0;
	display:none;
}
.fp-hero .fp-hero-eyebrow{
	width: 100%;
}
.ff-solutions-section2{
	background: #fff;
	padding-top: 0;
}
.ff-ecosystem-section2{
	background: #fff;
	padding-top: 0;
}
.fp-related-section2{
	padding-bottom:0;
}
.fp-before-after2{
	padding:0;
	
}
.fp-before-after2 .frag-arrow{
	display:none;
}
.fp-bond-complexity2{
	background: #fff !important;
}
.fp-bond-complexity2 .section-intro{
	display: flex;
    flex-direction: column;
    align-items: center;
}


.fp-bond-complexity2 .section-intro .section-heading {
    text-align: center;
    margin-inline: auto;
    max-width: 760px;
}
.fp-bond-complexity2 .section-intro  .section-subtext {
    text-align: center;
	max-width: 760px;
}
.fp-related-section3{
	padding-top:0;
}
.card-grid-section2 .feature-card .capability-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.card-grid-section2 .feature-card .capability-icon .acf-icon-img {
    width: 22px!important;
    height: 22px!important;

}
.card-grid-section2 .feature-card {
  padding: 20px;
  border-radius: 30px;
  border: 1px solid rgba(231, 233, 246, 1);
  box-shadow:
    0px 2px 8px 0px rgba(27, 26, 46, 0.04),
    0px 1px 2px 0px rgba(27, 26, 46, 0.05);
}
.why-artemis-card-grid-section2 .feature-card :is(.feature-label, p, h5) {
  padding-inline: 20px;
}
.card-grid-section2 .feature-card .feature-card-link {
    width: fit-content;
    border-radius: 50px;
    padding: 11px 20px;
    background: rgba(232, 235, 255, 1);
}

.why-artemis-card-grid-section2 .feature-card {
  padding: 0px;
  border-radius: 30px;
  border: 1px solid rgba(231, 233, 246, 1);
  box-shadow:
    0px 2px 8px 0px rgba(27, 26, 46, 0.04),
    0px 1px 2px 0px rgba(27, 26, 46, 0.05);
}
.why-artemis-card-grid-section2 .feature-card .acf-icon-img{
	width:100%;
	height:100%;
	border-radius: 20px 20px 0 0;
	margin-bottom:20px;
	
}
.card-grid-section2 .col-md-6, .col-lg-6{
   margin-bottom: 24px;
}
.fp-hero2 .fp-hero-badge-icon,
.fp-hero-common .fp-hero-badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background: var(--color-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-hero2 .fp-hero-badge-icon .fp-hero-icon,
.fp-hero-common .fp-hero-badge-icon .fp-hero-icon {
  width: 13px;
  height: 13px;
}

.fp-hero2 .fp-hero-badge,
.fp-hero-common .fp-hero-badge {
  padding: 6px 15px 6px 6px;
}

.fp-related-section2 .fp-related-arrow,
.fp-related-section3 .fp-related-arrow {
  margin-top: auto;
  align-self: flex-end;
}
.tabs-comparison-section2 .why-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tabs-comparison-section2 .why-tab {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
}

.tabs-comparison-section2 .tabs-comparison-tab-number {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.tabs-comparison-section2 .tabs-comparison-tab-label {
  grid-column: 2;
  grid-row: 1;
}

.tabs-comparison-section2 .tabs-comparison-tab-sublabel {
  display: block;
}
.tabs-comparison-section2 .tabs-comparison-tab-number {
    background: rgba(87, 101, 255, 1);
	color: white;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-timeline-section2 .timeline-step {
    padding: 24px;
	border: 1px solid rgba(231, 233, 246, 1);
    border-radius: 30px;
    margin-bottom: 40px;
}
.page-timeline-section2 .feature-label,
.numbered-list-split2 .feature-label {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
.page-timeline-section2 .timeline-step-num {
    background: white;
    border: 1px solid var(--color-primary);
	color: var(--color-primary);
}
.page-timeline-section2 .page-timeline-footnote {
    font-style: normal;
    text-align: center;
    font-weight: 400;
    max-width: 880px;
    margin-inline: auto;
    font-size: 16px;
}
.fp-hero2 .fp-hero-checklist li {
  background: white;
  padding: 10px;
  border: 1px solid rgba(231, 233, 246, 1);
  box-shadow:
    0px 2px 8px 0px rgba(27, 26, 46, 0.04),
    0px 1px 2px 0px rgba(27, 26, 46, 0.05);
  color: var(--color-text-primary);
  width: fit-content;
  font-weight: 600;
}
.numbered-list-split2 .numbered-item-num {
    border-radius: 18px;
}
.tabs-comparison-section2 .capability-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.page-timeline-section2 .timeline-pills strong{
  color: var(--color-primary);
}
.page-timeline-section2 .why-tags span {
    display: flex;
    border-radius: 12px;
    flex-direction: column;
}
.ff-ecosystem-section2 .eco-group-label span{
   color: rgba(136, 139, 172, 1);
   border: none;
}
.not-found{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 50vh;
    align-items: center;
  }
.not-found .search-form{
    display: flex;
    justify-content: center;
    gap: 6px;
}
.support-hero .fp-hero-badge-icon{
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: var(--color-blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-hero .fp-hero-icon{
	width: 13px;
    height: 13px;
}
.support-hero .fp-hero-badge{
	padding: 6px 15px 6px 6px;
}
.page-hero-quicklinks{
	display: flex;
	gap:8px;
	margin-top: 16px;
	align-items: center;
	flex-wrap: wrap;
}
.page-hero-quicklinks .page-hero-quicklink-item{
	background: transparent;
    border: 1.5px solid var(--color-border);
    padding: 11px 24px;
    font-size: 14px;
	border-radius: 50px;
	color: var(--color-text-secondary);
	font-weight:600;
}
.tiers-table-section2 .table-responsive{
	border: 1px solid  rgba(231, 233, 246, 1);
	border-radius:30px;
} 
.tiers-table-section2 .table-responsive td:nth-child(2) {
  color: rgba(76, 80, 112, 1);
}
.tiers-table-section2 .table-responsive td:last-child {
  color: var(--color-primary);
}
.insights-grid-section2 textarea{
	border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
	width: 100%;
	margin-top: 6px;
	height: 80px;
}
.insights-grid-section2 .insight-demo-form-card{
  max-width: 100%;
}
.partner-logos-section{
	display: none;
}
/* new add */
/* ============================================================
   Artemis v1.12.15 — New CSS additions
   Paste this into assets/css/style.css at the end of the file
   (after all existing code).
   ============================================================ */

/* ── Feature Page: Hero Badge ────────────────────────────────────────────── */
.fp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(76, 80, 112, 1);
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(231, 233, 246, 1);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
  box-shadow:
    0px 2px 8px 0px rgba(27, 26, 46, 0.04),
    0px 1px 2px 0px rgba(27, 26, 46, 0.05);

}

/* ── Feature Page: Hero Checklist ────────────────────────────────────────── */
.fp-hero-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  border-radius: 100px;
  font-weight: 400;
  width: fit-content;
  color: var(--color-text-secondary);
}
.fp-hero-checklist .fp-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(79, 70, 229, .12);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ── Feature Page: Hero Quote / Callout ──────────────────────────────────── */
.fp-hero-quote {
  margin: 22px 0 0;
  padding: 16px 20px;
  border-left: 3px solid var(--color-primary);
  background: rgba(79, 70, 229, .05);
  border-radius: 0 8px 8px 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── Social Proof: Logo Placeholders ─────────────────────────────────────── */
.fp-proof-logos {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.fp-proof-logo-slot {
  width: 120px;
  height: 40px;
  background: var(--color-border, #e5e7eb);
  border-radius: 6px;
  opacity: .45;
}

/* ── Ecosystem: Group Labels (BY ROLE / BY BOND TYPE) ────────────────────── */
.eco-group-label {
  padding: 0 0 12px;
  margin-top: 8px;
}
.eco-group-label span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  border: 1px solid rgba(79, 70, 229, .25);
  border-radius: 100px;
  padding: 3px 12px;
}

/* ── Bond Complexity Section (4-col stage cards) ─────────────────────────── */
.fp-bond-complexity { background: var(--color-bg-page); }
.fp-bond-complexity-grid { margin-top: 32px; }
.fp-complexity-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 20px;
}
.fp-complexity-stage {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.fp-complexity-icon { margin-bottom: 12px; }
.fp-complexity-icon .acf-icon-img { width: 32px; height: 32px; }
.fp-complexity-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.fp-complexity-text {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* new add end  */
/* 17/08/26 end */
