/* ─── Token system ─── */
:root {
  --ink: #0d1117;
  --ink-soft: #3e3e3e;
  --ink-faint: #8898aa;
  --surface: #ffffff;
  --raised: #f7f9fc;
  --border: #e4eaf2;
  --accent: #0052cc; /* Microsoft-adjacent deep blue */
  --accent-lt: #e8f0fe;
  --accent2: #00b4d8; /* teal highlight */
  --accent3: #6366f1; /* indigo for variety */
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --r: 10px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --display: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --accent-ot: #c4d9ff;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Segoe UI", Helvetica, sans-serif;
  /* font-family: var(--body); */
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
}
/* a:hover {
  text-decoration: underline;
} */
h2 {
  font-size: 27px !important;
}
.breadcrumb span {
  margin: 0 6px;
  font-size: 17px;
}
.breadcrumb {
  padding: 5px 0;
  font-size: 0.8rem;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--border);
  background: var(--raised);
}
.breadcrumb .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
  /* padding: 0 5px; */
  color: #313131;
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
}
.breadcrumb span {
  margin: 0 6px;
}
.header-image {
  background: linear-gradient(135deg, #0d1f4e 0%, #0052cc 60%, #0077e6 100%);
  color: #fff;
  padding: 40px 0 40px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.header-image::before {
  content: "";
  /* position: absolute; */
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb {
  margin-top: 60px;
}

.header-image .breadcrumbs_block {
  padding-top: 3px;
  padding-bottom: 0;
  display: inline-block;
}
.header-image .breadcrumbs_block ol {
  display: flex;
  list-style: none;
  align-items: baseline;
  padding: 0;
  margin: 0;
}
.header-image .breadcrumbs_block ol li {
  display: inline-block;
}
.header-image .breadcrumbs_block ol li a {
  color: #313131;
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
}
.header-image .breadcrumbs_block .icon-angle-right {
  margin: 0 0 0 2px;
}
.header-image .breadcrumbs_block .icon-angle-right:before {
  content: "";
  margin: 0 0 0 5px;
  color: #000;
  font-size: 14px;
  background: url(/template/default/images/icons/product1.png) no-repeat;
  width: 7px;
  height: 9px;
  display: inline-block;
  background-size: 7px;
}
.header-content {
  display: flex;
  width: 100%;
  position: unset;
  transform: none;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.header-content .left-content {
  flex-basis: 60%;
}
.header-content .videos_img_list {
  /* flex-basis: 40%; */
  position: relative;
  /* margin: 30px 0 0; */
  opacity: 100%;
}
.header-content .videos_img_list a {
  background: url(/template/default/images/icons/one-video-icon.png) no-repeat;
}
.header-content .videos_img_list a:hover {
  box-shadow: 0 2px 40px 9px var(--themeColorDark);
  border-radius: 50%;
}
.header-content .videos_img_list a {
  display: block;
  height: 75px;
  width: 75px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0.8;
  transform: translate(0, -20px);
  background: url(/template/default/images/icons/one-video-icon.png) no-repeat;
}
.header-content h1 {
  font-size: 20px;
  line-height: 40px;
  font-weight: 600;
  margin: 0;
  color: var(--themeColorDark);
}
.header-content h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 20px;
}
.header-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  padding-right: 80px;
}
.header-content h3 {
  margin-bottom: 40px;
  margin-top: 10px;
}
.header-content h3 a {
  font-size: 36px;
  line-height: 28px;
  color: #313131;
  font-weight: 600;
}
.header-content h3 span {
  font-size: 42px;
  line-height: 28px;
  color: var(--themePriceColor);
}
.left-content a {
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0px 26px;
  height: 45px;
  line-height: 45px;
  border-radius: 9px;
  /* transition: all 0.15s; */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  width: fit-content;
  /* background: #fff; */
  background: #ffbf00;
  color: #000;
  display: block;
}

.left-content a:hover {
  /* background: #ffbf00; */
  background: #ffd455;
  text-decoration: none;
  /* color: #fff; */
}

.banner-btn-holder {
  display: flex;
  gap: 30px;
}
.migrate-now,
.migrate-now-bg {
  height: 40px;
  line-height: 38px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0;
  text-align: center;
  padding: 0 35px;
  font-size: 17px;
  width: max-content;
  display: inline-block;
}
.migrate-now {
  margin: 0 20px 0 0;
}
.migrate-now,
.migrate-now-bg:hover {
  background: var(--themeColorDark);
  color: #fff;
}
.migrate-now-bg {
  border: 1px solid var(--themeColorDark);
  color: var(--themeColorDark);
  background: #fff;
}
.migrate-now:hover,
.button-new:hover {
  background: var(--themeButtonHover);
}

/* ─── Layout ─── */
.container {
  /* max-width: 1120px; */
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── Hero ─── */

.hero {
  background: linear-gradient(135deg, #0d1f4e 0%, #0052cc 60%, #0077e6 100%);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent2);
  border-radius: 2px;
  display: inline-block;
}

.hero h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent2);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fff;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 9px;
  transition: all 0.15s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #003fa3;
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 9px;
  transition: all 0.15s;
}

.btn-ghost:hover {
  border-color: #fff;
  text-decoration: none;
}

.hero-badges {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
}

.hero-badge strong {
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-badge span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

/* ─── Layout shell ─── */
.page-body {
  display: grid;
  /* grid-template-columns: 240px 1fr; */
  grid-template-columns: auto 1fr;
  gap: 0;
  /* max-width: 1120px; */
  max-width: 1350px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* ─── Sidebar TOC ─── */
.toc-sidebar {
  padding: 36px 24px 36px 0;
  position: sticky;
  top: 64px;
  height: fit-content;
  align-self: start;
  border-right: 1px solid var(--border);
}
.toc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: var(--ink-faint); */
  margin-bottom: 14px;
}
.toc-sidebar ol {
  list-style: none;
  counter-reset: toc;
}
.toc-sidebar li {
  counter-increment: toc;
  margin-bottom: 2px;
}

.toc-sidebar a {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-soft);
  /* padding: 5px 8px; */
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.15s;
  align-items: flex-start;
  line-height: 1.4;
}

.toc-sidebar a:hover {
  /* background: var(--accent-lt); */
  background: #e2ecff !important;
  color: var(--accent);
  text-decoration: none;
}
.toc-sidebar a:hover::before {
  color: var(--accent);
}

/* ─── Article ─── */
.article {
  padding: 48px 0 80px 40px;
}
.article section {
  margin-bottom: 72px;
}

/* ─── Section headings ─── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
h2 {
  /* font-family: var(--display); */
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}
.section-lead {
  font-size: 15px;
  color: var(--ink-soft);
  /* max-width: 680px; */
  margin-bottom: 32px;
  line-height: 1.7;
  padding-top: 20px;
}
h3 {
  /* font-family: var(--display); */
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 28px;
}
h3:first-child {
  margin-top: 0;
}
p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ─── Reason cards ─── */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.reason-card {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all 0.2s;
}
.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent);
}
.reason-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.reason-icon svg {
  color: var(--accent);
}
.reason-card h3 {
  margin-top: 0;
  font-size: 18px;
  margin-bottom: 6px;
}
.reason-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

