/* 
 * IT-Toolkits.org — Shared Site Styles
 * Version: 3.0.0 Consolidated
 * Baseline: approved 14 Information Pages + user-approved banner settings.
 * Policy: one source of truth per component; no version-patch stacking.
  */

/* =========================
   01. Design tokens / reset
   ========================= */
:root {
  --it-primary: #0a3f55;
  --it-primary-2: #0f89c8;
  --it-accent: #4db1e2;
  --it-accent-soft: #eaf5fc;
  --it-text: #1f2937;
  --it-text-muted: #5f6b76;
  --it-heading: #0a2540;
  --it-border: #dbe3e8;
  --it-border-strong: #b9c8d2;
  --it-bg: #ffffff;
  --it-bg-soft: #f6f9fb;
  --it-bg-blue: #f4fafd;
  --it-success: #2e7d32;
  --it-warning: #ff8c00;
  --it-danger: #c62828;
  --it-radius-sm: 4px;
  --it-radius: 8px;
  --it-radius-lg: 14px;
  --it-shadow-sm: 0 2px 8px rgba(10, 37, 64, .08);
  --it-shadow: 0 10px 28px rgba(10, 37, 64, .10);
  --it-container: 1170px;
  --it-gutter: 15px;
  --it-font: Arial, Helvetica, sans-serif;
  --it-transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--it-bg);
  color: var(--it-text);
  font: 14px/1.65 var(--it-font);
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; border: 0px}
iframe { max-width: 100%; border: 0; }
a { color: var(--it-primary); text-decoration: none; }
a:hover { color: var(--it-primary-2); text-decoration: underline; }
button, input, select, textarea { font: inherit; }
button, [role="button"] { cursor: pointer; }
p { margin: 0 0 1em; }
ul, ol { margin-top: 0; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .65em;
  color: var(--it-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(28px, 3vw, 38px); }
h2 { font-size: clamp(22px, 2.2vw, 30px); }
h3 { font-size: clamp(18px, 1.7vw, 23px); }
hr { border: 0; border-top: 1px solid var(--it-border); margin: 28px 0; }
address { font-style: normal; }

/* Accessibility */
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 99999;
  transform: translateY(-160%); padding: 10px 14px;
  background: #fff; color: var(--it-primary); border: 2px solid var(--it-primary);
  border-radius: var(--it-radius-sm);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(15, 137, 200, .45); outline-offset: 2px; }

/* =========================
   02. Layout / compatibility grid
   ========================= */
.page { min-height: 100vh; overflow-x: clip; }
.grid-row,
.it-container,
.site-container {
  width: min(var(--it-container), calc(100% - 30px));
  margin-inline: auto;
}
.grid-row::after, .clearfix::after { content: ""; display: table; clear: both; }
.grid-row { display: flex; flex-wrap: wrap; margin-bottom: 0; gap: 0; }
.grid-col { min-width: 0; padding-inline: var(--it-gutter); }
.grid-col-1 { width: 8.333333%; }
.grid-col-2 { width: 16.666667%; }
.grid-col-3 { width: 25%; }
.grid-col-4 { width: 33.333333%; }
.grid-col-5 { width: 41.666667%; }
.grid-col-6 { width: 50%; }
.grid-col-7 { width: 58.333333%; }
.grid-col-8 { width: 66.666667%; }
.grid-col-9 { width: 75%; }
.grid-col-10 { width: 83.333333%; }
.grid-col-11 { width: 91.666667%; }
.grid-col-12 { width: 100%; }

/* Legacy Visual Composer grid retained only as migration compatibility. */
.vc_row-fluid, .wpb_row { display: flex; flex-wrap: wrap; gap: 2.5%; width: 100%; }
.vc_row-fluid > [class*="vc_span"], .wpb_row > [class*="vc_span"] { min-width: 0; margin-left: 0 !important; }
.vc_span12 { width: 100%; }
.vc_span9 { width: 74.375%; }
.vc_span8 { width: 65.833333%; }
.vc_span6 { width: 48.75%; }
.vc_span4 { width: 31.666667%; }
.vc_span3 { width: 23.125%; }
.wpb_content_element { margin-bottom: 24px; }
.wpb_content_element:last-child { margin-bottom: 0; }

.page-content { padding: 26px 0 42px; }
.page-content > .grid-row + .grid-row { margin-top: 28px; }
.content-main { width: 100%; }
.content-narrow { max-width: 985px; margin-inline: auto; }

/* =========================
   03. Header / navigation
   ========================= */
.page-header {
  position: relative;
  z-index: 1000;
  margin-bottom: 2px;
  background: #fff;
  border-bottom: 3px solid #e8edf0;
  
}
.logo { display: flex; justify-content: center; padding: 14px 15px 10px; margin-bottom: 20px; }
.logo > div { text-align: center; }
.logo img { display: block; width: auto; max-height: 78px; margin-inline: auto; }