#why-migrate h2 {
  padding-bottom: 20px;
}

/* ─── Scenario cards ─── */
.scenario-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scenario-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.15s;
}
.scenario-card:hover {
  box-shadow: var(--shadow-sm);    transform: translateY(-2px);
}
.scenario-card:nth-child(2) {
  border-left-color: var(--accent2);
}
.scenario-card:nth-child(3) {
  border-left-color: var(--accent3);
}
.scenario-card:nth-child(4) {
  border-left-color: var(--green);
}
.scenario-card:nth-child(5) {
  border-left-color: var(--orange);
}
.scenario-card:nth-child(6) {
  border-left-color: var(--red);
}
.sc-num {
  /* font-family: var(--display); */
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--border);
  min-width: 32px;
  line-height: 1;
  padding-top: 3px;
}
.sc-content h3 {
  margin-top: 0;
  font-size: 18px;
}
.sc-content p {
  margin: 0;
  font-size: 15px;
}

/* ─── Migration types ─── */
.migration-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mtype-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.mtype-card:hover {
  box-shadow: var(--shadow-md);    transform: translateY(-2px);
}
.mtype-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--raised);
  border-bottom: 1px solid var(--border);
}
.mtype-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-blue {
  background: var(--accent-lt);
  color: var(--accent);
}
.badge-teal {
  background: #e0f7fa;
  color: #006064;
}
.badge-indigo {
  background: #ede9fe;
  color: #4338ca;
}
.badge-green {
  background: #d1fae5;
  color: #065f46;
}
.badge-orange {
  background: #fef3c7;
  color: #92400e;
}
.badge-purple {
  background: #f3e8ff;
  color: #6b21a8;
}
.badge-red {
  background: #fee2e2;
  color: #991b1b;
}
.mtype-header h3 {
  margin: 0;
  font-size: 1rem;
  flex: 1;
}
.mtype-scale {
  font-size: 0.78rem;
  color: var(--ink-faint);
  white-space: nowrap;
  font-weight: 500;
}
.mtype-body {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.mtype-col-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.mtype-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.mtype-body ul {
  list-style: none;
  padding: 0;
}
.mtype-body li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 3px 0;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.mtype-body li::before {
  /* content: "✓"; */
  content: "" !important;
  background: url(/template/default/images/office365-checkmark.svg);
  /* color: var(--green); */
  /* font-size: 0.8rem; */
  flex-shrink: 0;
  padding-top: 1px;
  height: 15px;
  width: 15px;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 0px 0px;
  margin: 3px 0 0 0;
}
.mtype-warn li::before {
  /* content: "⚠"; */
  content: "" !important;
  /* color: var(--orange); */
  background: url(/template/default/images/office365-warning.svg);
  height: 15px;
  width: 15px;
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 0px 0px;
  margin: 3px 0 0 0;
}

/* ─── Comparison table ─── */
.main_table {
  overflow: auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--r-lg);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-table thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.compare-table thead th:first-child {
  border-radius: var(--r-lg) 0 0 0;
}
.compare-table thead th:last-child {
  border-radius: 0 var(--r-lg) 0 0;
}
.compare-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: var(--raised);
}
.compare-table td {
  padding: 14px 18px;
  color: var(--ink-soft);
  vertical-align: top;
  font-size: 15px;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

/* ─── Process phases ─── */
.phase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.phase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  gap: 18px;
  transition: box-shadow 0.2s;
}
.phase-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
}
.phase-num {
  /* font-family: var(--display); */
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-lt);
  min-width: 52px;
  line-height: 1;
}
.phase-content h3 {
  margin-top: 0;
  font-size: 17px;
  margin-bottom: 10px;
}
.phase-content ul {
  list-style: none;
  padding: 0;
}
.phase-content li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 3px 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.phase-content li::before {
  /* content: "→"; */
  content: "" !important;
  /* color: var(--accent); */
  /* font-size: 0.78rem; */
  padding-top: 2px;
  flex-shrink: 0;
  background: url(/template/default/images/office365-circle-arrow.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  background-size: 15px;
  margin-top: 5px;
}

/* ─── Timeline table ─── */
.timeline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.timeline-table th {
  background: var(--ink);
  color: #fff;
  padding: 13px 18px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.timeline-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
  vertical-align: top;
  font-size: 15px;
}
.timeline-table tr:last-child td {
  border-bottom: none;
}
.timeline-table tr:hover td {
  background: var(--raised);
}
.timeline-table td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.timeline-pill {
  display: inline-block;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ─── Checklist ─── */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.check-item {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-item:hover{
	    transform: translateY(-2px);
}

/* .check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 1px;
} */
.check-box::before {
  content: "";
  background: url(/template/default/images/office365-checkmark1.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  background-size: 20px;
  margin: 3px 0 0 0;
}

#choose .check-box::before {
  content: "";
  background: url(/template/default/images/office365-questionmark.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block;
  background-size: 20px;
  margin: 2px 0 0 0;
}

.check-item strong {
  display: block;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 3px;
}
.check-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ─── Security section ─── */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.security-panel {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.security-panel h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 16px;
}
.security-panel ul {
  list-style: none;
  padding: 0;
}
.security-panel li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.security-panel li:last-child {
  border-bottom: none;
}
.security-panel li span {
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.security-panel li::before {
  content: "";
  background: url(/template/default/images/office365-checkmark.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  display: block;
  background-size: 15px;
  min-width: 15px;
  margin: 3px 0 0 0;
}

/* ─── Challenges ─── */
.challenge-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
}
.challenge-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.challenge-card:hover{
	 transform: translateY(-2px);
}

.challenge-header {
  background: #fef9f0;
  border-bottom: 1px solid #fde68a;
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.challenge-header .ch-icon {
  font-size: 1.1rem;
}
.challenge-header strong {
  font-size: 0.9rem;
  color: var(--ink);
}
.challenge-header .ch-tag {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #92400e;
  background: #fef3c7;
  padding: 3px 8px;
  border-radius: 20px;
}
.challenge-body {
  padding: 18px 20px;
}
.challenge-body p {
  margin: 0 0 12px;
  font-size: 15px;
  /* min-height: 80px; */
}
.challenge-body .fix {
  background: #f0fdf4;
  border-left: 3px solid var(--green);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #065f46;
}
.challenge-body .fix strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Best practices ─── */
.bp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: all 0.2s;
  position: relative;
}
.bp-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.bp-num {
  /* font-family: var(--display); */
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 10px;
}
.bp-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.bp-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

/* ─── Tools comparison ─── */
.tools-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tool-panel {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.tool-panel:hover{
	 transform: translateY(-2px);
}
.tool-panel.featured {
  border-color: var(--accent);
}
.tool-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--raised);
}
.tool-panel.featured .tool-panel-header {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.tool-panel-header .t-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 4px;
}
.tool-panel.featured .tool-panel-header .t-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.tool-panel-header h3 {
  margin: 0;
  font-size: 1.05rem;
}
.tool-panel.featured .tool-panel-header h3 {
  color: #fff;
}
.tool-panel-body {
  padding: 22px 24px;
}
.tool-panel-body .best-for {
  font-size: 0.82rem;
  color: var(--ink-faint);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tool-panel-body ul {
  list-style: none;
  padding: 0;
}
.tool-panel-body li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 5px 0;
  /* border-bottom: 1px solid var(--border); */
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}
.tool-panel-body li:last-child {
  border-bottom: none;
}
.tool-panel-body li .li-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.tool-panel-body li .li-icon.good {
  color: var(--green);
}
.tool-panel-body li::before {
  content: "";
  background: url(/template/default/images/office365-correct.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  display: block;
  margin-top: 4px;
  min-width: 15px;
  background-size: 15px;
}
.tool-panel-body li.limit::before {
  content: "";
  background: url(/template/default/images/office365-wrong.svg);
  background-repeat: no-repeat;
  height: 15px;
  width: 15px;
  display: block;
  margin-top: 4px;
  min-width: 15px;
  background-size: 15px;
}

.tool-panel-body li .li-icon.bad {
  color: var(--red);
}
.tool-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  /* font-size: 0.9rem; */
  font-size: 17px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: row-reverse;
}
.tool-cta:hover {
  background: #003fa3;
  text-decoration: none;
}
.tool-cta img {
  height: 18px;
  width: 18px;
}

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: var(--raised);
  border: none;
  text-align: left;
  /* padding: 18px 22px; */
  padding: 18px 40px 18px 20px;
  /* font-family: var(--body); */
  font-size: 16px;
  /* font-weight: 600; */
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover {
	 transform: translateY(-2px);
  background: var(--accent-lt);
}
.faq-q .faq-arrow {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}
.faq-a {
  display: none;
  padding: 18px 22px 18px;
  background: var(--surface);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  display: block;
}

/* ─── CTA banner ─── */
.cta-banner {
  background: linear-gradient(135deg, #0d1f4e 0%, #0052cc 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 72px;
}
.cta-banner h2 {
  /* font-family: var(--display); */
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}
.cta-banner .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  /* font-family: var(--display); */
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--accent2);
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
}
footer h4 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer li {
  margin-bottom: 8px;
}
footer a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  transition: color 0.15s;
}
footer a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* ─── Info note ─── */
.info-note {
  background: var(--accent-lt);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 15px;
  color: #1e3a8a;
  margin-bottom: 24px;
  line-height: 1.6;
}

.checklist-grid {
  margin-top: 20px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .page-body {
    /* grid-template-columns: 1fr; */
    grid-template-columns: 100%;
  }
  .toc-sidebar {
    display: none;
  }
  .article {
    padding: 32px 0 60px;
  }
  .reason-grid,
  .bp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tools-compare,
  .security-grid,
  .phase-grid,
  .checklist-grid,
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .mtype-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .reason-grid,
  .bp-grid {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-badges {
    gap: 20px;
  }
}

.pipeline-card {
  /* width: 480px; */
  background: #fff;
  border: 1px solid #dfe8f3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px;
}
.tabs {
  background: #ecf3fa;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 10px;
  gap: 5px;
}
.pipeline-card .tabs .tab:hover {
  background: #c6def2;
  border-radius: 10px;
}
.tab {
  text-align: center;
  padding: 14px 10px;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  background: #d5e2f0;
  border-radius: 10px;
}
.tab.active:hover {
  /* background: #1683d8 !important; */
  background: linear-gradient(
    284deg,
    #0d2666 0%,
    #1664d9 60%,
    #2495ff 100%
  ) !important;
  color: #fff;
  border-radius: 10px;
}
.tab.active {
  /* background: #1683d8; */
  background: linear-gradient(284deg, #0d2666 0%, #1664d9 60%, #2495ff 100%);
  color: #fff;
  border-radius: 10px;
}
/* .flow-box {
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 16px;
} */
.flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.system {
  width: 200px;
  height: auto;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 10px;
  color: #000;
}

.system img {
  height: 26px;
  width: 26px;
}

.system strong {
  font-size: 13px;
}
.system small {
  color: #777;
  font-size: 11px;
}

.center-arrow svg {
  color: #1683d8;
}
.icon-angle-right {
  margin: 0 8px 0 2px !important;
}

@media (max-width: 1440px) {
  .page-body {
    padding: 0px 24px;
  }
  .header-content {
    padding: 0px 0px !important;
    gap: 30px;
  }
  .header-content {
    display: grid;
    grid-template-columns: 48% 48%;
  }
  .flow {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    grid-template-columns: 45% 5% 45%;
  }
  .system {
    width: 100%;
  }
}

@media (max-width: 1280px) {
  .header-image {
    padding: 40px 0px;
  }
  .header-content {
    padding: 0px 0px !important;
    gap: 30px;
  }
  .header-content p {
    padding-right: 0px;
  }
  .header-image .content-wrapper {
    padding: 0 0px !important;
  }
  .header-image {
    padding: 40px 24px;
  }
  .system {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1279px) {
  .header-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 980px) {
  .flow {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    grid-template-columns: 100%;
  }
  .center-arrow {
    text-align: center;
    rotate: 90deg;
  }
  .header-content {
    padding: 0px 0px !important;
    gap: 30px;
  }
  .page-body {
    padding: 0px 24px;
  }
  .cta-banner {
    padding: 25px;
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  .compare-table td,
  .timeline-table td {
    white-space: nowrap;
  }

  .article {
    padding: 30px 0 30px;
  }
  .header-content {
    display: grid;
    grid-template-columns: 100%;
  }
  .header-content .videos_img_list {
    margin-top: 0px;
  }
  .flow {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    grid-template-columns: 45% 5% 45%;
  }
  .center-arrow {
    text-align: center;
    rotate: unset;
  }
  .article section {
    margin-bottom: 30px;
  }
}

@media (max-width: 568px) {
  .header-content h1 {
    font-size: 32px;
    font-weight: 700;
  }
  .system strong {
    font-size: 12px;
  }
  .flow-box {
    border: none;
    border-radius: 0;
    padding: 0px;
  }
  .tabs {
    margin-bottom: 10px;
  }
  .mtype-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .phase-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .challenge-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .btn-ghost,
  .btn-primary {
    padding: 10px 20px;
  }
}

@media (max-width: 414px) {
  .flow {
    display: grid;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    grid-template-columns: 100%;
  }
  .center-arrow {
    text-align: center;
    rotate: 90deg;
  }
}
@media (max-width: 380px) {
  .scenario-card {
    display: flex;
    flex-direction: column;
  }
  .cta-banner {
    padding: 15px;
    /* margin-bottom: 0px; */
  }
  .phase-card,
  .security-panel {
    padding: 15px;
  }
  .header-image {
    padding: 40px 15px;
  }
  .tab {
    padding: 14px 8px;
    /* color: #666; */
    font-size: 12px;
  }
  .breadcrumb .container {
    padding: 0 15px;
    font-size: 12px;
  }
  .page-body {
    padding: 0px 15px;
  }
  .reason-card {
    padding: 15px;
  }
}

.toc-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: transparent !important;
  color: #222 !important;
  transition: all 0.2s ease;
}

.faq-q:after {
  line-height: 20px;
  display: block;
  position: absolute;
  top: 20px;
  right: 15px;
  content: "";
  text-align: center;
  font-size: 13px;
  height: 19px;
  width: 18px;
  display: inline-block;
}
.faq-q:after {
  background: url(/template/default/images/icons/pst-pst-faq-icon.png) no-repeat !important;
}

.faq-q {
  position: relative;
}
.faq-q .faq-arrow {
  display: none;
}

.faq-item.open .faq-q:after {
  content: "";
}
.faq-item.open .faq-q:after {
  background: url(/template/default/images/icons/pst-pst-faq-icon.png) 0 -56px
    no-repeat !important;
}