.main-nav {
  width: min(var(--it-container), calc(100% - 30px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.main-nav > ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav li { position: relative; list-style: none; }
.main-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 8px;
  color: #273844;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--it-transition), color var(--it-transition);
}
.main-nav > ul > li:hover > a,
.main-nav > ul > li:focus-within > a,
.main-nav > ul > li > a.active,
.main-nav > ul > li > a[aria-current="page"] {
  background: var(--it-primary);
  color: #fff;
}
.main-nav li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1100;
  width: 280px;
  max-height: min(70vh, 620px);
  overflow-y: auto;
  padding: 7px 0;
  margin: 0;
  list-style: none;
  background: var(--it-primary);
  box-shadow: var(--it-shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity var(--it-transition), transform var(--it-transition), visibility var(--it-transition);
}
.main-nav li:hover > ul,
.main-nav li:focus-within > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav li > ul a {
  min-height: 0;
  padding: 8px 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.main-nav li > ul li:last-child > a { border-bottom: 0; }
.main-nav li > ul a:hover,
.main-nav li > ul a:focus { background: var(--it-accent); color: #fff; text-decoration: none; }
.main-nav li > ul li > ul { top: -7px; left: 100%; background: var(--it-accent); }

/* CTA menu item */
.main-nav a.menu-highlight,
.main-nav a[href*="Mega_Bundle"],
.main-nav a[href*="MEGA_BUNDLE"] {
  background: var(--it-warning);
  color: #fff;
  border-radius: 3px;
}

/* Mobile navigation: supports legacy markup and new data attributes. */
.mobile-main-nav { display: none; width: min(var(--it-container), calc(100% - 30px)); margin: 0 auto 10px; position: relative; }
.mobile-main-nav > .fa-bars,
.mobile-main-nav > .mobile-nav-toggle,
[data-mobile-nav-toggle] {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--it-radius-sm) 0 0 var(--it-radius-sm);
  background: var(--it-primary);
  color: #fff;
  vertical-align: middle;
}
.mobile-main-nav > .opener {
  display: inline-flex;
  align-items: center;
  width: calc(100% - 42px);
  min-height: 42px;
  padding: 9px 13px;
  background: var(--it-primary);
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
}
.mobile-main-nav > ul {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--it-primary);
  box-shadow: var(--it-shadow-sm);
}
.mobile-main-nav.is-open > ul { display: block; }
.mobile-main-nav li { position: relative; list-style: none; }
.mobile-main-nav li > a { display: block; padding: 10px 46px 10px 14px; color: #fff; border-top: 1px solid rgba(255,255,255,.10); text-decoration: none; }
.mobile-main-nav li > ul { display: none; padding: 0; margin: 0; background: var(--it-accent); }
.mobile-main-nav li.is-open > ul { display: block; }
.mobile-main-nav li > i,
.mobile-main-nav .submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 44px;
  height: 42px;
  border: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
}
.mobile-main-nav li > i::before,
.mobile-main-nav .submenu-toggle::before { content: "+"; font: 700 18px/1 var(--it-font); }
.mobile-main-nav li.is-open > i::before,
.mobile-main-nav li.is-open > .submenu-toggle::before { content: "−"; }

/* =========================
   04. Page title / hero / breadcrumbs
   ========================= */
.page-title { background: var(--it-primary); border-top: 4px solid var(--it-accent); color: #fff; }
.page-title .grid-row { align-items: center; justify-content: space-between; padding-block: 13px; }
.page-title h1 { margin: 0; color: #fff; font-size: 24px; }
.bread-crumbs { color: rgba(255,255,255,.78); font-size: 12px; }
.bread-crumbs a { color: #fff; }

.it-page-banner {
  width: min(var(--it-container), calc(100% - 30px));
  margin: 1px auto 1px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--it-radius-sm);
  background-image: url('../pic/Banner.webp');
}
.it-page-banner::before {
  content: none;
  display: none;
}
.it-page-banner-content { position: relative; z-index: 1; padding: 32px 50px; }
.it-page-banner-title { margin: 0 0 9px; color: #fff; font-size: clamp(17px, 2vw, 20px); }
.it-page-banner-tagline { margin: 0; color: rgba(255,255,255,.92); font-size: 14px; line-height: 1.55; }

/* Product hero currently used by newer product pages. */
.hero-banner-row { margin: 0 auto 30px; }
.hero-banner-premium { position: relative; width: 100%; overflow: hidden; background: var(--it-primary); }
.hero-banner-premium-img { display: block; width: 100%; max-width: var(--it-container); height: 180px; object-fit: cover; margin: 0 auto; }
.hero-banner-premium-overlay { position: absolute; inset: 0; background: rgba(10,63,85,.90); }
.hero-banner-premium-content { position: absolute; inset: 10% auto auto 4.5%; width: 88%; color: #fff; }
.hero-banner-premium-title { margin: 0 0 10px; color: #fff; font-size: clamp(21px, 3.2vw, 34px); text-transform: uppercase; letter-spacing: .3px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.hero-banner-premium-subtitle { margin: 0; color: #bfe7ff; font-size: clamp(14px, 1.9vw, 20px); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.hero-banner-premium-divider { width: 58px; height: 3px; margin: 10px 0 12px; background: #7fe0ff; }
.hero-banner-premium-tagline { color: #fff; font-size: 13px; }
.hero-banner-premium-benefits { margin-top: 10px; }
.hero-benefit { position: relative; padding-left: 17px; margin-bottom: 4px; color: #e8f6ff; font-size: 14px; }
.hero-benefit::before { content: "✓"; position: absolute; left: 0; color: #7fe0ff; font-weight: 700; }
.hero-benefit strong { color: #fff; }

/* =========================
   05. Content components
   ========================= */
.widget { margin-bottom: 28px; }
.widget-title,
.section-title {
  margin: 0 0 15px;
  padding: 10px 13px;
  background: #0A3F55;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.widget-title p { margin: 0; color: inherit; }
.image-center { text-align: center; }
.image-center img { display: inline-block; }
.alignleft { float: left; margin: 5px 18px 12px 0; }
.alignright { float: right; margin: 5px 0 12px 18px; }

.notice,
.info-box,
.download-note-box {
  padding: 8px 8px;
  margin-bottom: 16px;
  background: var(--it-bg-blue);
  border: 1px solid #d6eaf5;
  border-left: 5px solid var(--it-primary-2);
  color: var(--it-text);
  font-size: 13px;
  line-height: 1.1;

}
.card { background: #fff; border: 1px solid var(--it-border); border-radius: var(--it-radius); box-shadow: var(--it-shadow-sm); }

/* Lists used throughout product document inventories. */
.ul2, .toolkit-list, .related-list { padding-left: 0; margin-left: 0; list-style: none; }
.ul2 > li, .toolkit-list > li, .related-list > li { position: relative; padding-left: 22px; margin: 7px 0; }
.ul2 > li::before, .toolkit-list > li::before, .related-list > li::before { content: "›"; position: absolute; left: 4px; top: -1px; color: var(--it-primary-2); font-size: 20px; font-weight: 700; }

/* Related Toolkits — replacement for Related Templates. */
.related-toolkits { margin-top: 30px; }
.related-toolkits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.related-toolkit-card { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border: 1px solid var(--it-border); border-radius: var(--it-radius); background: #fff; transition: border var(--it-transition), box-shadow var(--it-transition), transform var(--it-transition); }
.related-toolkit-card > .btn.btn-warning {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 9px 12px;
  font-size: 13px;
}
.related-toolkit-card:hover { border-color: #b7d9ea; box-shadow: var(--it-shadow-sm); transform: translateY(-1px); text-decoration: none; }
.related-toolkit-card__title { margin: 0; color: var(--it-primary); font-size: 15px; font-weight: 700; }
.related-toolkit-card__meta { margin-top: 3px; color: var(--it-text-muted); font-size: 12px; }

/* =========================
   06. Tables
   ========================= */
.table-responsive, .download-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { max-width: 100%; border-collapse: collapse; }
table th, table td { padding: 7px 8px; vertical-align: top; white-space: normal; overflow-wrap: anywhere; }
.content-table { width: 100%; border: 1px solid var(--it-border-strong); }
.content-table th { background: #e9eef2; font-weight: 700; }
.content-table th, .content-table td { border: 1px solid var(--it-border-strong); }

/* Compatibility for old document-list tables containing inline borders. */
.page-content table[border] { border-collapse: collapse; }

/* =========================
   07. Buttons / payment
   ========================= */
.button, .btn, .download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--it-primary);
  border-radius: var(--it-radius-sm);
  background: var(--it-primary);
  color: #fff !important;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: background var(--it-transition), border var(--it-transition), transform var(--it-transition), box-shadow var(--it-transition);
}
.button:hover, .btn:hover, .download-btn:hover { background: var(--it-primary-2); border-color: var(--it-primary-2); color: #fff !important; transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--it-primary) !important; }
.btn-warning { background: var(--it-warning); border-color: var(--it-warning); }
.btn-download-payment { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 8px 0; flex-wrap: wrap; }
.btn-download-payment img { display: block; max-width: 100%; height: auto; }

.toolkit-pricing-section { width: 100%; max-width: 985px; margin: 30px auto; text-align: center; }
.toolkit-pricing-card { width: min(500px, 100%); margin: 0 auto; }
.toolkit-pricing-top { background: #fff; border: 3px solid #000000; border-radius: 12px; padding: 14px 14px 16px; }
.toolkit-price { margin: 0 0 16px; font-size: 20px; font-weight: 700; color: #111; }
.toolkit-price span { color: #eb001b; }
.toolkit-buy-form { margin: 0; padding: 0; }
.toolkit-paypal-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 210px; min-height: 38px; padding: 7px 15px; border: 1px solid #d89b00; border-radius: 6px; background: linear-gradient(#ffd34f,#f2b400); color: #111; font-size: 14px; font-weight: 700; line-height: 1.2; box-shadow: 0 4px 10px rgba(0,0,0,.16); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.toolkit-paypal-btn:hover { background: linear-gradient(#ffdc66,#eeb000); transform: translateY(-1px); box-shadow: 0 5px 11px rgba(0,0,0,.20); }
.paypal-icon { width: 21px; height: 21px; border-radius: 50%; background: #003087; display: inline-block; position: relative; flex: 0 0 21px; }
.paypal-icon::after { content: "P"; position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); color: #fff; font-size: 12px; font-weight: 700; }
.paypal-logo { font-size: 14px; font-weight: 700; white-space: nowrap; } .paypal-logo .pay { color: #003087; } .paypal-logo .pal { color: #009cde; }
.toolkit-payment-mini { margin-top: 8px; text-align: center; }
.toolkit-payment-mini img { display: inline-block; width: auto; max-width: 231px; height: auto; }
.toolkit-trust-text { margin-top: 10px; color: #666; font-size: 11px; }
.toolkit-trust-badges { margin-top: 10px; color: var(--it-success); font-size: 13px; }

/* =========================
   08. Accordion / FAQ
   ========================= */
.accordion, .wpb_accordion { width: 100%; }
.accordion-item, .wpb_accordion_section { margin: 0 0 8px; border: 1px solid var(--it-border); background: #fff; }
.accordion-trigger, .wpb_accordion_header { margin: 0; padding: 0; background: #f4f7f9; color: var(--it-heading); font-size: 15px; line-height: 1.35; }
.accordion-trigger, .wpb_accordion_header > a {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 44px 12px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}
.accordion-trigger::after, .wpb_accordion_header > a::after { content: "+"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--it-primary-2); font-size: 20px; }
.accordion-item.is-open .accordion-trigger::after,
.wpb_accordion_section.is-open .wpb_accordion_header > a::after { content: "−"; }
.accordion-panel, .wpb_accordion_content { padding: 15px 16px; border-top: 1px solid var(--it-border); }
.js-enabled .accordion-panel[hidden],
.js-enabled .wpb_accordion_content[hidden] { display: none !important; }
.wpb_accordion_content .wpb_content_element { margin-bottom: 0; }

/* =========================
   09. Vanilla carousel (legacy .owl-carousel compatible)
   ========================= */
.owl-carousel, [data-carousel] { position: relative; overflow: hidden; }
.js-enabled .owl-carousel > .item,
.js-enabled [data-carousel] > [data-carousel-item] { display: none; }
.js-enabled .owl-carousel > .item.is-active,
.js-enabled [data-carousel] > [data-carousel-item].is-active { display: block; }
.it-carousel-controls { display: flex; justify-content: flex-end; gap: 6px; margin-top: 10px; }
.it-carousel-button { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--it-primary); color: #fff; font-size: 18px; line-height: 1; }
.it-carousel-button:hover { background: var(--it-primary-2); }
.widget-comments .owl-carousel ul { list-style: none; padding: 0; margin: 0; }
.widget-comments .owl-carousel li { display: grid; grid-template-columns: 54px 1fr; gap: 10px; margin-bottom: 13px; }
.widget-comments .owl-carousel li img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.widget-comments .owl-carousel p { margin: 0; }

/* =========================
   10. Testimonials / callout
   ========================= */
.callout { display: flex; align-items: center; gap: 14px; padding: 17px 18px; background: var(--it-bg-soft); border: 1px solid var(--it-border); }
.callout .icon { flex: 0 0 auto; color: var(--it-primary-2); font-size: 28px; }
.callout .title { font-weight: 700; color: var(--it-heading); }
.callout .subtitle { color: var(--it-text-muted); }

/* =========================
   11. Download pages
   ========================= */
.download-banner { width: 100%; min-height: 104px; display: flex; align-items: center; justify-content: center; padding: 0 20px; background: #0a4f68; text-align: center; }
.download-banner-title { margin: 0; color: #fff; font-size: 30px; font-weight: 500; text-transform: uppercase; letter-spacing: .8px; }
.download-page { margin-top: 22px; margin-bottom: 24px; }
.download-header-box { text-align: center; margin-bottom: 24px; }
.download-title { margin: 0 0 12px; color: #006699; font-size: 34px; }
.download-subtitle { margin: 0; color: #555; font-size: 16px; }
.download-table-main { border: 1px solid #0099cc; background: #fff; }
.download-table-outer { border: 2px solid #006699; padding: 12px; }
.download-table { width: 100%; min-width: 640px; border-collapse: collapse; }
.download-table th { background: #e3e3e3; border: 1px solid #000080; padding: 14px 10px; text-align: center; color: #222; }
.download-table td { border: 1px solid #000080; padding: 16px 10px; text-align: center; color: #222; vertical-align: middle; }
.download-help-box { margin-top: 12px; padding: 16px 18px; background: #fafafa; border: 1px solid #e5e5e5; color: #555; }

/* =========================
   12. Footer
   ========================= */
.page-footer.footer-modern { position: relative; margin-top: 25px; background: #0A3F55; color: #cbd7df; margin-bottom: 0; }
.footer-modern .footer-main { padding: 38px 0 28px; }
.footer-modern .widget-alt { height: 100%; }
.footer-modern .widget-title { margin: 0 0 18px; padding: 0 0 10px; background: transparent; color: #fff; font-size: 14px; letter-spacing: .5px; position: relative; }
.footer-modern .widget-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 35px; height: 2px; background: var(--it-accent); }
.footer-modern p, .footer-modern address, .footer-modern li, .footer-modern a, .footer-modern span { text-indent: 0; }
.footer-modern ul { list-style: none; margin: 0; padding: 0; }
.footer-modern a { color: #cbd7df; text-decoration: none; }
.footer-modern a:hover { color: #fff; text-decoration: underline; }
.footer-modern .footer-links li { margin: 0 0 7px; }
.footer-modern .footer-post-list li { display: flex; gap: 10px; padding: 0 0 10px; margin: 0 0 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-modern .footer-post-list li:last-child { border-bottom: 0; }
.footer-modern .footer-post-thumb { flex: 0 0 72px; }
.footer-modern .footer-post-thumb img { width: 72px; height: 52px; object-fit: cover; }
.footer-modern .footer-post-text { font-size: 12px; line-height: 1.45; }
.footer-modern .footer-contact-list li { display: flex; gap: 9px; margin-bottom: 10px; }
.footer-modern .footer-contact-list i { width: 18px; flex: 0 0 18px; color: var(--it-accent); }
.footer-modern .footer-support-hours, .footer-modern .footer-payment { margin-top: 15px; }
.footer-modern .footer-mini-title { margin-bottom: 4px; color: #fff; font-weight: 700; }
.footer-modern .footer-payment img { max-width: 230px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.10); background: #0d2b3a; }
.footer-bar-inner { min-height: 50px; align-items: center; justify-content: space-between; padding-block: 10px; }
.footer-bar-left { color: #aebcc5; font-size: 12px; }
.footer-bar-left a { color: #c9d3da; }
.footer-bar-right { margin-left: auto; }
.footer-bar-cta { display: inline-flex; align-items: center; justify-content: center; padding: 9px 17px; border-radius: 24px; background: linear-gradient(135deg,#1eb6e9,#18d2ff); color: #fff !important; font-size: 12px; font-weight: 700; text-transform: uppercase; }

#top-link.top-link {
  position: absolute;
  right: max(20px, calc((100vw - var(--it-container))/2));
  bottom: 100%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--it-primary);
  color: #fff !important;
  font-size: 23px;
  text-decoration: none !important;
}
#top-link.top-link:hover { background: var(--it-primary-2); }

/* =========================
   13. Sticky legacy promo
   ========================= */
.ex-wrap1 { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; width: 100%; background: #00739f; min-height: 38px; }
.ex-grid { position: relative; margin: 0 10px; }
.ex-content1 { padding: 6px 34px 6px 0; color: #fff; font-size: 16px; text-align: center; min-height: 38px; display: flex; align-items: center; justify-content: center; }
.ex-close { position: absolute; right: 8px; top: 50%; width: 24px; height: 24px; transform: translateY(-50%); border: 0; background: transparent; }
.ex-close::before, .ex-close::after { content: ""; position: absolute; left: 2px; top: 11px; width: 20px; height: 2px; background: #fff; transform: rotate(45deg); }
.ex-close::after { transform: rotate(-45deg); }

/* =========================
   14. Information-page shared patterns
   ========================= */
.info-modern { color: var(--it-text); line-height: 1.7; }
.info-modern__container { width: 100%; max-width: var(--it-container); margin-inline: auto; }
.info-modern__hero { display: flex; align-items: flex-start; gap: 30px; margin-bottom: 30px; padding: 28px; background: linear-gradient(135deg,#f8fbff,#eef6fb); border: 1px solid #dbe7f0; border-radius: var(--it-radius-lg); }
.info-modern__hero-image { flex: 0 0 360px; }
.info-modern__hero-image img { display: block; width: 100%; border: 1px solid #d6e2ec; border-radius: 10px; background: #fff; }
.info-modern__hero-content { flex: 1 1 auto; }
.info-modern__kicker { display: inline-block; margin-bottom: 10px; padding: 6px 12px; border-radius: 20px; background: var(--it-accent-soft); color: #0b74b8; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.info-modern__card-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.info-modern__card { padding: 22px; border: 1px solid var(--it-border); border-radius: 10px; background: #fff; }

/* Font Awesome 4.0.3 subset — uses the site's EXISTING /fonts assets.
   Kept inside site.css so the whole site still loads one shared stylesheet. */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfontba72.woff?v=4.0.3') format('woff'),
       url('../fonts/fontawesome-webfontba72.ttf?v=4.0.3') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fa,
[class^="fa-"]::before,
[class*=" fa-"]::before {
  font-family: 'FontAwesome';
}
.fa {
  display: inline-block;
  width: auto;
  min-width: 1em;
  text-align: center;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-home::before { content: "\f015"; }
.fa-bars::before { content: "\f0c9"; }
.fa-angle-left::before { content: "\f104"; }
.fa-angle-right::before { content: "\f105"; }
.fa-angle-double-up::before { content: "\f102"; }
.fa-check::before { content: "\f00c"; }
.fa-bookmark::before { content: "\f02e"; }
.fa-map-marker::before { content: "\f041"; }
.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-envelope-o::before { content: "\f003"; }
.fa-facebook::before { content: "\f09a"; }
.fa-twitter::before { content: "\f099"; }
.fa-rss::before { content: "\f09e"; }
.fa-cogs::before { content: "\f085"; }
.fa-shield::before { content: "\f132"; }
.fa-tasks::before { content: "\f0ae"; }
.fa-sitemap::before { content: "\f0e8"; }
.fa-wrench::before { content: "\f0ad"; }
.fa-link::before { content: "\f0c1"; }
.fa-linkedin::before { content: "\f0e1"; }
.fa-google-plus::before { content: "\f0d5"; }
.fa-youtube::before { content: "\f167"; }
.fa-quote-left::before { content: "\f10d"; }
.fa-quote-right::before { content: "\f10e"; }
/* Slideshare is not present in Font Awesome 4.0.3; retain a compact text fallback. */
.fa-Slideshare::before { content: "S"; font-family: Arial, sans-serif; font-weight: 700; }
.fa-lg { font-size: 1.333333em; line-height: .75em; vertical-align: -15%; }
.fa-2x { font-size: 2em; }


/* =========================
   17. Utilities
   ========================= */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-muted { color: var(--it-text-muted) !important; }
.text-success { color: var(--it-success) !important; }
.full-width { width: 100% !important; }
.overflow-x-auto { overflow-x: auto !important; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
[hidden] { display: none !important; }

/* =========================
   18. Responsive
   ========================= */
@media (max-width: 1199px) {
  :root { --it-container: 940px; }
  .main-nav a { padding-inline: 6px; font-size: 11px; }
}

@media (max-width: 991px) {
  :root { --it-container: 738px; }
  .main-nav { display: none; }
  .mobile-main-nav { display: block; }
  .page-header { padding-bottom: 4px; }
  .grid-col-3, .grid-col-4, .grid-col-5, .grid-col-6, .grid-col-7, .grid-col-8, .grid-col-9 { width: 100%; }
  .grid-col + .grid-col { margin-top: 24px; }
  .vc_row-fluid, .wpb_row { gap: 0; }
  .vc_row-fluid > [class*="vc_span"], .wpb_row > [class*="vc_span"] { width: 100% !important; }
  .vc_row-fluid > [class*="vc_span"] + [class*="vc_span"] { margin-top: 24px; }
  .footer-modern .grid-col-3 { width: 50%; }
  .footer-modern .grid-col + .grid-col { margin-top: 0; margin-bottom: 28px; }
  .info-modern__hero,
  .about-hero,
  .refund-policy-modern .rp-hero,
  .terms-policy-modern .tp-hero,
  .privacy-policy-modern .pp-hero,
  .copyright-policy-modern .cp-hero,
  .payment-guide-modern .pg-hero { flex-direction: column; }
  .info-modern__hero-image,
  .about-hero-image,
  .refund-policy-modern .rp-hero-image,
  .terms-policy-modern .tp-hero-image,
  .privacy-policy-modern .pp-hero-image,
  .copyright-policy-modern .cp-hero-image,
  .payment-guide-modern .pg-hero-image { flex-basis: auto; width: 100%; max-width: 520px; }
}

@media (max-width: 767px) {
  :root { --it-container: 100%; --it-gutter: 10px; }
  body { font-size: 14px; }
  .grid-row, .it-container, .site-container, .main-nav, .mobile-main-nav { width: calc(100% - 20px); }
  .logo { padding-top: 10px; }
  .logo img { max-height: 66px; }
  .page-content { padding: 20px 0 34px; }
  .it-page-banner { width: calc(100% - 20px); min-height: 0; margin-block: 12px 22px; }
  .it-page-banner-content { padding: 30px 20px; }
  .it-page-banner-tagline { font-size: 14px; }
  .hero-banner-premium-img { height: 300px; }
  .hero-banner-premium-content { top: 9%; left: 6%; width: 88%; }
  .related-toolkits-grid, .about-grid, .info-modern__card-grid { grid-template-columns: 1fr; }
  .about-card.full { grid-column: auto; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-modern .grid-col-3 { width: 100%; }
  .footer-modern .grid-col + .grid-col { margin-bottom: 22px; }
  .footer-bar-inner { display: block; text-align: center; }
  .footer-bar-right { margin-top: 10px; }
  #top-link.top-link { right: 10px; }
  .alignleft, .alignright { float: none; display: block; margin: 10px auto; }
  .toolkit-paypal-btn { width: min(100%,224px); }
  .widget-comments .owl-carousel li { grid-template-columns: 44px 1fr; }
}

@media (max-width: 480px) {
  .widget-title, .section-title { font-size: 15px; }
  .download-title { font-size: 28px; }
  .download-table-outer { padding: 6px; }
  .about-wrap { padding-inline: 0; }
  .info-modern__hero, .about-card, [class*="-policy-modern"] [class$="-hero"], .payment-guide-modern .pg-hero, .all-toolkits-modern .atm-hero { padding: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Print */
@media print {
  .main-nav, .mobile-main-nav, .page-footer, .ex-wrap1, #top-link, .it-carousel-controls { display: none !important; }
  body { color: #000; background: #fff; }
  .grid-row, .it-container, .site-container { width: 100%; }
  a { color: #000; text-decoration: underline; }
}
.it-banner-full {
    width: 1600px;
    max-width: calc(100% - 30px);
    height: auto;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    border: 3px solid #000;
    background: #000;
}

.it-banner-full-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
}

/* Home hero — 1920x600 source (3.2:1).
   Keep one fixed desktop CSS width instead of zoom-specific breakpoints.
   Browser zoom therefore scales the hero continuously:
   zoom out = visually smaller, zoom in = visually larger.
   max-width keeps the same side frame when the viewport becomes narrower. */
@media (min-width: 992px) {
    .home-page .it-banner-full {
        width: 1600px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 991px) {
    .it-banner-full {
        width: calc(100% - 20px);
        max-width: none;
        border-width: 2px;
    }
}

/* Remove the accumulated whitespace below the home hero:
   hero margin + page-content top padding + home section top padding. */
.home-page .page-content {
    padding-top: 0;
}

.home-page .home-categories-modern {
    padding-top: 0;
}
.home-categories-modern {
    width: 100%;
    padding: 22px 0 36px 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.home-categories-modern .category-wrap {
    width: 1170px;
    margin: 0 auto;
}

.home-categories-modern .category-section {
    --section-accent: #0f89c8;
    --section-accent-2: #4db1e2;
    --section-bg: #f5f9fc;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    padding-top: 42px;
    padding-bottom: 44px;
    padding-left: max(24px, calc((100vw - 1170px) / 2));
    padding-right: max(24px, calc((100vw - 1170px) / 2));
    box-sizing: border-box;
    background: var(--section-bg);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.home-categories-modern .category-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(10,63,85,.12) 20%, rgba(10,63,85,.12) 80%, transparent 100%);
}

.home-categories-modern .category-section--iso {
    --section-accent: #0f89c8;
    --section-accent-2: #58b9e5;
    --section-bg: #f4f9fc;
}

.home-categories-modern .category-section--admin {
    --section-accent: #087c89;
    --section-accent-2: #45aeba;
    --section-bg: #f1f8f7;
}

.home-categories-modern .category-section--manager {
    --section-accent: #0a6f83;
    --section-accent-2: #48a5b2;
    --section-bg: #f7f6f2;
}

.home-categories-modern .category-section--cio {
    --section-accent: #0a5875;
    --section-accent-2: #3d8fb0;
    --section-bg: #f2f6fa;
}

.home-categories-modern .category-section--itil {
    --section-accent: #116f9e;
    --section-accent-2: #52add4;
    --section-bg: #eef7fb;
}

.home-categories-modern .category-section + .category-section {
    margin-top: 0;
}

.home-categories-modern .category-section-heading {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    margin: 0 auto 30px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-categories-modern .category-section-heading::after {
    content: "";
    width: 76px;
    height: 2px;
    margin-top: 15px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--section-accent), transparent);
}

.home-categories-modern .category-section-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 11px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--it-primary) 0%, var(--section-accent) 100%);
    color: #fff;
    box-shadow: 0 7px 18px rgba(10,63,85,.16);
}

.home-categories-modern .category-section-icon .fa {
    font-size: 19px;
    line-height: 1;
}

.home-categories-modern .category-title {
    margin: 0 0 22px 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #116a9d;
    letter-spacing: -0.2px;
}

.home-categories-modern .category-section-heading .category-title {
    margin: 0;
    color: var(--it-primary);
    font-size: 27px;
    line-height: 1.18;
    letter-spacing: -.3px;
}

.home-categories-modern .category-section-subtitle {
    max-width: 800px;
    margin: 9px auto 0;
    color: #5a6d79;
    font-size: 14px;
    line-height: 1.68;
    text-align: center;
}

.home-categories-modern .category-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10,63,85,.10);
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(10,63,85,.065);
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.home-categories-modern :before.category-card {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 40%;
    height: 4px;
    background: linear-gradient(to right, rgba(11,134,197,0), #0b86c5, #45b7f0, rgba(69,183,240,0));
    z-index: 3;
    transition: left 0.45s ease;
}

.home-categories-modern :hover:before.category-card {
    left: 100%;
}

.home-categories-modern :after.category-card {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.00) 0%,
        rgba(255,255,255,0.05) 35%,
        rgba(255,255,255,0.10) 50%,
        rgba(255,255,255,0.00) 70%
    );
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.30s ease;
    z-index: 1;
}

.home-categories-modern :hover.category-card {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(16, 73, 114, 0.16);
    border-color: #c7dbea;
    background: linear-gradient(to bottom, #ffffff 0%, #fbfdff 100%);
}

.home-categories-modern :hover:after.category-card {
    opacity: 1;
}

.home-categories-modern .category-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 245px;
    background: linear-gradient(to bottom, #ffffff 0%, #f6fbff 100%);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #edf4f9;
    z-index: 2;
}

.home-categories-modern :after.category-thumb {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 12px;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.03) 55%, rgba(0,0,0,0) 75%);
    pointer-events: none;
}

.home-categories-modern .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    padding: 10px 10px 6px 10px;
    box-sizing: border-box;
    background: transparent;
    transition: transform 0.32s ease;
    position: relative;
    z-index: 1;
}

.home-categories-modern :hover.category-card .category-thumb img {
    transform: scale(1.03);
}

.home-categories-modern .category-overlay {
    display: none;
}

.home-categories-modern .category-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 15px 15px 16px;
    position: relative;
    z-index: 2;
}

.home-categories-modern .category-body h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    text-align: center;
    line-height: 1.25;
    font-weight: 700;
    color: #12395b;
    min-height: 46px;
    letter-spacing: -0.1px;
}

.home-categories-modern .category-body p {
    margin: 0 0 14px 0;
    font-size: 14px;
    line-height: 1.65;
    color: #5b6d7f;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 92px;
}

.home-categories-modern .category-btn-wrap {
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.home-categories-modern .category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 11px 18px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--it-primary) 0%, var(--section-accent) 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1px;
    box-shadow: 0 8px 18px rgba(10,63,85,.16);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    white-space: nowrap;
    align-self: center;
}

.home-categories-modern :hover.category-btn {
    transform: translateY(-1px);
    background: linear-gradient(to right, #0a76af, #158bc3);
    box-shadow: 0 12px 22px rgba(11, 134, 197, 0.28);
}

.home-categories-modern .anchor-title {
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}

/* ===== <=1190px ===== */
@media screen and (max-width: 1190px) {
    .home-categories-modern .category-wrap {
        width: 940px;
    }

    .home-categories-modern .category-grid {
        margin-left: -10px;
        margin-right: -10px;
    }

    .home-categories-modern .category-col {
        padding: 10px;
    }

    .home-categories-modern .category-thumb {
        height: 210px;
    }

    .home-categories-modern .category-body h3 {
        font-size: 17px;
        min-height: 44px;
    }

    .home-categories-modern .category-body p {
        font-size: 13px;
        min-height: 84px;
    }
}

/* ===== <=980px ===== */
@media screen and (max-width: 980px) {
    .home-categories-modern .category-wrap {
        width: 738px;
    }

    .home-categories-modern .category-col {
        width: 50%;
        padding: 9px;
    }

    .home-categories-modern .category-thumb {
        height: 220px;
    }

    .home-categories-modern .category-body {
        padding: 12px 12px 14px 12px;
    }

    .home-categories-modern .category-body h3 {
        font-size: 17px;
        min-height: 42px;
    }

    .home-categories-modern .category-body p {
        font-size: 13px;
        line-height: 1.6;
        min-height: 80px;
    }
}

/* ===== <=767px ===== */
@media screen and (max-width: 767px) {
    .home-categories-modern {
        padding: 16px 0 28px 0;
    }

    .home-categories-modern .category-section {
        margin-bottom: 24px;
        padding: 24px 12px 22px;
        border-radius: 18px;
    }

    .home-categories-modern .category-section:first-child {
        padding-top: 24px;
    }

    .home-categories-modern .category-section + .category-section {
        margin-top: 0;
        padding-top: 24px;
    }

    .home-categories-modern .category-section-heading {
        width: 100%;
        margin-bottom: 20px;
        padding: 0 6px;
    }

    .home-categories-modern .category-section-heading::after {
        width: 70px;
        margin-top: 12px;
    }

    .home-categories-modern .category-section-icon {
        flex-basis: auto;
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
    }

    .home-categories-modern .category-section-icon .fa {
        font-size: 17px;
    }

    .home-categories-modern .category-section-heading .category-title {
        font-size: 21px;
        line-height: 1.22;
    }

    .home-categories-modern .category-section-subtitle {
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.55;
    }

    .home-categories-modern .category-wrap {
        width: auto;
        margin: 0 8px;
    }

    .home-categories-modern .category-grid {
        margin-left: 0;
        margin-right: 0;
    }

    .home-categories-modern .category-col {
        width: 100%;
        padding: 0 0 12px 0;
    }

    .home-categories-modern .category-card {
        border-radius: 16px;
    }

    .home-categories-modern .category-thumb {
        height: 200px;
    }

    .home-categories-modern .category-thumb img {
        padding: 8px 8px 4px 8px;
    }

    .home-categories-modern .category-body {
        padding: 12px 12px 14px 12px;
    }

    .home-categories-modern .category-body h3 {
        min-height: auto;
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .home-categories-modern .category-body p {
        display: block;              /* b&#7887; line-clamp &#7903; mobile */
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
        overflow: visible;
        min-height: auto;
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .home-categories-modern .category-btn {
        min-width: 130px;
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* ===== <=480px ===== */
@media screen and (max-width: 480px) {
    .home-categories-modern .category-thumb {
        height: 180px;
    }

    .home-categories-modern .category-body h3 {
        font-size: 17px;
    }

    .home-categories-modern .category-body p {
        font-size: 12px;
        line-height: 1.5;
    }

    .home-categories-modern .category-btn {
        min-width: 120px;
        font-size: 11px;
        padding: 9px 14px;
    }
}
.cta-hero {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: url('../pic/CTA.webp') center center / cover no-repeat;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.cta-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(8, 35, 60, 0.95),
        rgba(8, 45, 75, 0.85),
        rgba(8, 55, 90, 0.75)
    );
}


.cta-hero .cta-wrap {
    position: relative;
    width: 1170px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
    padding: 0 15px;
}

.cta-hero h2 {
    margin: 0 0 16px 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.cta-hero h2 span {
    color: #38bdf8;
}

.cta-hero p {
    max-width: 780px;
    margin: 0 auto 24px auto;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
}

.cta-hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-hero .btn-primary,
.cta-hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.2;
    box-sizing: border-box;
    white-space: nowrap;
}

.cta-hero .btn-primary {
    background: linear-gradient(to right, #0b86c5, #1aa1df);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(11,134,197,0.4);
    transition: all 0.25s ease;
}

.cta-hero :hover.btn-primary {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11,134,197,0.55);
}

.cta-hero .btn-secondary {
    border: 2px solid rgba(255,255,255,0.75);
    color: #fff;
    font-weight: 600;
    transition: all 0.25s ease;
    background: #ff6600;
}

.cta-hero :hover.btn-secondary {
    background: #fff;
}

.cta-hero .cta-note {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.cta-hero .cta-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, #ef4444, #f97316);
    border-radius: 30px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* ===== <= 1190px ===== */
@media screen and (max-width: 1190px) {
    .cta-hero .cta-wrap {
        width: 940px;
    }

    .cta-hero h2 {
        font-size: 34px;
    }

    .cta-hero p {
        font-size: 15px;
        max-width: 720px;
    }
}

/* ===== <= 980px ===== */
@media screen and (max-width: 980px) {
    .cta-hero {
        padding: 48px 0;
    }

    .cta-hero .cta-wrap {
        width: 738px;
    }

    .cta-hero h2 {
        font-size: 28px;
    }

    .cta-hero p {
        font-size: 14px;
        line-height: 1.65;
        max-width: 620px;
    }

    .cta-hero .btn-primary,
    .cta-hero .btn-secondary {
        min-width: 190px;
        font-size: 14px;
        padding: 13px 20px;
    }

    .cta-hero .cta-note {
        font-size: 12px;
    }
}

/* ===== <= 767px ===== */
@media screen and (max-width: 767px) {
    .cta-hero {
        padding: 36px 0;
        background-position: center center;
    }

    .cta-hero .cta-wrap {
        width: auto;
        margin: 0 12px;
        padding: 0;
    }

    .cta-hero .cta-badge {
        margin-bottom: 12px;
        padding: 5px 12px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .cta-hero h2 {
        font-size: 22px;
        line-height: 1.22;
        margin-bottom: 12px;
    }

    .cta-hero p {
        max-width: 100%;
        margin: 0 auto 18px auto;
        font-size: 13px;
        line-height: 1.55;
    }

    .cta-hero .cta-buttons {
        gap: 10px;
    }

    .cta-hero .btn-primary,
    .cta-hero .btn-secondary {
        min-width: 0;
        width: 100%;
        font-size: 13px;
        padding: 12px 16px;
        white-space: normal;
    }

    .cta-hero .cta-note {
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.5;
    }
}

/* ===== <= 480px ===== */
@media screen and (max-width: 480px) {
    .cta-hero {
        padding: 30px 0;
    }

    .cta-hero .cta-wrap {
        margin: 0 10px;
    }

    .cta-hero h2 {
        font-size: 19px;
        line-height: 1.2;
    }

    .cta-hero p {
        font-size: 12px;
        line-height: 1.5;
    }

    .cta-hero .btn-primary,
    .cta-hero .btn-secondary {
        font-size: 12px;
        padding: 11px 14px;
        border-radius: 10px;
    }

    .cta-hero .cta-note {
        font-size: 10px;
    }
}
.about-wrap{
    width: 100%;
    max-width: 985px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    color: #1f2937;
    line-height: 1.75;
    padding: 25px 20px 40px;
    box-sizing: border-box;
    background: #ffffff;
}

.about-hero{
    display: flex;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 30px;
    padding: 0 0 24px;
    border-bottom: 1px solid #e5e7eb;
}

.about-hero-image{
    flex: 0 0 48%;
}

.about-hero-image img{
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.about-hero-text{
    flex: 1;
}

.about-label{
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0b74b8;
    background: #eaf5fc;
    padding: 6px 10px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.about-title{
    font-size: 32px;
    line-height: 1.25;
    color: #0a2540;
    margin: 0 0 14px;
    font-weight: 700;
}

.about-lead{
    font-size: 17px;
    color: #374151;
    margin: 0 0 14px;
}

.about-highlight{
    background: linear-gradient(135deg, #f8fbff 0%, #eef6fb 100%);
    border-left: 4px solid #0b74b8;
    padding: 14px 16px;
    border-radius: 8px;
    margin-top: 14px;
    color: #334155;
}

.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.about-card{
    background: #f8fafc;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 22px 22px 18px;
    box-shadow: 10px 10px 0px #d0d9ee;
}

.about-card.full{
    grid-column: 1 / -1;
}

.about-card h2{
    font-size: 22px;
    color: #0a2540;
    margin: 0 0 12px;
    line-height: 1.35;
}

.about-card p{
    margin: 0 0 12px;
    color: #374151;
}

.about-list{
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.about-list li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #374151;
}

.about-list li:before{
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0;
    color: #0b74b8;
    font-weight: bold
}

.about-example{
    margin-top: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
}

.about-example strong{
    color: #0a2540;
}

.about-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.about-stat{
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
}

.about-stat-number{
    font-size: 28px;
    font-weight: 700;
    color: #0b74b8;
    line-height: 1.2;
    margin-bottom: 6px;
}

.about-stat-text{
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

.about-cta{
    margin-top: 30px;
    background: linear-gradient(135deg, #0a2540 0%, #0b3c5d 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 12px 28px rgba(10,37,64,0.18);
}

.about-cta h2{
    margin: 0 0 10px;
    font-size: 26px;
    color: #ffffff;
}

.about-cta p{
    margin: 0 0 18px;
    color: rgba(255,255,255,0.92);
}

.about-cta-btn{
    display: inline-block;
    background: #ffb703;
    color: #0a2540;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 22px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.about-cta-btn:hover{
    background: #ffd166;
}

@media (max-width: 768px){
    .about-hero{
        flex-direction: column;
    }

    .about-hero-image,
    .about-hero-text{
        flex: 1 1 100%;
    }

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

    .about-stats{
        grid-template-columns: 1fr;
    }

    .about-title{
        font-size: 28px;
    }
}
.all-toolkits-modern{
    font-family: Arial, Helvetica, sans-serif;
    color:#1f2937;
    line-height:1.7;
}

.all-toolkits-modern p{
    text-indent:0;
    margin:0 0 14px 0;
}

.all-toolkits-modern .atm-container{
    width:100%;
    max-width:1170px;
    margin:0 auto;
}

.all-toolkits-modern .atm-hero{
    margin-bottom:30px;
    padding:30px 32px;
    background:linear-gradient(135deg,#f8fbff 0%,#eef6fb 100%);
    border:1px solid #dbe7f0;
    border-radius:14px;
    box-sizing:border-box;
}

.all-toolkits-modern .atm-kicker{
    display:inline-block;
    margin-bottom:10px;
    padding:6px 12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#0b74b8;
    background:#eaf5fc;
    border-radius:20px;
}

.all-toolkits-modern .atm-title{
    margin:0 0 10px 0;
    font-size:32px;
    line-height:1.25;
    color:#0a2540;
    font-weight:700;
}

.all-toolkits-modern .atm-tagline{
    margin:0 0 12px 0;
    font-size:17px;
    color:#475569;
}

.all-toolkits-modern .atm-intro{
    max-width:860px;
    color:#374151;
}

.all-toolkits-modern .atm-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:10px;
}

.all-toolkits-modern .atm-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:12px 12px 12px;
    box-shadow:0 6px 18px rgba(15,23,42,0.05);
    box-sizing:border-box;
}

.all-toolkits-modern .atm-card-title{
    margin:0 0 6px 0;
    font-size:21px;
    line-height:1.35;
    color:#0a2540;
    font-weight:700;
}

.all-toolkits-modern .atm-card-subtitle{
    margin:0 0 16px 0;
    font-size:13px;
    color:#64748b;
}

.all-toolkits-modern .atm-links{
    list-style:none;
    margin:0;
    padding:0;
}

.all-toolkits-modern .atm-links li{
    position:relative;
    margin-bottom:10px;
    padding-left:18px;
    text-indent:0;
}

.all-toolkits-modern .atm-links li:last-child{
    margin-bottom:0;
}

.all-toolkits-modern .atm-links li:before{
    content:"\203A";
    position:absolute;
    left:0;
    top:0;
    color:#0b74b8;
    font-weight:700;
}

.all-toolkits-modern .atm-links a{
    color:#334155;
    text-decoration:none;
    transition:all 0.2s ease;
}

.all-toolkits-modern .atm-links a:hover{
    color:#0b74b8;
    text-decoration:underline;
}

.all-toolkits-modern .atm-note{
    margin-top:28px;
    padding:18px 20px;
    background:#fff8e8;
    border-left:4px solid #f0b429;
    border-radius:10px;
    color:#5b4b1f;
}

.all-toolkits-modern .atm-note p{
    margin:0;
}

.all-toolkits-modern .atm-support{
    margin-top:26px;
    padding:20px 22px;
    background:linear-gradient(135deg,#0a2540 0%,#0b3c5d 100%);
    border-radius:14px;
    color:#ffffff;
}

.all-toolkits-modern .atm-support h3{
    margin:0 0 8px 0;
    font-size:22px;
    color:#ffffff;
}

.all-toolkits-modern .atm-support p{
    margin:0;
    color:rgba(255,255,255,0.92);
    text-indent:0;
}

.all-toolkits-modern .atm-support a{
    color:#9ddfff;
    font-weight:700;
    text-decoration:underline;
}

@media (max-width:1190px){
    .all-toolkits-modern .atm-grid{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width:980px){
    .all-toolkits-modern .atm-title{
        font-size:28px;
    }

    .all-toolkits-modern .atm-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width:767px){
    .all-toolkits-modern .atm-hero{
        padding:22px 20px;
    }

    .all-toolkits-modern .atm-title{
        font-size:25px;
    }

    .all-toolkits-modern .atm-tagline{
        font-size:16px;
    }

    .all-toolkits-modern .atm-grid{
        grid-template-columns:1fr;
    }
}


/* =========================
   Information policy/payment family — consolidated
   One shared source of truth for Payment, Refund, Copyright,
   Privacy and Terms pages. Visual values match the approved baseline.
   ========================= */


.payment-guide-modern,
.refund-policy-modern,
.terms-policy-modern,
.privacy-policy-modern,
.copyright-policy-modern {
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  line-height: 1.7;
}


.payment-guide-modern p,
.refund-policy-modern p,
.terms-policy-modern p,
.privacy-policy-modern p,
.copyright-policy-modern p {
  text-indent: 0;
  margin: 0 0 14px;
}


.payment-guide-modern .pg-container,
.refund-policy-modern .rp-container,
.terms-policy-modern .tp-container,
.privacy-policy-modern .pp-container,
.copyright-policy-modern .cp-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}


.payment-guide-modern .pg-hero,
.refund-policy-modern .rp-hero,
.terms-policy-modern .tp-hero,
.privacy-policy-modern .pp-hero,
.copyright-policy-modern .cp-hero {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  padding: 28px;
  background: linear-gradient(135deg,#f8fbff 0%,#eef6fb 100%);
  border: 1px solid #dbe7f0;
  border-radius: 14px;
  box-sizing: border-box;
}


.payment-guide-modern .pg-hero-image,
.refund-policy-modern .rp-hero-image,
.terms-policy-modern .tp-hero-image,
.privacy-policy-modern .pp-hero-image,
.copyright-policy-modern .cp-hero-image { flex: 0 0 360px; }


.payment-guide-modern .pg-hero-image img,
.refund-policy-modern .rp-hero-image img,
.terms-policy-modern .tp-hero-image img,
.privacy-policy-modern .pp-hero-image img,
.copyright-policy-modern .cp-hero-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #d6e2ec;
  background: #fff;
}


.payment-guide-modern .pg-hero-content,
.refund-policy-modern .rp-hero-content,
.terms-policy-modern .tp-hero-content,
.privacy-policy-modern .pp-hero-content,
.copyright-policy-modern .cp-hero-content {
  flex: 1 1 auto;
  max-width: 620px;
  padding-top: 2px;
}


.payment-guide-modern .pg-kicker,
.refund-policy-modern .rp-kicker,
.terms-policy-modern .tp-kicker,
.privacy-policy-modern .pp-kicker,
.copyright-policy-modern .cp-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0b74b8;
  background: #eaf5fc;
  border-radius: 20px;
}


.payment-guide-modern .pg-title,
.refund-policy-modern .rp-title,
.terms-policy-modern .tp-title,
.privacy-policy-modern .pp-title,
.copyright-policy-modern .cp-title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.25;
  color: #0a2540;
  font-weight: 700;
}


.payment-guide-modern .pg-tagline,
.refund-policy-modern .rp-tagline,
.terms-policy-modern .tp-tagline,
.privacy-policy-modern .pp-tagline,
.copyright-policy-modern .cp-tagline {
  margin: 0 0 14px;
  font-size: 17px;
  color: #475569;
}


.payment-guide-modern .pg-intro,
.refund-policy-modern .rp-intro,
.terms-policy-modern .tp-intro,
.privacy-policy-modern .pp-intro,
.copyright-policy-modern .cp-intro { color: #374151; }


.payment-guide-modern .pg-grid,
.refund-policy-modern .rp-grid,
.terms-policy-modern .tp-grid,
.privacy-policy-modern .pp-grid,
.copyright-policy-modern .cp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}


.payment-guide-modern .pg-card,
.refund-policy-modern .rp-card,
.copyright-policy-modern .cp-card,
.terms-policy-modern .tp-card,
.privacy-policy-modern .pp-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
}


.payment-guide-modern .pg-card,
.refund-policy-modern .rp-card,
.copyright-policy-modern .cp-card {
  border: 3px solid #000;
  box-shadow: 10px 10px 0 #d0d9ee;
}


.terms-policy-modern .tp-card,
.privacy-policy-modern .pp-card {
    background: #f8fafc;
    border: 3px solid #000000;
    border-radius: 12px;
    padding: 22px 22px 18px;
    box-shadow: 10px 10px 0px #d0d9ee;
}


.payment-guide-modern .pg-card.full,
.refund-policy-modern .rp-card.full,
.terms-policy-modern .tp-card.full,
.privacy-policy-modern .pp-card.full,
.copyright-policy-modern .cp-card.full { grid-column: 1 / -1; }


.payment-guide-modern .pg-card-title,
.refund-policy-modern .rp-card-title,
.terms-policy-modern .tp-card-title,
.privacy-policy-modern .pp-card-title,
.copyright-policy-modern .cp-card-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.35;
  color: #0a2540;
  font-weight: 700;
}


.payment-guide-modern .pg-card-subtitle,
.refund-policy-modern .rp-card-subtitle,
.terms-policy-modern .tp-card-subtitle,
.privacy-policy-modern .pp-card-subtitle,
.copyright-policy-modern .cp-card-subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  color: #64748b;
}


.payment-guide-modern .pg-checklist,
.refund-policy-modern .rp-checklist,
.terms-policy-modern .tp-checklist,
.privacy-policy-modern .pp-checklist,
.copyright-policy-modern .cp-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}


.payment-guide-modern .pg-checklist li,
.refund-policy-modern .rp-checklist li,
.terms-policy-modern .tp-checklist li,
.privacy-policy-modern .pp-checklist li,
.copyright-policy-modern .cp-checklist li {
  position: relative;
  padding-left: 28px;
  color: #374151;
  text-indent: 0;
}


.payment-guide-modern .pg-checklist li { margin-bottom: 12px; }


.refund-policy-modern .rp-checklist li,
.terms-policy-modern .tp-checklist li,
.privacy-policy-modern .pp-checklist li,
.copyright-policy-modern .cp-checklist li { margin-bottom: 14px; }


.payment-guide-modern .pg-checklist li:last-child,
.refund-policy-modern .rp-checklist li:last-child,
.terms-policy-modern .tp-checklist li:last-child,
.privacy-policy-modern .pp-checklist li:last-child,
.copyright-policy-modern .cp-checklist li:last-child { margin-bottom: 0; }


.payment-guide-modern .pg-checklist li::before,
.refund-policy-modern .rp-checklist li::before,
.terms-policy-modern .tp-checklist li::before,
.privacy-policy-modern .pp-checklist li::before,
.copyright-policy-modern .cp-checklist li::before {
  content: "\\f00c";
  position: absolute;
  top: 0;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}


/* Numbered process lists used by Payment / Refund / Copyright. */


.payment-guide-modern .pg-steps,
.refund-policy-modern .rp-number-list,
.copyright-policy-modern .cp-number-list {
  list-style: none;
  margin: 0;
  padding: 0;
}


.payment-guide-modern .pg-steps li,
.refund-policy-modern .rp-number-list li,
.copyright-policy-modern .cp-number-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 16px;
  text-indent: 0;
}


.payment-guide-modern .pg-steps li:last-child,
.refund-policy-modern .rp-number-list li:last-child,
.copyright-policy-modern .cp-number-list li:last-child { margin-bottom: 0; }


.payment-guide-modern .pg-step-number,
.refund-policy-modern .rp-step-number,
.copyright-policy-modern .cp-step-number {
  position: absolute;
  top: 1px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0b74b8;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
}


.payment-guide-modern .pg-image-box { margin-top: 18px; text-align: center; }


.payment-guide-modern .pg-image-box img {
  max-width: 100%;
  height: auto;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
}


.payment-guide-modern .pg-note,
.refund-policy-modern .rp-note,
.terms-policy-modern .tp-note,
.privacy-policy-modern .pp-note,
.copyright-policy-modern .cp-note {
  margin-top: 18px;
  padding: 16px 18px;
  background: #fff8e8;
  border-left: 4px solid #f0b429;
  border-radius: 8px;
  color: #5b4b1f;
}


.payment-guide-modern .pg-note p,
.refund-policy-modern .rp-note p,
.terms-policy-modern .tp-note p,
.privacy-policy-modern .pp-note p,
.copyright-policy-modern .cp-note p { margin: 0; }


.payment-guide-modern .pg-support,
.refund-policy-modern .rp-contact-box,
.terms-policy-modern .tp-contact-box,
.privacy-policy-modern .pp-contact-box,
.copyright-policy-modern .cp-contact-box {
  margin-top: 26px;
  padding: 20px 22px;
  background: linear-gradient(135deg,#0a2540 0%,#0b3c5d 100%);
  border-radius: 14px;
  color: #fff;
}


.payment-guide-modern .pg-support h3,
.refund-policy-modern .rp-contact-box h3,
.terms-policy-modern .tp-contact-box h3,
.privacy-policy-modern .pp-contact-box h3,
.copyright-policy-modern .cp-contact-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #fff;
}


.payment-guide-modern .pg-support p,
.refund-policy-modern .rp-contact-box p,
.copyright-policy-modern .cp-contact-box p {
  margin: 0;
  color: rgba(255,255,255,.92);
  text-indent: 0;
}


.terms-policy-modern .tp-contact-box p,
.privacy-policy-modern .pp-contact-box p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.92);
  text-indent: 0;
}


.terms-policy-modern .tp-contact-box p:last-child,
.privacy-policy-modern .pp-contact-box p:last-child { margin-bottom: 0; }


.payment-guide-modern .pg-support a,
.refund-policy-modern .rp-contact-box a,
.terms-policy-modern .tp-contact-box a,
.privacy-policy-modern .pp-contact-box a,
.copyright-policy-modern .cp-contact-box a {
  color: #9ddfff;
  font-weight: 700;
  text-decoration: underline;
}


@media (max-width: 980px) {
  .payment-guide-modern .pg-hero,
  .refund-policy-modern .rp-hero,
  .terms-policy-modern .tp-hero,
  .privacy-policy-modern .pp-hero,
  .copyright-policy-modern .cp-hero { gap: 22px; }

  .payment-guide-modern .pg-hero-image,
  .refund-policy-modern .rp-hero-image,
  .terms-policy-modern .tp-hero-image,
  .privacy-policy-modern .pp-hero-image,
  .copyright-policy-modern .cp-hero-image { flex: 0 0 300px; }

  .payment-guide-modern .pg-title,
  .refund-policy-modern .rp-title,
  .terms-policy-modern .tp-title,
  .privacy-policy-modern .pp-title,
  .copyright-policy-modern .cp-title { font-size: 28px; }

  .payment-guide-modern .pg-grid,
  .refund-policy-modern .rp-grid,
  .terms-policy-modern .tp-grid,
  .privacy-policy-modern .pp-grid,
  .copyright-policy-modern .cp-grid { grid-template-columns: 1fr; }

  .payment-guide-modern .pg-card.full,
  .refund-policy-modern .rp-card.full,
  .terms-policy-modern .tp-card.full,
  .privacy-policy-modern .pp-card.full,
  .copyright-policy-modern .cp-card.full { grid-column: auto; }
}


@media (max-width: 767px) {
  .payment-guide-modern .pg-hero,
  .refund-policy-modern .rp-hero,
  .terms-policy-modern .tp-hero,
  .privacy-policy-modern .pp-hero,
  .copyright-policy-modern .cp-hero {
    display: block;
    padding: 20px;
  }
  .payment-guide-modern .pg-hero-image,
  .refund-policy-modern .rp-hero-image,
  .terms-policy-modern .tp-hero-image,
  .privacy-policy-modern .pp-hero-image,
  .copyright-policy-modern .cp-hero-image { margin-bottom: 20px; }
  .payment-guide-modern .pg-title,
  .refund-policy-modern .rp-title,
  .terms-policy-modern .tp-title,
  .privacy-policy-modern .pp-title,
  .copyright-policy-modern .cp-title { font-size: 26px; }
  .payment-guide-modern .pg-tagline,
  .refund-policy-modern .rp-tagline,
  .terms-policy-modern .tp-tagline,
  .privacy-policy-modern .pp-tagline,
  .copyright-policy-modern .cp-tagline { font-size: 16px; }
}
.main-nav .fa-home { padding: 3px; border-radius: 2px; background: var(--it-primary); color: #fff; }
.link-emphasis { color: #0b74b8 !important; text-decoration: underline; }
.text-justify { text-align: justify !important; }
.mt-18 { margin-top: 18px !important; }

/* Legacy buttons retained as shared compatibility while HTML is migrated. */
.wpb_button,
.wpb_btn-arrow-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border: 0;
  border-radius: var(--it-radius-sm);
  background: var(--it-primary-2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.wpb_button:hover, .wpb_button:focus { background: var(--it-primary); color: #fff; text-decoration: none; }

/* Contact information page. */
.feedback .widget-title { margin-bottom: 14px; }
.feedback iframe { display: block; width: 100%; max-width: 100%; min-height: 599px; background: #fff; }
.widget-contacts dl, .widget-contacts dd { margin: 0; }
.widget-contacts ul { margin: 0; padding: 0; list-style: none; }
.widget-contacts li { display: flex; gap: 8px; margin: 0 0 10px; color: var(--it-primary-2); }
.widget-contacts dt { margin-bottom: 12px; color: var(--it-primary-2); font-weight: 700; }

/* Free template gallery: replaces Isotope/Fancybox CSS/JS for this page. */
.photo-tour .grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.photo-tour .item { min-width: 0; margin: 0; }
.photo-tour .pic { position: relative; overflow: hidden; border: 1px solid var(--it-border); border-radius: var(--it-radius); background: var(--it-bg-soft); box-shadow: var(--it-shadow-sm); }
.photo-tour .pic > img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.photo-tour .links { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(10,63,85,.12); opacity: 0; transition: opacity var(--it-transition); }
.photo-tour .pic:hover .links, .photo-tour .pic:focus-within .links { opacity: 1; }
.photo-tour .links ul { margin: 0; padding: 0; list-style: none; }
.photo-tour .links a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--it-primary); color: #fff; font-size: 20px; text-decoration: none; }
.photo-tour .item h3 { margin: 10px 0 0; font-size: 14px; line-height: 1.4; }

/* Payment/subscription status pages. */
#header-404 { width: min(760px,100%); margin: 10px auto; padding: 28px; border: 1px solid var(--it-border); border-radius: var(--it-radius-lg); background: var(--it-bg-soft); box-shadow: var(--it-shadow-sm); }
#block-404 { float: left; width: 160px; margin: 0 24px 14px 0; text-align: center; }
#block-404 img { width: auto; max-width: 140px; }
#button-404 { width: 100%; margin-top: 18px; text-align: center; }

@media (max-width: 991px) {
  .photo-tour .grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 767px) {
  .feedback iframe { min-height: 720px; }
  #block-404 { float: none; width: 100%; margin: 0 0 18px; }
}
@media (max-width: 520px) {
  .photo-tour .grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   A. Restore the real legacy desktop grid geometry.
   IMPORTANT: historical class names are not Bootstrap-style
   fractions. Example: grid-col-5 = 770px in a 1170px row.
   --------------------------------------------------------- */
@media (min-width: 1200px) {
  .grid-row {
    width: 1170px;
    max-width: 1170px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto 30px;
  }
  .grid-row > .grid-col {
    flex: 0 0 auto;
    min-width: 0;
    padding-inline: 0;
    margin-left: 30px;
  }
  .grid-row > .grid-col:first-child { margin-left: 0; }
  .grid-row > .grid-col-3 { width: 270px; }
  .grid-row > .grid-col-4 { width: 370px; }
  .grid-row > .grid-col-5 { width: 770px; }
  .grid-row > .grid-col-6 { width: 570px; }
  .grid-row > .grid-col-9 { width: 870px; }
  .grid-row > .grid-col-12 { width: 1170px; }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .grid-row {
    width: 940px;
    max-width: 940px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto 30px;
  }
  .grid-row > .grid-col {
    flex: 0 0 auto;
    min-width: 0;
    padding-inline: 0;
    margin-left: 20px;
  }
  .grid-row > .grid-col:first-child { margin-left: 0; }
  .grid-row > .grid-col-3 { width: 220px; }
  .grid-row > .grid-col-4 { width: 300px; }
  .grid-row > .grid-col-5 { width: 600px; }
  .grid-row > .grid-col-6 { width: 460px; }
  .grid-row > .grid-col-9 { width: 700px; }
  .grid-row > .grid-col-12 { width: 940px; }
}

/* Do not add modern container padding inside the old information grid. */
@media (min-width: 992px) {
  main.page-content > .grid-row > .grid-col > .widget { width: 100%; }
  main.page-content > .grid-row > .grid-col:first-child .about-wrap,
  main.page-content > .grid-row > .grid-col:first-child .payment-guide-modern,
  main.page-content > .grid-row > .grid-col:first-child .refund-policy-modern,
  main.page-content > .grid-row > .grid-col:first-child .privacy-policy-modern,
  main.page-content > .grid-row > .grid-col:first-child .copyright-policy-modern,
  main.page-content > .grid-row > .grid-col:first-child .terms-policy-modern {
    max-width: 100%;
  }
}

/* ---------------------------------------------------------
   C. Home page product cards — hard guarantee 4/2/1 columns.
   Removes the flex-gap collision that forced only 3 cards.
   --------------------------------------------------------- */
.home-categories-modern .category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-left: 0;
  margin-right: 0;
}
.home-categories-modern .category-col {
  width: auto;
  min-width: 0;
  padding: 0;
}
.home-categories-modern .category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--section-accent), var(--section-accent-2));
  z-index: 3;
  opacity: .88;
  transition: opacity .22s ease;
}
.home-categories-modern .category-card:hover::before { opacity: 1; }
.home-categories-modern .category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 46%, rgba(255,255,255,0) 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 1;
}
.home-categories-modern .category-card:hover::after { opacity: 1; }
.home-categories-modern .category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(10,63,85,.12);
  border-color: rgba(10,63,85,.20);
  background: #fff;
}
.home-categories-modern .category-card:hover .category-thumb img { transform: scale(1.025); }
.home-categories-modern .category-btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--section-accent), var(--it-primary-2));
  box-shadow: 0 12px 24px rgba(10,63,85,.22);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .home-categories-modern .category-grid { gap: 18px; }
}
@media (max-width: 991px) {
  .home-categories-modern .category-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
  .home-categories-modern .category-col { width: auto; padding: 0; }
}
@media (max-width: 767px) {
  .home-categories-modern .category-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------------------------------------------------------
   D. Information-page visual recovery.
   --------------------------------------------------------- */
.about-list li::before { content: "✓"; }

/* Preserve original sidebar proportion and prevent accidental overflow. */
@media (min-width: 992px) {
  main.page-content .grid-col-4 .widget { max-width: 100%; }
  main.page-content .grid-col-4 img { max-width: 100%; height: auto; }
}
.page > .ex-wrap1 { margin: 0; }

/* Make footer grid obey historical 4-column geometry on desktop. */
@media (min-width: 1200px) {
  .footer-modern .footer-main > .grid-row > .grid-col-3 { width: 270px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-modern .footer-main > .grid-row > .grid-col-3 { width: 220px; }
}

/* A. True Font Awesome bullets/icons, with browser bullets fully disabled. */
.widget-sevices ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-sevices li {
  position: relative;
  list-style: none;
  min-height: 48px;
  margin: 0;
  border-bottom: 1px solid #e3e3e3;
  font-size: 16px;
  line-height: 24px;
}
.widget-sevices li:first-child { border-top: 1px solid #e3e3e3; }
.widget-sevices li > .fa-bookmark {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 20px;
  color: var(--it-primary);
  font-size: 18px;
  line-height: 49px;
}
.widget-sevices li > a {
  position: relative;
  display: block;
  padding: 12px 8px 12px 28px;
  color: #111827;
  text-decoration: none;
}
.widget-sevices li > a:hover,
.widget-sevices li > a:focus { color: var(--it-primary-2); text-decoration: none; }
.widget-sevices li > a > .fa-angle-right {
  display: inline-block;
  margin: 0 7px 0 1px;
  color: var(--it-primary-2);
  font-size: 14px;
}

/* Migrated semantic lists: use the same icon font instead of text glyphs. */
.hero-benefit::before,
.about-list li::before,
.payment-guide-modern .pg-checklist li::before,
.refund-policy-modern .rp-checklist li::before,
.terms-policy-modern .tp-checklist li::before,
.privacy-policy-modern .pp-checklist li::before,
.copyright-policy-modern .cp-checklist li::before {
  font-family: 'FontAwesome';
  content: "\f00c";
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.ul2 > li::before,
.toolkit-list > li::before,
.related-list > li::before,
.all-toolkits-modern .atm-links li::before {
  font-family: 'FontAwesome';
  content: "\f105";
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

/* B. Home: exactly three columns in the Why Choose / Reviews / Testimonials row. */
@media (min-width: 1200px) {
  .home-trust-row,
  .home-articles-row { align-items: flex-start; }
  .home-trust-row > .grid-col,
  .home-articles-row > .grid-col { width: 370px; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home-trust-row > .grid-col,
  .home-articles-row > .grid-col { width: 300px; }
}

/* Old-home section heading visual: clean white background + blue left rule. */
.home-trust-row .widget-title,
.home-articles-row .widget-title {
  margin: 0 0 20px;
  padding: 0 0 0 10px;
  min-height: 31px;
  background: transparent;
  border-left: 3px solid var(--it-primary);
  color: #111;
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
}
.home-articles-row .widget-title p { color: #111; }

/* Why Choose / Article list typography. */
.home-trust-row .widget-sevices,
.home-articles-row .widget-sevices { margin-bottom: 0; }
.home-trust-row .widget-sevices li,
.home-articles-row .widget-sevices li { font-size: 16px; line-height: 24px; }
.home-trust-row .widget-sevices li > a,
.home-articles-row .widget-sevices li > a { padding-top: 12px; padding-bottom: 12px; }

/* Customer reviews: restore square photos and old top-right controls. */
.home-trust-row .widget-comments { position: relative; margin-bottom: 0; }
.home-trust-row .widget-comments .widget-title { padding-right: 92px; }
.home-trust-row .widget-comments .owl-carousel { overflow: visible; }
.home-trust-row .widget-comments .owl-carousel ul { list-style: none; margin: 0; padding: 0; }
.home-trust-row .widget-comments .owl-carousel li {
  display: block;
  min-height: 80px;
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.55;
}
.home-trust-row .widget-comments .owl-carousel li:last-child { margin-bottom: 0; }
.home-trust-row .widget-comments .owl-carousel li::after { content: ""; display: table; clear: both; }
.home-trust-row .widget-comments .owl-carousel li img {
  display: block;
  float: left;
  width: 76px;
  height: 76px;
  margin: 0 15px 4px 0;
  padding: 1px;
  object-fit: cover;
  border: 1px solid #e4e4e4;
  border-radius: 0;
}
.home-trust-row .widget-comments .owl-carousel p { margin: 0; overflow: hidden; }
.home-trust-row .widget-comments .date { color: #111; font-weight: 700; }
.home-trust-row .widget-comments .it-carousel-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 1px;
  margin: 0;
}
.home-trust-row .widget-comments .it-carousel-button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0;
  background: var(--it-primary);
  color: #fff;
  font-size: 22px;
}
.home-trust-row .widget-comments .it-carousel-button:hover,
.home-trust-row .widget-comments .it-carousel-button:focus { background: var(--it-accent); }

/* Right column: two testimonials stacked, with Font Awesome quotation marks. */
.home-testimonials-stack { display: flex; flex-direction: column; gap: 18px; }
.home-testimonials-stack .testimonial {
  position: relative;
  margin: 0;
  padding: 16px 35px 0;
  overflow: visible;
  border: 1px solid var(--it-primary);
  border-bottom: 0;
  background: #fff;
}
.home-testimonials-stack .testimonial::before,
.home-testimonials-stack .testimonial::after {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--it-accent);
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 24px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.home-testimonials-stack .testimonial::before { content: "\f10d"; top: -1px; left: -1px; }
.home-testimonials-stack .testimonial::after { content: "\f10e"; right: -1px; bottom: 0; }
.home-testimonials-stack .testimonial .clearfix { min-height: 188px; }
.home-testimonials-stack .testimonial img {
  display: block;
  float: left;
  width: 96px;
  height: 96px;
  margin: 0 20px 8px 0;
  padding: 1px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
}
.home-testimonials-stack .testimonial p { margin: 0; font-size: 14px; line-height: 1.6; color: #111; }
.home-testimonials-stack .testimonial .author {
  position: relative;
  margin: 20px -35px 0;
  padding: 11px 52px 11px 20px;
  background: var(--it-primary);
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
}
.home-testimonials-stack .testimonial .author::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-top: 10px solid var(--it-primary);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

/* C. Home articles row: equal columns, matching heading/list sizes. */
.home-articles-row .widget { width: 100%; }
.home-articles-row .widget-appointment { font-size: 14px; line-height: 1.6; }
.home-articles-row .widget-appointment .widget-title { text-align: left; }
.home-articles-row .widget-appointment .widget-title p { text-align: left !important; }

/* D. Responsive recovery for the two home three-column blocks. */
@media (max-width: 991px) {
  .home-trust-row,
  .home-articles-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 20px; }
  .home-trust-row > .grid-col,
  .home-articles-row > .grid-col { width: auto; margin: 0; }
  .home-testimonials-stack { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
}
@media (max-width: 640px) {
  .home-trust-row,
  .home-articles-row { grid-template-columns: 1fr; gap: 24px; }
  .home-testimonials-stack { grid-column: auto; grid-template-columns: 1fr; }
  .home-trust-row .widget-title,
  .home-articles-row .widget-title { font-size: 22px; line-height: 28px; }
  .home-testimonials-stack .testimonial .clearfix { min-height: 0; }
}
.main-nav a.active, .mobile-main-nav a.active { color: #fff; }
.it-page-banner h2.it-page-banner-title { color: #fff; }

/* E. FAQ/legacy text-column content lists: Font Awesome check icon instead of browser bullets. */
main.page-content .wpb_text_column > ul,
main.page-content .wpb_text_column > div > ul {
  list-style: none;
  margin: 10px 0 16px;
  padding-left: 0;
}
main.page-content .wpb_text_column > ul > li,
main.page-content .wpb_text_column > div > ul > li {
  position: relative;
  list-style: none;
  margin: 7px 0;
  padding-left: 24px;
}
main.page-content .wpb_text_column > ul > li::before,
main.page-content .wpb_text_column > div > ul > li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: .15em;
  color: var(--it-primary-2);
  font-family: 'FontAwesome';
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
/* Restores the original Popular IT Toolkits Templates component without jQuery UI. */
.widget-departments > .widget-title {
  margin: 0 0 20px;
  padding: 0 0 0 10px;
  min-height: 31px;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--it-primary);
  color: #111;
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  text-align: left;
  text-transform: none;
}
.widget-departments dl {
  margin: 0;
  padding: 0;
  border: 1px solid #e3e3e3;
  border-top: 0;
  background: #fff;
}
.widget-departments dt {
  position: relative;
  margin: 0;
  padding: 9px 38px 9px 56px;
  min-height: 43px;
  border-top: 1px solid #e3e3e3;
  background: #fff;
  color: #111;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  word-break: normal;
  overflow-wrap: anywhere;
  transition: color .18s ease, background-color .18s ease;
}
.widget-departments dt:hover,
.widget-departments dt:focus { color: var(--it-primary); background: #fbfdff; outline: none; }
.widget-departments dt:focus-visible { box-shadow: inset 0 0 0 2px rgba(77,177,226,.45); }
.widget-departments dt::after,
.widget-departments dt::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 13px;
  width: 12px;
  height: 4px;
  margin-top: -2px;
  background: #cbcbcb;
}
.widget-departments dt::before {
  right: 17px;
  width: 4px;
  height: 12px;
  margin-top: -6px;
}
.widget-departments dt.opened::before { display: none; }
.widget-departments dt > i.fa {
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  width: 42px;
  height: 43px;
  background: var(--it-accent);
  color: #fff;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
}
.widget-departments dt:nth-of-type(odd) > i.fa { background: var(--it-primary); }
.widget-departments dt > i.fa::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -4px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid var(--it-accent);
}
.widget-departments dt:nth-of-type(odd) > i.fa::after { border-left-color: var(--it-primary); }
.widget-departments dd {
  margin: 0;
  padding: 2px 38px 10px 56px;
  color: #222;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}
/* With JS, descriptions collapse and expand like the legacy slideToggle behavior. */
.js-enabled .widget-departments dd {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .22s ease, opacity .18s ease, padding .22s ease;
}
.js-enabled .widget-departments dt.opened + dd {
  max-height: 220px;
  padding-top: 2px;
  padding-bottom: 10px;
  opacity: 1;
}
@media (max-width: 640px) {
  .widget-departments > .widget-title { font-size: 22px; line-height: 28px; }
  .widget-departments dt { padding-right: 32px; padding-left: 52px; font-size: 15px; }
  .widget-departments dd { padding-left: 52px; padding-right: 24px; }
}
.toolkit-cta {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid #d7e4ec;
  border-left: 5px solid var(--it-primary-2);
  border-radius: 8px;
  background: linear-gradient(105deg, #f7fbfd 0%, #eef7fb 62%, #e7f4fa 100%);
  box-shadow: 0 8px 22px rgba(10, 63, 85, .08);
}
.toolkit-cta::after {
  content: "";
  position: absolute;
  right: -75px;
  top: -95px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(74, 180, 224, .08);
  pointer-events: none;
}
.toolkit-cta__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--it-primary);
  color: #fff;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.10);
}
.toolkit-cta__icon .fa {
  font-size: 31px;
  line-height: 1;
}
.toolkit-cta__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.toolkit-cta__eyebrow {
  margin: 0 0 4px;
  color: var(--it-primary-2);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.toolkit-cta__title {
  margin: 0 0 5px;
  color: var(--it-heading);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}
.toolkit-cta__text {
  max-width: 710px;
  margin: 0;
  color: var(--it-text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.toolkit-cta__action {
  position: relative;
  z-index: 1;
  justify-self: end;
}
.toolkit-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border: 2px solid var(--it-primary);
  border-radius: 5px;
  background: var(--it-primary);
  color: #fff !important;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background var(--it-transition), color var(--it-transition), border-color var(--it-transition), transform var(--it-transition);
}
.toolkit-cta__button .fa { font-size: 17px; }
.toolkit-cta__button:hover,
.toolkit-cta__button:focus-visible {
  border-color: var(--it-primary-2);
  background: var(--it-primary-2);
  color: #fff !important;
  transform: translateY(-1px);
}

/* The CTA is a direct child of .grid-row. Force it to occupy the entire
   historical 1170/940px row instead of shrink-wrapping like the old callout. */
.grid-row > .toolkit-cta {
  flex: 1 1 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .toolkit-cta {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
    padding: 21px;
  }
  .toolkit-cta__icon { width: 60px; height: 60px; }
  .toolkit-cta__icon .fa { font-size: 27px; }
  .toolkit-cta__action {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .toolkit-cta {
    display: block;
    padding: 20px;
    text-align: center;
  }
  .toolkit-cta__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
  }
  .toolkit-cta__title { font-size: 21px; }
  .toolkit-cta__text { font-size: 14px; }
  .toolkit-cta__action { margin-top: 16px; }
  .toolkit-cta__button {
    width: 100%;
    white-space: normal;
  }
}
.testimonial {
  position: relative;
  box-sizing: border-box;
  margin: 0 0 32px;
  padding: 15px 35px 0;
  overflow: visible;
  border: 1px solid var(--it-primary);
  border-bottom: 0;
  background: #fff;
}
.testimonial::before,
.testimonial::after {
  position: absolute;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--it-accent);
  color: #fff;
  font-family: 'FontAwesome';
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.testimonial::before {
  content: "\f10d"; /* fa-quote-left */
  top: -1px;
  left: -1px;
}
.testimonial::after {
  content: "\f10e"; /* fa-quote-right */
  right: -1px;
  bottom: 0;
}
.testimonial > .clearfix {
  min-height: 126px;
}
.testimonial > .clearfix::after {
  content: "";
  display: table;
  clear: both;
}
.testimonial img {
  display: block;
  float: left;
  width: 96px;
  height: 96px;
  margin: 5px 20px 10px 12px;
  padding: 1px;
  object-fit: cover;
  border: 1px solid #e3e3e3;
  background: #fff;
}
.testimonial p {
  margin: 0 0 10px;
  color: #111;
  font-size: 14px;
  line-height: 1.58;
  text-align: left;
}
.testimonial p:last-child { margin-bottom: 0; }
.testimonial .author {
  position: relative;
  box-sizing: border-box;
  margin: 20px -35px 0;
  padding: 11px 54px 11px 20px;
  background: var(--it-primary);
  color: #fff;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}
.testimonial .author::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border-top: 10px solid var(--it-primary);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}

/* The dedicated Testimonials page uses the same clean heading treatment as other
   Information Page section headings instead of the old solid widget-title bar. */
.testimonial-section-title {
  margin: 0 0 22px;
  padding: 0 0 0 10px;
  min-height: 31px;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--it-primary);
  color: #111;
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  text-align: left;
  text-transform: none;
}
.testimonial-section-title + .wpb_content_element { margin-bottom: 30px; }

/* Home/Information three-column cards reuse the same testimonial component.
   Keep their compact vertical rhythm without redefining the icon/author visuals. */

@media (max-width: 640px) {
  .testimonial { padding-right: 20px; padding-left: 20px; }
  .testimonial img {
    float: none;
    margin: 8px 0 14px 42px;
  }
  .testimonial .author {
    margin-right: -20px;
    margin-left: -20px;
  }
  .testimonial-section-title {
    font-size: 23px;
    line-height: 29px;
  }
}

/* =========================================================
   1.8 — Balanced desktop navigation & light Mega Menu
   - Menu bar follows the 1170px site container and distributes items evenly.
   - White mega panel with blue top rule.
   - Menu title + short description layout.
   - One shared component for all HTML pages.
   ========================================================= */
@media (min-width: 992px) {
  .page-header .main-nav.mega-nav {
    width: min(var(--it-container), calc(100% - 30px));
    margin-inline: auto;
    position: relative;
    z-index: 1200;
    display: flex;
    justify-content: flex-start;
    overflow: visible;
    background: #fff;
  }

  .page-header .main-nav.mega-nav > ul {
    width: 100%;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0;
    position: static;
  }

  .page-header .main-nav.mega-nav > ul > li {
    position: static;
    flex: 0 0 auto;
  }

  .page-header .main-nav.mega-nav > ul > li:last-child {
    margin-left: 0;
  }

  .page-header .main-nav.mega-nav > ul > li > a {
    min-height: 42px;
    padding: 6px 4px;
    color: #142c3b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.1px;
    white-space: nowrap;
  }

  .page-header .main-nav.mega-nav > ul > li.has-mega-menu > a::after {
    content: "\f107";
    margin-left: 5px;
    font-family: FontAwesome;
    font-size: 11px;
    font-weight: normal;
    line-height: 1;
    opacity: .72;
  }

  .page-header .main-nav.mega-nav > ul > li:hover > a,
  .page-header .main-nav.mega-nav > ul > li:focus-within > a,
  .page-header .main-nav.mega-nav > ul > li > a.active,
  .page-header .main-nav.mega-nav > ul > li > a[aria-current="page"] {
    background: #087aa8;
    color: #fff;
    text-decoration: none;
    border-radius: 2px 2px 0 0;
  }

  .page-header .main-nav.mega-nav > ul > li > a.menu-highlight,
  .page-header .main-nav.mega-nav > ul > li > a[href*="Mega_Bundle"],
  .page-header .main-nav.mega-nav > ul > li > a[href*="MEGA_BUNDLE"] {
    min-height: 40px;
    padding-inline: 14px;
    background: var(--it-warning);
    color: #fff;
    border-radius: 2px 2px 2px 2px;
  }

  .page-header .main-nav.mega-nav > ul > li > .mega-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 180px);
    overflow-x: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    column-gap: 34px;
    row-gap: 0;
    padding: 18px 20px 22px;
    margin: 0;
    background: #0A3F55;
    background-clip: padding-box;
    border-top: 2px solid transparent;
    border-radius: 0 0 7px 7px;
    box-shadow: inset 0 4px 0 #1597cf, 0 18px 38px rgba(10, 37, 64, .18);
    visibility: hidden;
    opacity: 0;
    transform: translateY(7px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    scrollbar-width: thin;
    scrollbar-color: #9aa8b0 #eef3f6;
  }

  .page-header .main-nav.mega-nav > ul > li:hover > .mega-submenu,
  .page-header .main-nav.mega-nav > ul > li:focus-within > .mega-submenu,
  .page-header .main-nav.mega-nav > ul > li.is-mega-open > .mega-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .page-header .main-nav.mega-nav .mega-submenu > li {
    position: relative;
    min-width: 0;
    list-style: none;
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a {
    min-height: 72px;
    height: auto;
    display: block;
    padding: 10px 10px 11px;
    background: transparent;
    color: #0a3f55;
    border: 0;
    border-bottom: 1px solid #edf1f4;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: none;
    white-space: normal;
    transition: background var(--it-transition), color var(--it-transition), transform var(--it-transition);
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a:hover,
  .page-header .main-nav.mega-nav .mega-submenu > li > a:focus {
    background: #f0f8fc;
    color: #087aa8;
    text-decoration: none;
    transform: translateY(-1px);
  }

  .mega-menu-title {
    display: block;
    color: #0a3f55;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
  }

  .mega-menu-desc {
    display: block;
    margin-top: 4px;
    color: #607385;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.42;
  }

  .main-nav.mega-nav .mega-submenu > li > a:hover .mega-menu-title,
  .main-nav.mega-nav .mega-submenu > li > a:focus .mega-menu-title {
    color: #087aa8;
  }

  /* Compact desktop: keep the full menu legible without leaving unused space. */
  @media (max-width: 1199px) {
    .page-header .main-nav.mega-nav > ul > li > a {
      padding-inline: 3px;
      font-size: 12.5px;
      letter-spacing: -.15px;
    }
    .page-header .main-nav.mega-nav > ul > li > a.menu-highlight,
    .page-header .main-nav.mega-nav > ul > li > a[href*="Mega_Bundle"],
    .page-header .main-nav.mega-nav > ul > li > a[href*="MEGA_BUNDLE"] {
      padding-inline: 9px;
    }
    .page-header .main-nav.mega-nav > ul > li > .mega-submenu {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: 24px;
      padding-inline: 22px;
    }
  }
}


/* At very narrow desktop widths the full 17-item bar would become cramped.
   Use the existing mobile navigation before horizontal overflow can occur. */
@media (min-width: 992px) and (max-width: 1099px) {
  .page-header .main-nav.mega-nav { display: none; }
  .page-header .mobile-main-nav { display: block; }
}
@media (max-width: 1099px) {
  .page-header .mobile-main-nav {
    width: min(var(--it-container), calc(100% - 20px));
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: var(--it-primary);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }

  .page-header .mobile-main-nav > .opener {
    order: 1;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 14px;
    margin: 0;
    background: var(--it-primary);
    color: #fff;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .page-header .mobile-main-nav > .mobile-nav-toggle {
    order: 2;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.35);
    border-radius: 0;
    background: var(--it-primary);
    color: #fff;
    cursor: pointer;
  }

  .page-header .mobile-main-nav > .mobile-nav-toggle:hover,
  .page-header .mobile-main-nav > .mobile-nav-toggle:focus-visible,
  .page-header .mobile-main-nav.is-open > .mobile-nav-toggle {
    background: #083f53;
    color: #fff;
    outline: none;
  }

  .page-header .mobile-main-nav > .mobile-nav-toggle .fa {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1;
    color: currentColor;
  }

  .page-header .mobile-main-nav > ul {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 5px 12px rgba(8,45,63,.18);
  }

  .page-header .mobile-main-nav > ul > li > a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 46px 9px 14px;
    font-size: 13px;
    line-height: 24px;
  }

  .page-header .mobile-main-nav li > .submenu-toggle,
  .page-header .mobile-main-nav li > i {
    height: 42px;
  }
}

@media (max-width: 767px) {
  .page-header .mobile-main-nav {
    width: calc(100% - 20px);
  }

  .page-header .mobile-main-nav > .opener {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  /* Let all three desktop columns share one common vertical box. */
  .home-trust-row,
  .home-articles-row {
    align-items: stretch;
  }

  .home-trust-row > .grid-col:not(.home-testimonials-stack),
  .home-articles-row > .grid-col {
    display: flex;
    flex-direction: column;
  }

  .home-trust-row > .grid-col:not(.home-testimonials-stack) > .widget,
  .home-articles-row > .grid-col > .widget {
    flex: 1 1 auto;
    width: 100%;
    margin-bottom: 0;
  }

  /* Testimonials: remove legacy artificial body height and excess
     vertical whitespace. Any spare row height is kept BETWEEN cards,
     never after the spoken content inside a card. */
  .home-testimonials-stack {
    align-self: stretch;
    justify-content: space-between;
    gap: 12px;
  }

  .home-testimonials-stack .testimonial {
    flex: 0 0 auto;
    padding: 12px 28px 0;
  }

  .home-testimonials-stack .testimonial .clearfix {
    min-height: 0;
  }

  .home-testimonials-stack .testimonial img {
    margin: 0 14px 5px 0;
  }

  .home-testimonials-stack .testimonial p {
    margin-bottom: 0;
    line-height: 1.48;
  }

  .home-testimonials-stack .testimonial .author {
    margin: 8px -28px 0;
    padding: 9px 52px 9px 18px;
  }

  /* Articles / Blogs / Download Free Toolkits: normalize the vertical
     rhythm so the three columns begin and finish on the same grid line. */
  .home-articles-row .widget-appointment {
    display: flex;
    flex-direction: column;
  }

  .home-articles-row .widget-appointment > p {
    margin: 0 0 10px;
  }

  .home-articles-row .widget-appointment > p:last-child {
    margin: 0;
  }

  .home-articles-row .widget-appointment img {
    vertical-align: middle;
  }
}
:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li {
  position: relative;
  margin: 0;
  padding: 11px 4px 11px 38px;
  border-bottom: 1px solid #e8eef2;
  color: #334155;
  font-size: 15px;
  line-height: 1.62;
  text-indent: 0;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li:first-child {
  padding-top: 5px;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li:last-child {
  padding-bottom: 5px;
  border-bottom: 0;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li::before {
  content: "\f00c";
  position: absolute;
  top: 12px;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf5fc;
  color: #0b74b8;
  font-family: 'FontAwesome';
  font-size: 11px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li:first-child::before {
  top: 6px;
}

:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li strong,
:where(
  .payment-guide-modern .pg-checklist,
  .refund-policy-modern .rp-checklist,
  .copyright-policy-modern .cp-checklist,
  .privacy-policy-modern .pp-checklist,
  .terms-policy-modern .tp-checklist
) > li b {
  color: #0a2540;
  font-weight: 700;
}

/* Premium card rhythm: headings, subtitles and checklist content align
   consistently across the information-policy family. */
:where(
  .payment-guide-modern .pg-card,
  .refund-policy-modern .rp-card,
  .copyright-policy-modern .cp-card,
  .privacy-policy-modern .pp-card,
  .terms-policy-modern .tp-card
) {
  overflow: hidden;
}

:where(
  .payment-guide-modern .pg-card-subtitle,
  .refund-policy-modern .rp-card-subtitle,
  .copyright-policy-modern .cp-card-subtitle,
  .privacy-policy-modern .pp-card-subtitle,
  .terms-policy-modern .tp-card-subtitle
) {
  margin-bottom: 12px;
  color: #64748b;
  line-height: 1.55;
}

@media (max-width: 767px) {
  :where(
    .payment-guide-modern .pg-checklist,
    .refund-policy-modern .rp-checklist,
    .copyright-policy-modern .cp-checklist,
    .privacy-policy-modern .pp-checklist,
    .terms-policy-modern .tp-checklist
  ) > li {
    padding-left: 34px;
    font-size: 14px;
    line-height: 1.58;
  }

  :where(
    .payment-guide-modern .pg-checklist,
    .refund-policy-modern .rp-checklist,
    .copyright-policy-modern .cp-checklist,
    .privacy-policy-modern .pp-checklist,
    .terms-policy-modern .tp-checklist
  ) > li::before {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
}

/* =====================================================
   Toolkit Details + Assurance — 2 columns desktop
   HTML unchanged
   ===================================================== */

@media (min-width: 769px) {

  .toolkit-pricing-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 18px;
    align-items: start;
  }

  /* Price / Buy Now area remains centered on full row */
  .toolkit-pricing-section > .toolkit-pricing-card:first-of-type {
    grid-column: 1 / -1;
    width: min(410px, 100%);
    justify-self: center;
    margin: 0;
  }

  /* Download Index / Payment Guide remains full row */
  .toolkit-pricing-section > .btn-download-payment {
    grid-column: 1 / -1;
  }

  /* Product information table */
  .toolkit-pricing-section > .toolkit-pricing-card:nth-of-type(2) {
    width: 100%;
    margin: 0;
  }

  /* Purchase assurance box */
  .toolkit-pricing-section > .toolkit-pricing-card.mt-18 {
    width: 100%;
    margin: 0 !important;
  }
}

/* =========================================================
   MEGA MENU FINAL — NO DOT / UNIFORM CARDS / 3-LINE RHYTHM
   CSS-only. No HTML changes required.
   Only desktop Mega Menu is affected.
   ========================================================= */

@media (min-width: 1100px) {

  /* Tighter horizontal spacing gives each card more usable width. */
  .page-header .main-nav.mega-nav > ul > li > .mega-submenu {
    column-gap: 8px;
    row-gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Uniform framed card for every submenu link. */
  .page-header .main-nav.mega-nav .mega-submenu > li > a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: 82px;
    min-height: 82px;

    padding: 10px 27px 9px 12px;

    background: #ffffff !important;
    color: #0a3f55;

    border: 1px solid #d7e3ea !important;
    border-left-width: 1px !important;
    border-radius: 7px;

    box-shadow: 0 2px 5px rgba(10, 63, 85, .035);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;

    text-transform: none;
    text-decoration: none;
    white-space: normal;

    transition:
      background .18s ease,
      border-color .18s ease,
      box-shadow .18s ease,
      color .18s ease,
      transform .18s ease;
  }

  /* HARD RESET: remove every possible left-side pseudo marker/dot. */
  .page-header .main-nav.mega-nav .mega-submenu > li::before,
  .page-header .main-nav.mega-nav .mega-submenu > li::after,
  .page-header .main-nav.mega-nav .mega-submenu > li > a::before,
  .page-header .main-nav.mega-nav .mega-menu-title::before,
  .page-header .main-nav.mega-nav .mega-menu-desc::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  /* Keep only the right navigation arrow. */
  .page-header .main-nav.mega-nav .mega-submenu > li > a::after {
    content: "\f105" !important;
    display: block !important;

    position: absolute;
    top: 50%;
    right: 10px;

    width: auto !important;
    height: auto !important;

    transform: translateY(-50%);

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    line-height: 1;

    color: #9cabb5;

    -webkit-font-smoothing: antialiased;

    transition: color .18s ease, transform .18s ease;
  }

  /* Combo / Bundle cards are intentionally identical to all other cards. */
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="combo" i],
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="bundle" i] {
    background: #ffffff !important;
    color: #0a3f55 !important;
    border: 1px solid #d7e3ea !important;
    border-left-width: 1px !important;
  }

  /* One title line. Long titles truncate rather than wrap and disturb alignment. */
  .page-header .main-nav.mega-nav .mega-menu-title {
    display: block;

    width: 100%;
    height: 17px;
    min-height: 17px;

    overflow: hidden;

    color: #0a3f55;

    font-size: 12.8px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: -.12px;

    white-space: nowrap !important;
    text-overflow: ellipsis;
  }

  /* Reserve exactly two description lines for consistent card rhythm. */
  .page-header .main-nav.mega-nav .mega-menu-desc {
    display: -webkit-box;

    height: 34px;
    min-height: 34px;

    margin-top: 4px;
    overflow: hidden;

    color: #526779;

    font-size: 12px;
    font-weight: 400;
    line-height: 17px;

    white-space: normal;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  /* Hover / keyboard focus. */
  .page-header .main-nav.mega-nav .mega-submenu > li > a:hover,
  .page-header .main-nav.mega-nav .mega-submenu > li > a:focus-visible,
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="combo" i]:hover,
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="bundle" i]:hover,
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="combo" i]:focus-visible,
  .page-header .main-nav.mega-nav .mega-submenu > li > a[href*="bundle" i]:focus-visible {
    background: #f2f9fd !important;
    color: #087aa8 !important;
    border: 1px solid #b9ddeb !important;
    border-left-width: 1px !important;

    box-shadow: 0 6px 14px rgba(10, 63, 85, .09);
    transform: translateY(-1px);

    text-decoration: none;
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a:hover::after,
  .page-header .main-nav.mega-nav .mega-submenu > li > a:focus-visible::after {
    color: #0f89c8;
    transform: translateY(-50%) translateX(2px);
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a:hover .mega-menu-title,
  .page-header .main-nav.mega-nav .mega-submenu > li > a:focus-visible .mega-menu-title {
    color: #087aa8;
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a:focus-visible {
    outline: 3px solid rgba(15, 137, 200, .25);
    outline-offset: 1px;
  }
}

/* Existing compact-desktop 3-column behavior retained. */
@media (min-width: 1100px) and (max-width: 1199px) {

  .page-header .main-nav.mega-nav > ul > li > .mega-submenu {
    column-gap: 8px;
    row-gap: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-header .main-nav.mega-nav .mega-submenu > li > a {
    height: 80px;
    min-height: 80px;
    padding: 9px 25px 8px 11px;
  }

  .page-header .main-nav.mega-nav .mega-menu-title {
    height: 16px;
    min-height: 16px;
    font-size: 12.5px;
    line-height: 16px;
    white-space: nowrap !important;
  }

  .page-header .main-nav.mega-nav .mega-menu-desc {
    height: 32px;
    min-height: 32px;
    margin-top: 4px;
    font-size: 11.5px;
    line-height: 16px;
  }
}


/* ---------------------------------------------------------
   Management Consultants spotlight
   --------------------------------------------------------- */
.consultant-spotlight {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 54px max(24px, calc((100vw - 1170px) / 2));
  box-sizing: border-box;
  background: #f6f3ed;
  border-top: 1px solid rgba(10,63,85,.08);
  border-bottom: 1px solid rgba(10,63,85,.08);
}

.consultant-spotlight-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
  gap: 52px;
  align-items: center;
}

.consultant-eyebrow {
  margin-bottom: 14px;
  color: #697278;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.consultant-spotlight h2 {
  margin: 0 0 18px;
  color: var(--it-primary);
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -.5px;
}

.consultant-lead {
  margin: 0 0 20px;
  max-width: 650px;
  color: #334955;
  font-size: 16px;
  line-height: 1.72;
}

.consultant-points {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.consultant-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
  color: #263d49;
  font-size: 14px;
  line-height: 1.55;
}

.consultant-points .fa {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--it-primary-2);
}

.consultant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consultant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.consultant-btn-primary {
  background: var(--it-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(10,63,85,.15);
}

.consultant-btn-primary:hover {
  background: #073348;
  color: #fff;
  transform: translateY(-1px);
}

.consultant-btn-secondary {
  background: transparent;
  color: var(--it-primary);
  border: 1px solid rgba(10,63,85,.35);
}

.consultant-btn-secondary:hover {
  background: #fff;
  color: var(--it-primary);
  transform: translateY(-1px);
}

.consultant-showcase {
  position: relative;
}

.consultant-showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 360px;
}

.consultant-showcase-item {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(10,63,85,.11);
}

.consultant-showcase-item--large {
  grid-row: 1 / 3;
}

.consultant-showcase-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.consultant-showcase-grid--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  min-height: 360px;
}

.consultant-showcase-item--single {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  border-radius: 14px;
}

.consultant-showcase-item--single img {
  object-fit: cover;
  object-position: center;
}

.consultant-showcase-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  background: var(--it-primary);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(10,63,85,.20);
}

.consultant-showcase-number {
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.consultant-showcase-text {
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .consultant-spotlight {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .consultant-spotlight-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .consultant-showcase {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .home-categories-modern .category-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 30px 14px 32px;
    border-radius: 0;
  }

  .consultant-spotlight {
    padding: 38px 16px 54px;
  }

  .consultant-spotlight h2 {
    font-size: 29px;
  }

  .consultant-lead {
    font-size: 15px;
  }

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

  .consultant-btn {
    width: 100%;
  }

  .consultant-showcase-grid {
    min-height: 300px;
  }

  .consultant-showcase-note {
    left: 10px;
    right: 10px;
    bottom: -28px;
  }
}

@media (max-width: 480px) {
  .consultant-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 130px;
  }

  .consultant-showcase-grid--single {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 240px;
  }

  .consultant-showcase-item--large {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .consultant-showcase-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }
}
