/* Enterprise Toolkits - optimized shared stylesheet
   Scope: index.html, about-us.html, all-toolkits.html
   Purpose: reduce duplicated page-specific styling and support reusable product pages.
*/

:root{
  --blue:#006dcc;
  --blue-dark:#003b68;
  --navy:#073763;
  --link:#00659b;
  --gold:#ffc000;
  --gold-dark:#e8ad00;
  --text:#1f2933;
  --muted:#5f6b77;
  --line:#d9dee6;
  --soft:#f7f8fa;
  --cream:#f5f2ec;
  --card-shadow:0 4px 18px rgba(0,0,0,.14);
  --block-shadow:8px 10px 0 #e8eef7;
  --radius:7px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  font-size:15px;
  line-height:1.45;
  background:#fff;
}
img{max-width:100%}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
button,input{font-family:inherit}
.container{max-width:1220px;margin:0 auto;padding:0 20px}
.top-sale{
  min-height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid #b9d3fb;
  color:#00548e;
  font-weight:700;
  background:#f8fbff;
  font-size:13px;
  text-align:center;
  padding:0 10px;
}

/* Header, navigation, search and mega menu */
.site-header{
  background:#fff;
  border-bottom:1px solid var(--line);
  box-shadow:0 3px 12px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:1000;
}
.nav-bar{display:flex;align-items:center;gap:24px;min-height:68px}
.logo{display:flex;align-items:center;min-width:360px;text-decoration:none}
.logo:hover{text-decoration:none}
.logo-block{display:flex;flex-direction:column;align-items:flex-start;line-height:1}
.logo-mark{
  font-size:30px;
  font-weight:700;
  letter-spacing:-1px;
  font-style:italic;
  color:#0a0a0a;
  line-height:1;
}
.logo-mark span{color:var(--blue)}
.logo-sub{
  font-size:10px;
  color:#4b5563;
  letter-spacing:.3px;
  text-transform:capitalize;
  margin-top:6px;
  margin-left:3px;
  line-height:1.1;
  white-space:nowrap;
}
.main-nav{display:flex;align-items:center;gap:28px;flex:1}
.nav-item{position:relative}
.nav-item-mega{position:static}
.nav-link{
  font-size:16px;
  color:var(--link);
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:20px 0;
  white-space:nowrap;
  text-decoration:none;
}
.nav-link:hover{text-decoration:none}
.nav-link:hover .nav-text{text-decoration:underline}
.caret{font-size:11px;color:var(--link);text-decoration:none;display:inline-block}

.search-inline,
.hero-search{
  display:flex;
  align-items:center;
  border:1px solid var(--line);
  background:#fff;
}
.search-inline{height:42px;min-width:300px}
.search-inline .icon,
.hero-search-icon{
  border:0;
  border-right:1px solid var(--line);
  background:#fff;
  color:#39424e;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
.search-inline .icon{width:42px;height:40px;background:#f3f5f7;color:#333}
.search-inline .icon:hover,
.hero-search-icon:hover{background:#e9eef3;color:var(--link)}
.search-inline input,
.hero-search input{
  border:0;
  outline:0;
  color:#404852;
  min-width:0;
}
.search-inline input{font-size:16px;width:100%;padding:0 12px}
.hero-search{max-width:560px;height:52px}
.hero-search-icon{width:54px;height:50px}
.hero-search input{flex:1;font-size:19px;padding:0 12px}
.hero-search-submit{
  border:0;
  background:#222932;
  color:#fff;
  font-weight:700;
  font-size:21px;
  padding:0 25px;
  height:50px;
  cursor:pointer;
}
.hero-search-submit:hover{background:#101820}

/* Mega Menu */
.mega-panel{
  display:none;
  position:absolute;
  top:calc(100% - 1px);
  left:50%;
  transform:translateX(-50%);
  width:min(1100px,calc(100vw - 90px));
  max-height:calc(100vh - 72px);
  align-items:stretch;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--card-shadow);
  border-radius:5px;
  padding:0;
  z-index:1200;
  overflow:hidden;
}

.nav-item-mega:hover .mega-panel,
.nav-item-mega:focus-within .mega-panel{
  display:flex;
}

/* Left column: 30 departments */
.mega-left{
  width:350px;
  flex:0 0 350px;
  max-height:calc(100vh - 72px);
  padding:10px 10px 18px;
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  background:#fff;
  border-right:1px solid var(--line);
}

.mega-category{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:5px;
  width:100%;
  min-height:20px;
  margin:0;
  padding:3px 3px;
  border:0;
  border-radius:3px;
  background:#fff;
  color:#006399;
  text-align:left;
  font-size:14px;
  line-height:1.25;
  font-weight:700;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  cursor:pointer;
  transition:background-color .15s ease,color .15s ease;
}

.mega-category + .mega-category{
  margin-top:1px;
}

.mega-category:last-of-type{
  margin-bottom:8px;
}

.mega-category:hover,
.mega-category:focus-visible{
  background:#eef6fd;
  color:#004f80;
  outline:none;
}

.mega-category.active,
.mega-category.active:hover,
.mega-category.active:focus-visible{
  background:var(--blue);
  color:#fff;
}

.mega-category .arr{
  float:none;
  flex:0 0 auto;
  margin-left:8px;
  font-weight:800;
  line-height:1;
}

.mega-link,
.dropdown-menu a{
  display:block;
  font-size:14px;
  line-height:1.3;
}

.mega-link{
  padding:7px 8px;
  color:var(--link);
}

.mega-sep{
  border-top:1px solid var(--line);
  margin:11px 8px;
}

.menu-search-pill{
  width:215px;
  min-height:50px;
  margin:12px auto 4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:25px;
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  color:#777;
  text-align:center;
}

.menu-search-pill strong{
  color:#666;
  font-size:15px;
  line-height:1;
}

.menu-search-pill span{
  color:#9aa1aa;
  font-size:11px;
}

/* Right column: functions of the selected department */
.mega-content{
  flex:1;
  min-width:0;
  max-height:calc(100vh - 72px);
  padding:22px 30px 26px;
  overflow-y:auto;
  overflow-x:hidden;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  background:#fff;
}

.mega-content-panel{
  display:none;
}

.mega-content-panel.active{
  display:block;
}

.mega-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  column-gap:34px;
}

/*
.mega-grid a{
  display:block;
  margin:0 0 13px;
  color:var(--link);
  font-size:14px;
  line-height:1.3;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
*/

.mega-grid a{
  display:block;
  min-width:0;
  margin:0 0 16px;
  color:var(--link);
  font-size:14px;
  line-height:1.35;

  white-space:normal;
  overflow:visible;
  text-overflow:clip;
  overflow-wrap:anywhere;
}


.mega-grid a.popular{
  color:var(--navy);
  font-weight:700;
}

.mega-note{
  margin-top:16px;
  padding-bottom:4px;
  color:#365779;
  font-size:13px;
}

.mega-note .sq{
  display:inline-block;
  width:13px;
  height:13px;
  margin-right:9px;
  background:#0d3763;
  vertical-align:-2px;
}

/* Scrollbars for the department and function columns */
.mega-left,
.mega-content{
  scrollbar-width:thin;
  scrollbar-color:#aebdcc #f3f6f9;
}

.mega-left::-webkit-scrollbar,
.mega-content::-webkit-scrollbar{
  width:10px;
}

.mega-left::-webkit-scrollbar-track,
.mega-content::-webkit-scrollbar-track{
  background:#f3f6f9;
  border-radius:10px;
}

.mega-left::-webkit-scrollbar-thumb,
.mega-content::-webkit-scrollbar-thumb{
  background:#aebdcc;
  border:2px solid #f3f6f9;
  border-radius:10px;
}

.mega-left::-webkit-scrollbar-thumb:hover,
.mega-content::-webkit-scrollbar-thumb:hover{
  background:#8095a8;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% - 1px);
  left:0;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--card-shadow);
  border-radius:5px;
  min-width:250px;
  padding:10px 0;
  z-index:1200;
}
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu{display:block}
.dropdown-menu a{color:#222;padding:8px 18px}

/* Buttons and reusable cards */
.btn-outline,
.btn-primary,
.btn-yellow,
.btn-outline-light,
.consultant-actions .btn-dark,
.consultant-actions .btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:800;
}
.btn-outline,.btn-primary{
  height:42px;
  padding:0 16px;
  border-radius:6px;
  border:1px solid #006df0;
  font-size:16px;
}
.btn-outline{color:#006df0;background:#fff}
.btn-primary{color:#fff;background:#006df0}
.btn-yellow,.btn-outline-light{min-height:38px;border-radius:5px;font-size:12px; min-width: 280px;}
.btn-yellow{background:var(--gold);color:#111}
.btn-outline-light{border:1px solid rgba(255,255,255,.75);color:#fff}
.btn-yellow:hover,.btn-outline-light:hover{text-decoration:none}
.sidebar-box,
.toolkit-card,
.toolkit-benefits-showcase,
.toolkit-document-index,
.customer-reviews-section{
  background:#FFFFE0;
  border-radius:6px;
}

/* Home page */
.hero{padding:58px 0 42px}
.hero-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center}
.hero h1{
  font-size:40px;
  line-height:1.14;
  letter-spacing:-1.5px;
  margin:0 0 20px;
  color:#222;
  font-weight:800;
}
.hero p{font-size:20px;color:#5b6470;margin:0 0 26px;max-width:720px}
.hero p strong{color:#333}
.hero-tip{margin-top:14px;color:#6a727c}
.hero-tip strong{color:var(--blue)}
.hero-visual{border-radius:7px;overflow:hidden}
.hero-visual img{width:100%;display:block;border-radius:8px}
.agenda-card{margin-top:18px}
.agenda-card .eyebrow{font-size:13px;color:var(--blue);text-transform:uppercase;font-weight:800;letter-spacing:.4px}
.agenda-card h3{font-size:21px;line-height:1.22;margin:7px 0 4px}

.section{padding:48px 0;border-top:1px solid #eceff3}
.section-title{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:24px;gap:20px}
.section-title h2{font-size:31px;margin:0;color:#064372;font-weight:400}
.section-title h2 strong{font-weight:800}
.section-title a{font-size:16px}

.featured-grid,
.catalog-grid{
  display:grid;
  gap:24px;
  align-items:stretch;
}
.featured-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:28px}
.catalog-grid{grid-template-columns:repeat(4,1fr)}
.product-card{min-width:0;display:flex;flex-direction:column;height:100%}
.thumb{
  border:2px solid #c7cbd0;
  background:#f7f7f7;
  aspect-ratio:1.12/1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  overflow:hidden;
}
.thumb img{width:100%;height:100%;object-fit:cover;display:block}
.product-card h3{font-size:16px;line-height:1.12;margin:0 0 5px;color:var(--link)}
.product-card .meta{color:#6c7279;font-size:12px}
.author{color:#777;font-size:15px;margin:6px 0;display:none}
.price{font-size:16px;font-weight:600;margin:7px 0 14px}
.add-cart{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  background:var(--gold);
  border:0;
  border-radius:4px;
  padding:10px 13px;
  font-size:13px;
  color:#111;
  cursor:pointer;
  text-decoration:none;
  margin-top:auto;
}
.add-cart{
  gap:8px;
}
.add-cart:hover{text-decoration:none;background:var(--gold-dark)}
.result-message{font-size:15px;color:#54606c;margin:10px 0 20px}
.catalog-search{margin-bottom:20px}

.testimonials-section{padding-top:58px;padding-bottom:56px;background:#fff}
.flevy-style-heading{font-size:26px;line-height:1.2;margin:0 0 28px;font-weight:400;color:#1f2933}
.flevy-style-heading strong{font-weight:800}
.testimonial-carousel{position:relative;min-height:170px}
.testimonial-slide{display:none;grid-template-columns:1fr 1fr;gap:64px;align-items:flex-start}
.testimonial-slide.active{display:grid}
.testimonial-feature{display:grid;grid-template-columns:120px 1fr;gap:24px;align-items:start}
.testimonial-avatar{
  width:104px;
  height:104px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  font-size:28px;
  overflow:hidden;
  box-shadow:inset 0 0 0 8px rgba(255,255,255,.45);
}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%;display:block}
.avatar-blue{background:linear-gradient(135deg,#1f4e79,#85b4db)}
.avatar-gold{background:linear-gradient(135deg,#9d6b16,#e6bd62)}
.avatar-navy{background:linear-gradient(135deg,#0f2742,#4c6f91)}
.avatar-teal{background:linear-gradient(135deg,#0a6972,#65c6c6)}
.avatar-slate{background:linear-gradient(135deg,#3b4652,#a0a8b1)}
.testimonial-copy p{font-size:14px;line-height:1.38;color:#646b73;margin:0}
.testimonial-author{text-align:right;margin-top:26px;font-size:15px;color:#686f76}
.testimonial-dots{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:34px}
.testimonial-dots button{width:11px;height:11px;border:0;border-radius:50%;background:#c9c9c9;padding:0;cursor:pointer}
.testimonial-dots button.active{background:#0b73d1}

.consultant-section{background:#fff;border-top:0;padding-top:18px}
.consultant-toolbox-card{
  background:var(--cream);
  border-radius:10px;
  padding:46px 50px;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:44px;
  align-items:center;
}
.section-kicker{font-size:14px;letter-spacing:2px;text-transform:uppercase;color:#59636e;font-weight:800;margin-bottom:14px}
.consultant-copy h2{font-size:30px;line-height:1.1;margin:0 0 22px;color:#111;font-weight:500}
.consultant-copy p{font-size:14px;line-height:1.6;margin:0 0 20px;color:#111}
.consultant-copy ul{margin:20px 0 26px;padding-left:24px;font-size:14px;line-height:1.7}
.consultant-copy a{color:#0067a8}
.consultant-actions{display:flex;gap:12px;flex-wrap:wrap}
.consultant-actions .btn-dark,
.consultant-actions .btn-light{min-width:200px;min-height:38px;border-radius:5px;font-size:12px}
.consultant-actions .btn-dark{background:var(--gold);color:#111;border:1px solid var(--gold)}
.consultant-actions .btn-dark:hover{background:var(--gold-dark);color:#fff;border-color:var(--gold-dark);text-decoration:none}
.consultant-actions .btn-light{background:transparent;color:#111;border:1px solid #222932}
.consultant-actions .btn-light:hover{background:#222932;color:#fff;border-color:#222932;text-decoration:none}
.consultant-visual img{width:100%;height:310px;object-fit:cover;border-radius:7px;display:block}

.client-organizations-section{background:#fff;padding-top:50px}
.client-heading{font-size:32px;font-weight:400;margin:0 0 18px;color:#111}
.client-heading strong{font-weight:800}
.client-intro{font-size:17px;color:#4d5965;margin:0 0 22px}
.client-logo-wall{display:grid;grid-template-columns:repeat(11,1fr);column-gap:24px;row-gap:18px;align-items:center}
.client-logo-wall img{height:42px;object-fit:contain;display:block;margin:auto;filter:none}

.topic-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.topic-card{border:1px solid var(--line);padding:20px;border-radius:6px;background:#fff}
.topic-card h3{margin:0 0 8px;color:#064372;font-size:18px}
.topic-card p{margin:0 0 12px;color:#6b7280}
.topic-tags{font-size:14px;color:var(--link)}
.department-cta-section{border-top:0;background:#063b66;padding:44px 0}
.department-cta{display:grid;grid-template-columns:1fr auto;gap:32px;align-items:center;color:#fff}
.department-cta h2{font-size:32px;line-height:1.15;margin:0 0 14px}
.department-cta p{font-size:17px;line-height:1.55;margin:0;max-width:800px;color:#d9ecff}
.department-cta .section-kicker{color:#b9d8ef;font-size:14px}
.department-cta-actions{display:flex;flex-direction:column;gap:12px;min-width:260px}

/* Product page */
.breadcrumb{font-size:15px;margin:20px 0;color:var(--link)}
.product-layout,
.product-content{
  display:grid;
  grid-template-columns:1.4fr .95fr;
  gap:26px;
  align-items:start;
}
.product-content{margin-top:28px}

.preview-box{
  --preview-interval:4000ms;
  position:relative;
  min-width:0;
  overflow:hidden;
  border:1px solid #555;
  background:#fff;
}

.preview-stage{
  position:relative;
  min-height:410px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f3f5f7;
}

.preview-main-button{
  width:100%;
  min-height:410px;
  margin:0;
  padding:0;
  border:0;
  background:#f3f5f7;
  display:block;
  cursor:zoom-in;
  overflow:hidden;
}

.preview-slider-viewport{
  position:relative;
  width:100%;
  height:100%;
  min-height:410px;
  display:block;
  overflow:hidden;
  background:#f3f5f7;
}

.preview-slider-track{
  width:100%;
  height:100%;
  min-height:410px;
  display:flex;
  transform:translate3d(-100%,0,0);
  transition:transform .65s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.preview-slider-track.is-jumping{transition:none}

.preview-slide{
  width:100%;
  min-width:100%;
  min-height:410px;
  flex:0 0 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f3f5f7;
}

.preview-slide img{
  width:100%;
  height:100%;
  min-height:410px;
  display:block;
  object-fit:contain;
  background:#f3f5f7;
  user-select:none;
  pointer-events:none;
}

.preview-nav,
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  border:0;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}

.preview-nav{
  z-index:8;
  width:46px;
  height:86px;
  padding:0;
  background:rgba(255,255,255,.12);
  color:#0787f5;
  font-size:64px;
  font-weight:300;
  opacity:.9;
  transition:background .2s ease,color .2s ease,opacity .2s ease;
}

.preview-nav:hover,
.preview-nav:focus-visible{
  background:rgba(0,0,0,.22);
  color:#00a2ff;
  opacity:1;
}

.preview-nav:focus-visible{
  outline:3px solid rgba(0,135,255,.35);
  outline-offset:-3px;
}

.preview-prev{left:0}
.preview-next{right:0}

.preview-counter{
  position:absolute;
  top:14px;
  right:14px;
  z-index:7;
  min-width:48px;
  padding:6px 10px;
  border-radius:18px;
  background:rgba(0,0,0,.62);
  color:#fff;
  font-size:13px;
  line-height:1;
  text-align:center;
  pointer-events:none;
}

.preview-strip{
  position:relative;
  width:100%;
  min-width:0;
  min-height:76px;
  padding:10px 12px 13px;
  display:flex;
  align-items:center;
  gap:12px;
  background:#303030;
  color:#fff;
  z-index:10;
}

.preview-thumbnails{
  min-width:0;
  flex:1 1 auto;
  display:flex;
  align-items:center;
  gap:8px;
  overflow-x:auto;
  overflow-y:hidden;
  padding:2px 2px 5px;
  scroll-behavior:smooth;
  overscroll-behavior-inline:contain;
  scrollbar-width:thin;
}

.preview-thumbnails::-webkit-scrollbar{height:6px}
.preview-thumbnails::-webkit-scrollbar-track{background:rgba(255,255,255,.15)}
.preview-thumbnails::-webkit-scrollbar-thumb{background:rgba(255,255,255,.55);border-radius:6px}

.mini{
  position:relative;
  width:86px;
  height:52px;
  flex:0 0 86px;
  margin:0;
  padding:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.55);
  background:#fff;
  cursor:pointer;
  opacity:.68;
  transition:opacity .2s ease,border-color .2s ease,transform .2s ease;
}

.mini:hover{opacity:1;transform:translateY(-1px)}

.mini.active,
.mini[aria-selected="true"]{
  border:3px solid #0787f5;
  opacity:1;
}

.mini:focus-visible{
  outline:3px solid rgba(0,135,255,.42);
  outline-offset:2px;
  opacity:1;
}

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

.preview-strip-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.preview-autoplay-toggle{
  width:34px;
  height:34px;
  flex:0 0 34px;
  margin:0;
  padding:0;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  line-height:1;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease;
}

.preview-autoplay-toggle:hover,
.preview-autoplay-toggle:focus-visible{
  border-color:#fff;
  background:rgba(255,255,255,.24);
}

.preview-autoplay-toggle:focus-visible{
  outline:3px solid rgba(0,135,255,.45);
  outline-offset:2px;
}

.unlock{
  max-width:240px;
  color:#fff;
  font-size:14px;
  line-height:1.35;
}

.preview-progress{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:3px;
  overflow:hidden;
  background:rgba(255,255,255,.18);
}

.preview-progress span{
  width:100%;
  height:100%;
  display:block;
  background:#0787f5;
  transform:scaleX(0);
  transform-origin:left center;
}

.product-summary{padding:8px 0}
.product-summary h1{font-size:34px;line-height:1.25;margin:0 0 16px}
.product-tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:20px}
.tag{background:#f0f1f3;border:1px solid #e0e4e8;padding:8px 11px;font-size:14px;color:#2f3b47}

.preview-lightbox{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:40px 90px;
  background:rgba(0,0,0,.9);
}

.preview-lightbox.active{display:flex}

.preview-lightbox img{
  max-width:100%;
  max-height:92vh;
  display:block;
  object-fit:contain;
  background:#fff;
  box-shadow:0 8px 32px rgba(0,0,0,.45);
}

.preview-modal-open{overflow:hidden}

.lightbox-close{
  position:absolute;
  top:18px;
  right:28px;
  z-index:5;
  width:46px;
  height:46px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:36px;
  line-height:1;
  cursor:pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible{background:#fff;color:#111}

.lightbox-nav{
  z-index:4;
  width:64px;
  height:96px;
  padding:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:74px;
  font-weight:200;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible{background:#fff;color:#111}

.lightbox-prev{left:24px}
.lightbox-next{right:24px}

@media(max-width:900px){
  .preview-strip{gap:8px;padding-right:10px;padding-left:10px}
  .mini{width:72px;height:46px;flex-basis:72px}
  .unlock{font-size:13px;max-width:190px}
}

@media(max-width:720px){
  .preview-box{min-height:0}

  .preview-stage,
  .preview-main-button,
  .preview-slider-viewport,
  .preview-slider-track,
  .preview-slide,
  .preview-slide img{min-height:280px}

  .preview-nav{width:38px;height:68px;font-size:52px}
  .preview-counter{top:10px;right:10px}

  .preview-strip{display:block;min-height:0;padding:10px}
  .preview-thumbnails{width:100%;padding-bottom:8px}
  .mini{width:72px;height:46px;flex-basis:72px}
  .preview-strip-actions{width:100%;margin-top:6px;justify-content:flex-start}
  .unlock{max-width:none;font-size:12px}

  .preview-lightbox{padding:30px 18px}
  .lightbox-nav{width:48px;height:72px;font-size:54px}
  .lightbox-prev{left:6px}
  .lightbox-next{right:6px}
}

@media(prefers-reduced-motion:reduce){
  .preview-slider-track,
  .preview-nav,
  .mini{transition:none}

  .preview-progress{display:none}
}

.description h2,
.sidebar-box h2{color:#064372;font-size:25px;text-transform:uppercase;margin:0 0 16px}
.description p,.sidebar-box p{font-size:16px}

.toolkit-description-section{width:100%}
.toolkit-overview-card{
  border:1px solid #dfe3e8;
  border-radius:6px;
  background:#fff;
  padding:22px 24px;
  margin-bottom:26px;
}
.toolkit-overview-card h3,
.toolkit-document-index h3{
  font-size:24px;
  line-height:1.2;
  margin:0 0 14px;
  color:#111;
  font-weight:800;
}
.toolkit-overview-card p{font-size:16px;line-height:1.55;color:#111;margin:0 0 16px}

.toolkit-benefits-showcase,
.customer-reviews-section{
  width:100%;
  max-width:100%;
  border:1px solid #111;
  padding:24px 28px 30px;
  margin:2px 0 18px;
  box-shadow:var(--block-shadow);
  overflow:hidden;
}
.toolkit-benefits-showcase h3,
.customer-comments-box h2,
.customer-reviews-section h2{
  font-family:Georgia, "Times New Roman", serif;
  font-size:25px;
  line-height:1.2;
  margin:0 0 24px;
  color:#111;
  font-weight:800;
}
.toolkit-benefits-description,
.customer-reviews-intro{font-size:16px;line-height:1.65;color:#000;margin:0 0 22px}
.toolkit-benefits-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px 22px}
.toolkit-benefit-tile{
  min-width:0;
  min-height:155px;
  border:1px solid #111;
  border-radius:5px;
  background:#fff;
  padding:22px 16px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:14px;
  box-shadow:6px 6px 0 #e8eef7;
  overflow:hidden;
}
.toolkit-benefit-icon-box{
  width:62px;
  height:62px;
  flex:0 0 62px;
  background:#006b97;
  display:flex;
  align-items:center;
  justify-content:center;
}
.toolkit-benefit-icon-box svg{width:36px;height:36px;display:block}
.toolkit-benefit-title{
  max-width:210px;
  font-size:15px;
  line-height:1.22;
  color:#000;
  font-weight:900;
  letter-spacing:.1px;
  text-align:center;
}

.check-list-box{
  background:#f7fafc;
  border:1px solid #d8e0e8;
  padding:24px 28px;
  margin:28px 0 0;
}
.check-list{list-style:none;margin:0;padding:0}
.check-list li{
  display:grid;
  grid-template-columns:22px 1fr;
  gap:10px;
  align-items:flex-start;
  margin:0 0 12px;
  font-size:14px;
  line-height:1.45;
  color:#000;
  font-weight:800;
}
.check-list li:last-child{margin-bottom:0}
.check-list li::before{
  content:"✓";
  width:22px;
  height:22px;
  background:#064b60;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  font-weight:800;
  line-height:1;
}

.toolkit-document-index{
  border:1px solid #111;
  padding:22px;
  margin-top:22px;
}
.toolkit-index-intro{font-size:14px;line-height:1.5;color:#111;margin:0 0 22px}
.toolkit-accordion{display:block}
.toolkit-doc-part{
  border:1px solid #111;
  border-radius:4px;
  background:#fff;
  margin:12px 0;
  overflow:hidden;
}
.toolkit-doc-part summary,
.product-faq-item summary{
  list-style:none;
  cursor:pointer;
  position:relative;
  user-select:none;
}
.toolkit-doc-part summary{
  background:#f3f3f3;
  min-height:48px;
  padding:13px 44px 13px 20px;
  display:flex;
  align-items:center;
  color:#111;
  font-size:15px;
  font-weight:800;
  line-height:1.25;
}
.toolkit-doc-part summary::-webkit-details-marker,
.product-faq-item summary::-webkit-details-marker{display:none}
.toolkit-doc-part summary::after,
.product-faq-item summary::after{
  position:absolute;
  right:20px;
  top:50%;
  transform:translateY(-50%);
  font-weight:900;
  line-height:1;
}
.toolkit-doc-part summary::after{content:"+";color:#00548e;font-size:15px}
.toolkit-doc-part[open] summary::after{content:"-"}
.toolkit-part-title{display:flex;align-items:center;gap:9px}
.toolkit-folder-icon,.toolkit-doc-item img{width:16px;height:16px;object-fit:contain;flex:0 0 16px}
.toolkit-doc-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:20px;
  padding:22px 22px 18px;
  background:#fff;
}

.toolkit-doc-item{
  display:flex;
  align-items:center;
  gap:9px;
  min-height:36px;
  padding:7px 0;
  border-bottom:1px dotted #d5dbe3;
  color:#111;
  font-size:13px;
  line-height:1.3;
  text-decoration:none;
  cursor:default;
}

.toolkit-doc-item:hover,
.toolkit-doc-item:focus,
.toolkit-doc-item:active{
  color:#111;
  text-decoration:none;
}

a.toolkit-doc-item,
a.toolkit-doc-item:hover,
a.toolkit-doc-item:focus,
a.toolkit-doc-item:active,
a.toolkit-doc-item:visited{
  color:#111;
  text-decoration:none;
  cursor:default;
}

/* Product sidebar and package information */
.sidebar-box{
  border:1px solid var(--line);
  border-radius:7px;
  background:#FFFFE0;
  padding:22px;
  margin-bottom:24px;
}
.side-actions{display:flex;gap:8px;flex-wrap:wrap}
.info-blue{background:#FFFFE0;border-color:#aed1ff}
.info-blue h2{text-transform:none;color:#000;font-size:26px}
.bundle-cta{
  background:#006df0;
  color:#fff;
  border-radius:5px;
  display:block;
  text-align:center;
  font-size:19px;
  font-weight:700;
  padding:11px;
  margin-top:16px;
  text-decoration:none;
}
.bundle-cta:hover{text-decoration:none}
.package-info-box h2{color:#064372;font-size:18px;text-transform:none;margin:0 0 18px;font-weight:800}
.package-info-table{
  width:100%;
  border-collapse:collapse;
  margin:0 0 22px;
  background:#fff;
  border:1px solid #d8e0e8;
}
.package-info-table th,
.package-info-table td{
  border:1px solid #d8e0e8;
  padding:12px 14px;
  font-size:14px;
  line-height:1.35;
  vertical-align:middle;
  text-align:left;
}
.package-info-table th{width:48%;background:#f3f6f9;color:#111;font-weight:800}
.package-info-table td{color:#111;background:#fff}
.language-flag-img{width:24px;height:auto;margin-right:8px;vertical-align:-4px;display:inline-block}
.package-checklist{border:1px solid #d8e0e8;background:#FFFFE0;padding:14px 18px}
.package-check-item{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:10px 0;
  border-bottom:1px solid #edf0f3;
}
.package-check-item:last-child{border-bottom:0}
.check-icon{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#088a3c;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  font-weight:800;
  line-height:1;
  margin-top:1px;
}
.package-check-item p{margin:0;color:#111;font-size:14px;line-height:1.45}
.package-check-item a{color:var(--link);font-weight:700}

/* FAQ */
.product-faq-section{width:100%;margin:32px 0;background:#fff}
.product-faq-title{
  font-size:28px;
  line-height:1.2;
  font-weight:500;
  color:#111;
  margin:0 0 22px;
  padding-left:10px;
  border-left:4px solid #064b60;
}
.product-faq-accordion{border:1px solid #d8dde3;background:#fff}
.product-faq-item{border-bottom:1px solid #d8dde3;background:#fff}
.product-faq-item:last-child{border-bottom:0}
.product-faq-item summary{
  min-height:48px;
  padding:14px 52px 14px 20px;
  background:#fff;
  color:#111;
  font-size:16px;
  font-weight:500;
  line-height:1.35;
}
.product-faq-item summary::after{content:"+";right:16px;color:#064b60;font-size:24px}
.product-faq-item[open] summary{background:#064b60;color:#fff;font-weight:700}
.product-faq-item[open] summary::after{content:"−";color:#fff}
.product-faq-answer{padding:26px 22px 28px;background:#fff;color:#111;font-size:14px;line-height:1.55}
.product-faq-answer p{margin:0 0 14px}
.product-faq-answer p:last-child{margin-bottom:0}
.product-faq-checklist{list-style:none;margin:10px 0 16px;padding:0}
.product-faq-checklist li{
  position:relative;
  margin:0 0 10px;
  padding-left:32px;
  font-size:14px;
  line-height:1.45;
  color:#111;
}
.product-faq-checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:1px;
  width:20px;
  height:20px;
  background:#064b60;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:800;
  line-height:1;
}

/* Product payment box */
.paypal-toolkit-box{
  border:1px solid #d8d8d8;
  border-radius:16px;
  background:#fff;
  padding:16px 10px;
  margin:28px 0;
  text-align:center;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}
.paypal-price-line{
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:10px;
  margin:0 0 26px;
  font-size:28px;
  line-height:1.2;
  color:#000;
  font-weight:800;
}
.paypal-price-line strong{color:#e60023;font-size:32px;font-weight:900}
.toolkit-buy-form{width:100%;max-width:390px;margin:0 auto 20px;padding:0;text-align:center}
.toolkit-paypal-btn{
  width:100%;
  min-height:58px;
  max-width:350px;
  padding:0 22px;
  border:1px solid #c89500;
  border-radius:8px;
  background:linear-gradient(#ffd34d,#f5b400);
  color:#000;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  cursor:pointer;
  font-size:18px;
  font-weight:900;
  line-height:1;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  transition:background .2s ease,transform .2s ease,box-shadow .2s ease;
}
.toolkit-paypal-btn:hover{background:linear-gradient(#ffc526,#e9a900);color:#000;transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.16)}
.toolkit-paypal-btn:active{transform:translateY(0);box-shadow:0 5px 12px rgba(0,0,0,.12)}
.toolkit-paypal-btn:focus{outline:3px solid rgba(0,103,177,.28);outline-offset:3px}
.paypal-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#0647a8;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 34px;
  font-size:22px;
  font-weight:900;
}
.paypal-icon::before{content:"P"}
.paypal-logo{display:inline-flex;align-items:center;font-size:18px;line-height:1;font-weight:900;letter-spacing:.1px}
.paypal-logo .pay{color:#063b8f}
.paypal-logo .pal{color:#009cde}
.paypal-buy-text{color:#000;font-size:18px;font-weight:900;white-space:nowrap}
.paypal-payment-icons{display:flex;align-items:center;justify-content:center;gap:8px;margin:12px 0 24px;flex-wrap:wrap}
.paypal-payment-icons img{width:64px;height:42px;object-fit:contain;border:1px solid #d8d8d8;background:#fff;padding:5px}
.paypal-secure-note{margin:0 0 20px;color:#4b5563;font-size:11px;line-height:1.45}
.paypal-secure-note strong{color:#333;font-weight:800}
.paypal-benefit-line{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;color:#087a12;font-size:13px;line-height:1.3;font-weight:500}
.paypal-benefit-line span{display:inline-block}

/* Product comments and reviews */
.customer-comments-box{
  background:#fff;
  border:1px solid #111;
  border-radius:6px;
  padding:18px 20px;
  margin-top:24px;
}
.customer-comments-box h2{font-size:23px;margin:0 0 18px}
.customer-comment-item{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:14px;
  padding:16px 0 20px;
  border-bottom:1px solid #e4e8ee;
}
.customer-comment-item:last-child{border-bottom:0;padding-bottom:0}
.customer-comment-item img{width:58px;height:58px;object-fit:cover;border:1px solid #b8c0c8;background:#f3f5f7}
.customer-comment-content h3{font-size:14px;line-height:1.25;color:#0060a8;margin:0 0 5px;font-weight:800}
.customer-comment-content p{font-size:13px;line-height:1.45;color:#111;margin:0}
.customer-reviews-section{border:1px solid #111;margin:30px 0}
.customer-reviews-section h2{margin:0 0 18px}
.customer-reviews-intro{font-size:15px;color:#111;margin:0 0 24px}
.customer-rating-summary{display:flex;align-items:center;gap:22px;border:1px solid #d7dce3;border-radius:6px;background:#f7f7f7;padding:22px 24px;margin:0 0 26px}
.rating-score{font-size:44px;line-height:1;color:#000;font-weight:900}
.rating-stars{color:#ff9900;font-size:22px;letter-spacing:2px;line-height:1;margin-bottom:8px}
.rating-details p{font-size:13px;line-height:1.45;color:#334155;margin:0}
.review-card{border:2px solid #d7dce3;border-radius:7px;background:#fff;margin:0 0 26px;overflow:hidden;box-shadow:6px 8px 0 #e8eef7}
.review-card:last-child{margin-bottom:0}
.review-header{display:flex;align-items:center;gap:18px;padding:22px 24px 10px}
.review-avatar{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#0067b1;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:900;
  flex:0 0 48px;
}
.review-header h3{font-size:17px;color:#000;font-weight:800;margin:0 0 5px}
.review-header p{font-size:13px;color:#475569;margin:0}
.review-stars{
  display:inline-block;
  margin:8px 24px 20px;
  padding:5px 12px;
  border:1px solid #f5d58a;
  border-radius:18px;
  background:#fff8df;
  color:#ff9900;
  font-size:14px;
  letter-spacing:2px;
  line-height:1;
}
.review-text{font-size:15px;line-height:1.6;color:#111;margin:0;padding:0 24px 22px}
.review-meta{display:flex;justify-content:space-between;align-items:center;gap:16px;border-top:1px solid #dfe4ea;padding:14px 24px 18px;font-size:13px;color:#475569}
.review-meta strong{color:#008000;font-weight:800}
.review-response{border-top:1px solid #dfe4ea;background:#f7f7f7;padding:18px 24px}
.review-response strong{display:block;color:#0060a8;font-size:14px;font-weight:800;margin:0 0 8px}
.review-response p{font-size:13px;line-height:1.5;color:#111;margin:0}

/* About page */
.about-page{padding:50px 0}
.about-intro{font-size:18px;margin-bottom:46px}
.about-block{margin:52px 0}
.about-block h1,
.about-block h2{font-size:42px;color:var(--link);margin:0 0 18px;letter-spacing:-1px}
.about-block p{font-size:18px;max-width:1120px}
.about-image{width:100%;max-width:900px;border:1px solid var(--line);border-radius:8px;display:block;margin:26px 0}
.core-offerings{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.offering-card{border:1px solid var(--line);border-left:6px solid var(--blue);padding:22px;background:#fff;border-radius:6px}
.offering-card h3{margin:0 0 10px;color:#064372;font-size:23px}
.method-list{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.method-list div{background:#f6f9fc;border:3px solid #062f66;padding:17px;border-radius:6px}
.red-rule{height:8px;background:linear-gradient(90deg,var(--blue),#d7ecff,var(--blue));margin:0}

/* Footer */
.footer{border-top:1px solid var(--line);background:#f1f1f1;padding:48px 0 30px;color:#004f80}
.footer-grid{display:grid;grid-template-columns:240px repeat(4,1fr);gap:34px}
.footer h4{color:#1a1a1a;margin:0 0 10px;font-size:14px;text-transform:uppercase}
.footer a{display:block;margin:6px 0;font-size:14px;color:var(--link)}
.footer .free{color:#a00000;margin-top:28px}
.footer-bottom{margin-top:30px;border-top:1px solid #d0d0d0;padding-top:18px;color:#55616e;font-size:13px}

/* Responsive */
@media(max-width:1200px){
  .toolkit-benefits-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:1100px){
  .featured-grid{grid-template-columns:repeat(3,1fr)}
  .hero-grid,
  .product-layout,
  .product-content,
  .consultant-toolbox-card{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .search-inline{display:none}
  .client-logo-wall{grid-template-columns:repeat(6,1fr)}
  .mega-panel{width:calc(100vw - 32px)}
  .mega-left{width:330px;flex-basis:330px}
  .mega-content{padding-right:24px;padding-left:24px}
  .mega-grid{grid-template-columns:repeat(2,1fr);column-gap:26px}
}
@media(max-width:900px){
  .customer-comment-item{grid-template-columns:52px 1fr;gap:12px}
  .customer-comment-item img{width:52px;height:52px}
}
@media(max-width:720px){
  .nav-bar{flex-wrap:wrap;min-height:auto;padding-top:12px;padding-bottom:12px}
  .logo{min-width:0}
  .logo-mark{font-size:38px}
  .main-nav{order:3;width:100%;gap:16px;flex-wrap:wrap}
  .nav-link{font-size:16px;padding:8px 0}
  .hero{padding:38px 0}
  .hero h1{font-size:35px}
  .hero p{font-size:18px}
  .hero-search{height:auto;flex-wrap:wrap}
  .hero-search-submit{width:100%;height:48px}
  .featured-grid,
  .topic-grid,
  .core-offerings,
  .method-list,
  .catalog-grid{grid-template-columns:1fr}
  .section-title{display:block}
  .testimonial-slide.active{display:block}
  .testimonial-feature{grid-template-columns:82px 1fr;margin-bottom:26px}
  .testimonial-avatar{width:76px;height:76px;font-size:22px}
  .testimonial-copy p{font-size:16px}
  .testimonial-author{text-align:left;font-size:15px}
  .consultant-toolbox-card{padding:28px 22px}
  .consultant-copy h2{font-size:34px}
  .consultant-actions{display:block}
  .consultant-actions .btn-dark,
  .consultant-actions .btn-light{width:100%;margin:6px 0}
  .client-logo-wall{grid-template-columns:repeat(3,1fr)}
  .department-cta{grid-template-columns:1fr}
  .mega-panel,
  .dropdown-menu{position:static;transform:none;width:100%;box-shadow:none}
  .nav-item-mega:hover .mega-panel{display:flex}
  .mega-left{display:none}
  .mega-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .top-sale{font-size:12px}
  .preview-lightbox{padding:30px 18px}
  .lightbox-nav{width:48px;height:72px;font-size:54px}
  .lightbox-prev{left:6px}
  .lightbox-next{right:6px}
  .toolkit-benefits-showcase,
  .customer-reviews-section{padding:20px 18px 24px;box-shadow:6px 8px 0 #e8eef7}
  .toolkit-benefits-card-grid{grid-template-columns:1fr;gap:18px}
  .toolkit-benefit-tile{min-height:135px;padding:20px 16px}
  .toolkit-benefit-title{font-size:18px}
  .check-list-box{padding:18px}
  .toolkit-document-index{padding:16px}
  .toolkit-doc-grid{grid-template-columns:1fr;padding:16px}
  .toolkit-doc-part summary{font-size:15px;padding:12px 38px 12px 14px}
  .product-faq-title{font-size:24px}
  .product-faq-item summary{font-size:15px;padding:13px 46px 13px 16px}
  .product-faq-answer{padding:20px 16px 22px}
  .paypal-toolkit-box{padding:24px 18px}
  .paypal-price-line{font-size:24px}
  .paypal-price-line strong{font-size:28px}
  .paypal-payment-icons img{width:56px;height:38px}
  .paypal-benefit-line{font-size:17px;gap:8px}
  .toolkit-buy-form{max-width:100%}
  .toolkit-paypal-btn{min-height:54px;padding:0 14px;gap:9px;font-size:19px}
  .paypal-icon{width:30px;height:30px;flex-basis:30px;font-size:19px}
  .paypal-buy-text{font-size:19px}
  .customer-rating-summary{align-items:flex-start;flex-direction:column;gap:10px}
  .review-header{padding:20px 18px 10px}
  .review-stars{margin-left:18px;margin-right:18px}
  .review-text{padding:0 18px 20px}
  .review-meta{flex-direction:column;align-items:flex-start;padding:14px 18px 18px}
  .review-response{padding:16px 18px}
}

/* ==========================================================================
   Enterprise Toolkits product-page header and commerce redesign - 2026
   This layer intentionally overrides only the shared header and product hero.
   The detailed toolkit content below .product-content remains unchanged.
   ========================================================================== */

:root{
  --et-ink:#10283d;
  --et-navy:#073763;
  --et-blue:#006dcc;
  --et-blue-soft:#eaf4ff;
  --et-gold:#ffc000;
  --et-surface:#ffffff;
  --et-page:#f5f8fb;
  --et-border:#d9e2ea;
  --et-success:#137333;
  --et-shadow:0 16px 40px rgba(16,40,61,.11);
}

body[data-page="product"]{background:var(--et-page)}
body[data-page="product"] .product-content{background:#fff}

/* Redesigned site header; mega-menu markup and links are unchanged. */
.site-header{border-bottom:1px solid #d8e2eb;box-shadow:0 8px 24px rgba(16,40,61,.08)}
.nav-shell{min-height:82px;gap:28px}
.nav-shell .logo{min-width:310px;order:1}
.nav-shell .logo-mark{font-size:31px;letter-spacing:-1.2px;color:var(--et-ink)}
.nav-shell .logo-mark span{color:var(--et-blue)}
.nav-shell .logo-sub{font-size:10px;color:#607080;letter-spacing:.45px;margin-top:7px}
.nav-shell .main-nav{order:2;justify-content:center;gap:26px}
.nav-shell .search-inline{order:3;margin-left:auto;min-width:255px;height:44px;border-radius:7px;overflow:hidden;border-color:#cbd7e1;box-shadow:inset 0 1px 2px rgba(16,40,61,.04)}
.nav-shell .search-inline .icon{height:42px;background:#f3f7fa;border-color:#d5dfe7}
.nav-shell .search-inline input{font-size:14px}
.nav-shell .nav-link{color:var(--et-ink);font-size:15px;padding:29px 0}
.nav-shell .caret{color:var(--et-blue)}
.nav-shell .mega-panel{top:calc(100% - 8px);border-color:#cfdbe5;border-radius:10px;box-shadow:0 24px 60px rgba(16,40,61,.2)}
.nav-shell .dropdown-menu{
  top:calc(100% - 1px);
  margin-top:0;
  border-radius:0 0 9px 9px;
  border-color:#cfdbe5;
}

.mobile-menu-toggle{display:none;order:4;width:44px;height:44px;border:1px solid #cbd7e1;border-radius:7px;background:#fff;padding:10px;cursor:pointer}
.mobile-menu-toggle span{display:block;height:2px;margin:5px 0;background:var(--et-ink);transition:transform .2s ease,opacity .2s ease}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Product hero. */
.product-page{max-width:1320px;padding-bottom:44px}
.product-page .breadcrumb{margin:22px 0 18px;color:#587083;font-size:13px}
.product-page .breadcrumb a{color:#356b91}
.product-page .breadcrumb span{margin:0 3px}
.product-hero{margin-bottom:30px}
.product-hero-grid{display:grid;grid-template-columns:minmax(0,1.38fr) minmax(370px,.82fr);gap:28px;align-items:start}
.product-gallery-column,.product-commerce-column{min-width:0}
.product-commerce-column{display:grid;gap:18px}

.product-preview-card{border:1px solid var(--et-border);border-radius:14px;background:#fff;box-shadow:var(--et-shadow)}
.preview-heading-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:17px 20px;border-bottom:1px solid #e4ebf1;background:#fff}
.preview-heading-row>div{display:flex;flex-direction:column;gap:2px}
.preview-eyebrow,.product-kicker,.purchase-card-label{font-size:11px;line-height:1.2;font-weight:800;letter-spacing:.9px;text-transform:uppercase;color:var(--et-blue)}
.preview-heading-row strong{font-size:15px;color:var(--et-ink)}
.preview-format-note{font-size:11px;font-weight:800;color:#647585;white-space:nowrap}
.product-preview-card .preview-stage{min-height:500px;background:#f0f4f7}
.product-preview-card .preview-main-button,
.product-preview-card .preview-slider-viewport,
.product-preview-card .preview-slider-track,
.product-preview-card .preview-slide,
.product-preview-card .preview-slide img{min-height:500px}
.product-preview-card .preview-slide img{object-fit:contain;background:#f0f4f7;padding:12px}
.product-preview-card .preview-nav{width:44px;height:74px;border-radius:0 8px 8px 0;background:rgba(7,55,99,.64);color:#fff;font-size:54px;opacity:.76}
.product-preview-card .preview-next{border-radius:8px 0 0 8px}
.product-preview-card .preview-nav:hover,
.product-preview-card .preview-nav:focus-visible{background:rgba(0,109,204,.92);color:#fff}
.product-preview-card .preview-counter{background:rgba(7,55,99,.86);font-weight:800}
.product-preview-card .preview-strip{padding:12px 14px;background:#10283d}
.product-preview-card .mini{width:84px;height:58px;flex-basis:84px;border-radius:5px;border-color:rgba(255,255,255,.45)}
.product-preview-card .mini.active,
.product-preview-card .mini[aria-selected="true"]{border-color:#72c1ff;box-shadow:0 0 0 1px #72c1ff}
.product-preview-card .preview-progress span{background:#65b8ff}

.product-overview-card,.product-purchase-card{border:1px solid var(--et-border);border-radius:14px;background:#fff;box-shadow:0 10px 28px rgba(16,40,61,.08)}
.product-overview-card{padding:25px 26px 23px}
.product-summary.product-overview-card{padding-top:25px}
.product-overview-card h1{margin:8px 0 13px;color:var(--et-ink);font-size:30px;line-height:1.16;letter-spacing:-.6px}
.product-lead{margin:0 0 18px;color:#4c5d6c;font-size:14px;line-height:1.62}
.product-key-points{list-style:none;margin:0 0 19px;padding:0;display:grid;gap:9px}
.product-key-points li{position:relative;padding-left:27px;color:#2e4354;font-size:13px;line-height:1.45}
.product-key-points li::before{content:"✓";position:absolute;left:0;top:0;width:19px;height:19px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#e4f4e8;color:var(--et-success);font-size:12px;font-weight:900}
.product-key-points strong{color:var(--et-ink)}
.product-overview-card .product-tags{margin:0 0 17px;gap:7px}
.product-overview-card .tag{padding:6px 8px;border-color:#d8e5ef;border-radius:4px;background:#f3f8fc;color:#36556e;font-size:11px;font-weight:700}
.product-content-link{display:inline-flex;align-items:center;gap:7px;color:var(--et-blue);font-size:13px;font-weight:800}

.product-purchase-card{padding:22px 24px 20px;border-top:4px solid var(--et-blue)}
.purchase-card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.purchase-status{font-size:11px;font-weight:800;color:var(--et-success);white-space:nowrap}
.purchase-status span{font-size:9px;margin-right:4px}
.product-purchase-card .paypal-price-line{display:block;margin:0;text-align:left}
.product-purchase-card .paypal-price-line span{display:block;margin-bottom:2px;color:#667887;font-size:12px;font-weight:700}
.product-purchase-card .paypal-price-line strong{display:block;color:#c7202f;font-size:38px;line-height:1.05;letter-spacing:-1px}
.purchase-price-note{margin:5px 0 18px;color:#738291;font-size:11px}
.product-purchase-card .toolkit-buy-form{max-width:none;margin:0 0 13px}
.product-purchase-card .toolkit-paypal-btn{max-width:none;min-height:56px;border-radius:8px}
.product-purchase-card .paypal-payment-icons{justify-content:flex-start;gap:6px;margin:0 0 17px}
.product-purchase-card .paypal-payment-icons img{width:44px;height:30px;padding:3px;border-radius:3px}
.purchase-benefits{display:grid;gap:10px;padding:15px 0;border-top:1px solid #e5ebf0;border-bottom:1px solid #e5ebf0}
.purchase-benefits>div{position:relative;display:grid;grid-template-columns:20px 1fr;column-gap:8px;color:#2a4356}
.purchase-benefits>div>span{grid-row:1/3;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#e3f3e7;color:var(--et-success);font-size:11px;font-weight:900}
.purchase-benefits strong{font-size:12px;line-height:1.2}
.purchase-benefits small{grid-column:2;color:#758593;font-size:10px;line-height:1.35}
.product-purchase-card .paypal-secure-note{margin:13px 0 0;font-size:10px;text-align:left}

/* Keep the existing detailed content full-width below the redesigned hero. */
.product-page>.product-content{display:grid;grid-template-columns:1.4fr .95fr;gap:26px;align-items:start;margin-top:28px}

@media(max-width:1180px){
  .nav-shell{gap:18px}
  .nav-shell .logo{min-width:270px}
  .nav-shell .search-inline{min-width:220px}
  .nav-shell .main-nav{gap:18px}
  .product-hero-grid{grid-template-columns:minmax(0,1.2fr) minmax(340px,.8fr)}
  .product-preview-card .preview-stage,
  .product-preview-card .preview-main-button,
  .product-preview-card .preview-slider-viewport,
  .product-preview-card .preview-slider-track,
  .product-preview-card .preview-slide,
  .product-preview-card .preview-slide img{min-height:440px}
}

@media(max-width:1020px){
  .nav-shell{flex-wrap:wrap;padding-top:12px;padding-bottom:12px}
  .nav-shell .logo{min-width:0;flex:1}
  .mobile-menu-toggle{display:block}
  .nav-shell .search-inline{display:flex;order:2;flex:0 1 330px;margin-left:auto}
  .nav-shell .mobile-menu-toggle{order:3}
  .nav-shell .main-nav{display:none;order:4;width:100%;align-items:stretch;justify-content:flex-start;gap:0;padding-top:8px;border-top:1px solid #e1e8ee}
  .nav-shell .main-nav.is-open{display:flex}
  .nav-shell .nav-item,.nav-shell>.main-nav>.nav-link{width:100%}
  .nav-shell .nav-link{width:100%;justify-content:space-between;padding:12px 4px}
  .nav-shell .mega-panel,.nav-shell .dropdown-menu{position:static;display:none;width:100%;max-height:70vh;transform:none;box-shadow:none;border-radius:7px;margin:0 0 8px;overflow:auto}
  .nav-shell .mega-left,.nav-shell .mega-content{max-height:none;overflow:visible;scrollbar-gutter:auto}
  .nav-shell .nav-item-mega.mega-open .mega-panel{display:flex}
  .nav-shell .nav-item-dropdown.dropdown-open .dropdown-menu{display:block}
  .nav-item-mega:hover .mega-panel,.nav-item-mega:focus-within .mega-panel,
  .nav-item-dropdown:hover .dropdown-menu,.nav-item-dropdown:focus-within .dropdown-menu{display:none}
  .nav-shell .nav-item-mega.mega-open .mega-panel,

  .product-hero-grid{grid-template-columns:1fr}
  .product-commerce-column{grid-template-columns:minmax(0,1fr) minmax(310px,.72fr);align-items:start}
  .product-page>.product-content{grid-template-columns:1fr}
}

@media(max-width:720px){
  .container{padding-right:15px;padding-left:15px}
  .nav-shell .logo-mark{font-size:27px}
  .nav-shell .logo-sub{font-size:9px;white-space:normal}
  .nav-shell .search-inline{order:4;flex:1 0 100%;min-width:0}
  .nav-shell .main-nav{order:5}
  .nav-shell .mega-panel{flex-direction:column}
  .nav-shell .mega-left{display:block;width:100%;flex-basis:auto;border-right:0;border-bottom:1px solid var(--line)}
  .nav-shell .mega-content{padding:14px}
  .nav-shell .mega-grid{grid-template-columns:1fr}
  .product-page .breadcrumb{line-height:1.6}
  .product-commerce-column{grid-template-columns:1fr}
  .preview-heading-row{padding:14px 15px}
  .preview-format-note{display:none}
  .product-preview-card .preview-stage,
  .product-preview-card .preview-main-button,
  .product-preview-card .preview-slider-viewport,
  .product-preview-card .preview-slider-track,
  .product-preview-card .preview-slide,
  .product-preview-card .preview-slide img{min-height:300px}
  .product-preview-card .preview-slide img{padding:5px}
  .product-overview-card,.product-purchase-card{padding:20px 18px}
  .product-overview-card h1{font-size:27px}
  .product-purchase-card .paypal-price-line strong{font-size:34px}
  .product-purchase-card .paypal-payment-icons img{width:43px;height:29px}
}

@media(max-width:420px){
  .nav-shell .logo-mark{font-size:24px}
  .mobile-menu-toggle{width:41px;height:41px}
  .product-preview-card .preview-stage,
  .product-preview-card .preview-main-button,
  .product-preview-card .preview-slider-viewport,
  .product-preview-card .preview-slider-track,
  .product-preview-card .preview-slide,
  .product-preview-card .preview-slide img{min-height:250px}
  .purchase-card-head{align-items:flex-start;flex-direction:column;gap:5px}
  .product-purchase-card .paypal-logo{display:none}
  .product-purchase-card .paypal-buy-text{font-size:17px}
}


/* ========================================================================
   Product header V2 — layout aligned to the supplied 3-column reference.
   Only the header, breadcrumb and product showcase are overridden here.
   All content below .product-content retains the existing structure/styles.
   ======================================================================== */

:root{
  --sample-navy:#062f66;
  --sample-navy-dark:#032858;
  --sample-blue:#073b79;
  --sample-gold:#ffb600;
  --sample-green:#07833f;
  --sample-line:#d6dee8;
  --sample-text:#101820;
}

body[data-page="product"]{background:#fff;color:var(--sample-text)}

/* Dark navigation matching the supplied reference. */
.et-header{
  position:sticky;
  top:0;
  z-index:2000;
  background:linear-gradient(90deg,var(--sample-navy-dark),var(--sample-navy));
  border:0;
  box-shadow:0 2px 8px rgba(0,0,0,.16);
}
.et-header .nav-shell{
  max-width:1430px;
  min-height:54px;
  padding:0 16px;
  gap:28px;
  flex-wrap:nowrap;
}
.et-brand{
  min-width:420px!important;
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  order:1;
}
.et-brand:hover{text-decoration:none}
.logo-emblem{width:36px;display:grid;gap:4px;transform:skewX(-18deg)}
.logo-emblem i{display:block;height:7px;border-radius:1px;background:#fff;box-shadow:0 0 0 1px rgba(255,255,255,.08)}
.logo-emblem i:nth-child(2){width:29px;margin-left:4px}
.logo-emblem i:nth-child(3){width:22px;margin-left:8px}
.logo-divider{width:1px;height:34px;background:rgba(255,255,255,.45)}
.logo-copy{display:flex;flex-direction:column;line-height:1;color:#fff}
.logo-copy strong{font-size:18px;letter-spacing:.2px;white-space:nowrap}
.logo-copy small{font-size:10px;letter-spacing:.25px;margin-top:5px;white-space:nowrap}

.et-header .main-nav{order:2;display:flex;justify-content:center;gap:38px;flex:1}
.et-header .nav-link{color:#fff;font-size:15px;font-weight:600;padding:18px 0;line-height:18px}
.et-header .nav-link:hover .nav-text{text-decoration:none;color:#d8eaff}
.et-header .caret{color:#fff;font-size:10px;margin-left:3px}
.et-header .nav-item-mega{position:static}
.et-header .mega-panel{
  top:100%;
  width:min(1120px,calc(100vw - 60px));
  border:1px solid #cbd6e0;
  border-radius:0 0 8px 8px;
  box-shadow:0 18px 42px rgba(2,31,68,.25);
}
.et-header .mega-panel a{color:var(--link)}
.et-header .mega-panel .mega-category.active{background:#076cc1;color:#fff}

.header-actions{order:3;display:flex;align-items:center;gap:14px;margin-left:auto}
.header-search{
  position:relative;
  width:42px;
  height:42px;
  display:flex;
  justify-content:flex-end;
  border:1px solid transparent;
  border-radius:5px;
  transition:width .22s ease,background .22s ease,border-color .22s ease;
  overflow:hidden;
}
.header-search.is-open{width:250px;background:#fff;border-color:rgba(255,255,255,.75)}
.header-search input{
  width:0;
  min-width:0;
  opacity:0;
  border:0;
  outline:0;
  padding:0;
  color:#203244;
  background:transparent;
  transition:width .22s ease,opacity .16s ease,padding .22s ease;
}
.header-search.is-open input{width:205px;opacity:1;padding:0 8px 0 12px}
.header-search-button{
  flex:0 0 42px;
  width:42px;
  height:42px;
  padding:9px;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
}
.header-search.is-open .header-search-button{color:var(--sample-navy)}
.header-search-button svg,.header-cart svg{width:24px;height:24px;display:block}
.header-cart{position:relative;color:#fff;width:42px;height:42px;display:flex;align-items:center;justify-content:center}
.header-cart:hover{color:#d8eaff;text-decoration:none}
.cart-count{position:absolute;right:-3px;top:1px;min-width:19px;height:19px;padding:0 5px;border-radius:10px;background:#fff;color:var(--sample-navy);font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center}
.et-header .mobile-menu-toggle{order:4;border-color:rgba(255,255,255,.45);background:transparent}
.et-header .mobile-menu-toggle span{background:#fff}

/* Wide product area; detailed content below is kept at the original width. */
.product-page{max-width:1430px;padding:0 16px 48px}
.product-page>.breadcrumb{margin:12px 0 14px;font-size:12px;color:#222}
.product-page>.breadcrumb a{color:#073b79}
.product-page>.breadcrumb span{margin:0 8px;color:#5d6874}
.product-content{max-width:1220px;margin-left:auto;margin-right:auto}

.product-showcase{margin:0 0 34px}
.product-showcase-grid{
  display:grid;
  grid-template-columns:minmax(390px,1.02fr) minmax(430px,1.18fr) minmax(285px,.70fr);
  gap:16px;
  align-items:start;
}
.product-preview-column,.product-quick-summary,.product-buy-panel{min-width:0}

/* Product preview: smaller main image and thumbnail rail. */
.sample-product-gallery{border:0;border-radius:3px;background:#fff;box-shadow:none;overflow:visible}
.sample-product-gallery .preview-stage{position:relative;min-height:0;height:auto;aspect-ratio:4/3;background:#eef2f7;border:1px solid #d1d8e1;border-radius:3px;overflow:hidden}
.sample-product-gallery .preview-main-button,
.sample-product-gallery .preview-slider-viewport,
.sample-product-gallery .preview-slider-track,
.sample-product-gallery .preview-slide,
.sample-product-gallery .preview-slide img{height:100%;min-height:0}
.sample-product-gallery .preview-main-button{display:block;width:100%;border:0;padding:0;background:#eef2f7;cursor:zoom-in}
.sample-product-gallery .preview-slider-viewport{display:block;overflow:hidden;width:100%}
.sample-product-gallery .preview-slider-track{display:flex;transition:transform .55s ease}
.sample-product-gallery .preview-slide{flex:0 0 100%;display:flex;align-items:center;justify-content:center}
.sample-product-gallery .preview-slide img{width:100%;object-fit:cover;padding:0;background:#eef2f7;display:block}
.sample-product-gallery .preview-nav{
  position:absolute;
  top:50%;
  z-index:5;
  width:34px;
  height:68px;
  margin-top:-34px;
  border:0;
  border-radius:0;
  background:rgba(0,35,76,.62);
  color:#fff;
  font-size:44px;
  line-height:1;
  opacity:.85;
  cursor:pointer;
}
.sample-product-gallery .preview-prev{left:0}
.sample-product-gallery .preview-next{right:0}
.sample-product-gallery .preview-nav:hover{background:rgba(0,52,111,.92)}
.sample-product-gallery .preview-counter{position:absolute;right:9px;bottom:8px;padding:4px 7px;border-radius:10px;background:rgba(0,35,76,.78);color:#fff;font-size:10px}
.sample-product-gallery .preview-strip{position:relative;padding:14px 10px 0;background:#fff;overflow:visible}
.sample-product-gallery .preview-thumbnails{display:flex;align-items:center;gap:12px;justify-content:center;overflow:hidden}
.sample-product-gallery .mini{width:82px;height:84px;flex:0 0 82px;padding:0;border:1px solid #aeb8c5;border-radius:2px;background:#fff;overflow:hidden;cursor:pointer}
.sample-product-gallery .mini img{width:100%;height:100%;object-fit:cover;display:block}
.sample-product-gallery .mini.active,.sample-product-gallery .mini[aria-selected="true"]{border:2px solid #0a4f99;box-shadow:none}
.sample-product-gallery .preview-strip-actions{height:0;overflow:hidden;margin:0;padding:0;opacity:0}
.sample-product-gallery .preview-progress{height:2px;margin-top:8px;background:#e9eef3;overflow:hidden}
.sample-product-gallery .preview-progress span{display:block;height:100%;background:#0b58a2;transform-origin:left center}

/* Middle quick-summary column. */
.product-quick-summary{padding:0 0 0 2px}
.product-quick-summary h1{margin:0 0 7px;color:#07316c;font-size:31px;line-height:1.02;letter-spacing:-.75px;font-weight:800}
.customer-rating{display:inline-flex;align-items:center;gap:9px;margin:0 0 16px;color:#222;font-size:13px;text-decoration:none}
.customer-rating:hover{text-decoration:none}
.rating-stars{color:#ffb400;font-size:20px;letter-spacing:1px;line-height:1}
.quick-intro{margin:0 0 17px;font-size:13px;line-height:1.36;color:#111}
.quick-benefits{list-style:none;margin:0 0 13px;padding:0;display:grid;gap:7px}
.quick-benefits li{position:relative;padding-left:24px;font-size:12.5px;line-height:1.3;color:#111}
.quick-benefits li::before{content:"✓";position:absolute;left:1px;top:1px;width:14px;height:14px;border-radius:50%;background:#159150;color:#fff;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:900}
.quick-benefits strong{font-weight:800}
.file-format-stats{display:flex;align-items:flex-end;gap:18px;flex-wrap:wrap;padding-top:4px}
.format-stat{display:flex;align-items:center;gap:8px;min-width:72px}
.format-icon{width:33px;height:39px;border-radius:3px;color:#fff;font-size:21px;font-weight:700;display:flex;align-items:center;justify-content:center;box-shadow:inset -4px 0 0 rgba(0,0,0,.10)}
.format-word{background:#1155b5}.format-excel{background:#138a48}.format-powerpoint{background:#f05a2a}
.format-folder{position:relative;width:42px;height:29px;margin-top:7px;border-radius:3px;background:#0b3f80;box-shadow:none}
.format-folder::before{content:"";position:absolute;left:3px;top:-7px;width:18px;height:8px;border-radius:3px 3px 0 0;background:#0b3f80}
.format-folder::after{content:"";position:absolute;inset:4px 4px 4px;background:rgba(255,255,255,.12);border-radius:2px}
.format-stat>span:last-child{display:flex;flex-direction:column;line-height:1}
.format-stat strong{font-size:17px;color:#092b60}
.format-stat small{margin-top:5px;font-size:10px;color:#111}

/* Right PayPal purchase card. */
.product-buy-panel{border:1px solid #cbd5e1;border-radius:5px;background:#fff;padding:13px 16px 10px;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.buy-price{text-align:center;color:#052f68;font-size:31px;line-height:1.1;font-weight:900;letter-spacing:.3px}
.buy-delivery{text-align:center;margin:7px 0 13px;color:#0a8b43;font-size:14px;font-weight:800}
.buy-facts{list-style:none;margin:0 0 14px;padding:0;display:grid;gap:10px}
.buy-facts li{display:grid;grid-template-columns:26px 1fr;align-items:center;gap:8px;color:#111;font-size:13px}
.fact-icon{position:relative;width:22px;height:22px;display:inline-block;color:#073b79}
.fact-folder{width:22px;height:15px;margin-top:4px;border-radius:2px;background:#073b79}
.fact-folder::before{content:"";position:absolute;left:2px;top:-5px;width:10px;height:6px;border-radius:2px 2px 0 0;background:#073b79}
.fact-file{width:15px;height:20px;margin-left:3px;border-radius:2px;background:#073b79}
.fact-file::before{content:"";position:absolute;right:2px;top:4px;width:7px;height:2px;background:#fff;box-shadow:0 4px 0 #fff,0 8px 0 #fff}
.fact-globe{border:2px solid #073b79;border-radius:50%}
.fact-globe::before{content:"";position:absolute;left:9px;top:1px;width:2px;height:16px;background:#073b79}
.fact-globe::after{content:"";position:absolute;left:2px;top:9px;width:16px;height:2px;background:#073b79}
.fact-cloud::before{content:"☁";position:absolute;left:0;top:-4px;font-size:24px;line-height:1;color:#073b79}
.fact-shield{width:18px;height:22px;margin-left:2px;background:#073b79;clip-path:polygon(50% 0,100% 18%,88% 72%,50% 100%,12% 72%,0 18%)}
.fact-shield::after{content:"✓";position:absolute;left:4px;top:3px;color:#fff;font-size:10px;font-weight:900}
.sample-paypal-button{width:100%;min-height:40px;border:0;border-radius:4px;background:linear-gradient(#ffc936,#ffb300);color:#111;display:flex;align-items:center;justify-content:center;gap:8px;font-size:15px;cursor:pointer;box-shadow:inset 0 1px 0 rgba(255,255,255,.5)}
.sample-paypal-button:hover{background:linear-gradient(#ffd45a,#ffb814)}
.paypal-wordmark{font-size:20px;font-weight:900;font-style:italic;letter-spacing:-1px}
.paypal-wordmark b{color:#053887}.paypal-wordmark i{color:#078bd0;font-style:italic}
.accepted-payments{display:flex;align-items:center;justify-content:center;gap:5px;margin:9px 0 12px}
.accepted-payments img{width:37px;height:24px;object-fit:contain;border:1px solid #d8dde3;background:#fff;padding:2px}
.money-back-box{display:grid;grid-template-columns:31px 1fr;gap:8px;align-items:center;border:1px solid #c9dfd0;border-radius:4px;background:#f4fbf6;padding:9px 10px;color:#087a3b}
.guarantee-shield{width:26px;height:30px;background:#0f934b;color:#fff;clip-path:polygon(50% 0,100% 18%,88% 72%,50% 100%,12% 72%,0 18%);display:flex;align-items:center;justify-content:center;font-weight:900}
.money-back-box strong{display:block;font-size:13px}.money-back-box small{display:block;margin-top:2px;color:#111;font-size:11px}

@media (max-width:1260px){
  .et-brand{min-width:330px!important}
  .et-header .main-nav{gap:22px}
  .product-showcase-grid{grid-template-columns:minmax(360px,.95fr) minmax(390px,1.08fr) minmax(270px,.72fr)}
  .product-quick-summary h1{font-size:28px}
  .file-format-stats{gap:12px}
}

@media (max-width:1020px){
  .et-header .nav-shell{min-height:62px;flex-wrap:wrap;padding-top:4px;padding-bottom:4px}
  .et-brand{min-width:0!important;flex:1}
  .logo-copy strong{font-size:16px}.logo-copy small{font-size:9px}
  .header-actions{margin-left:0}
  .et-header .mobile-menu-toggle{display:block}
  .et-header .main-nav{display:none;order:5;width:100%;flex-basis:100%;flex-direction:column;align-items:stretch;gap:0;padding:6px 0 12px}
  .et-header .main-nav.is-open{display:flex}
  .et-header .nav-link{padding:10px 8px;border-top:1px solid rgba(255,255,255,.12)}
  .et-header .mega-panel{position:static;transform:none;width:100%;max-height:70vh;overflow:auto;border-radius:5px}
  .et-header .nav-item-mega:hover .mega-panel{display:none}
  .et-header .nav-item-mega.mega-open .mega-panel{display:flex}
  .product-showcase-grid{grid-template-columns:1fr 1fr}
  .product-buy-panel{grid-column:1/-1;display:grid;grid-template-columns:1fr 1.2fr;column-gap:24px;align-items:start}
  .product-buy-panel .buy-price,.product-buy-panel .buy-delivery{grid-column:1}
  .product-buy-panel .buy-facts{grid-column:1;grid-row:3/7}
  .product-buy-panel .toolkit-buy-form,.product-buy-panel .accepted-payments,.product-buy-panel .money-back-box{grid-column:2}
}

@media (max-width:760px){
  .logo-divider{display:none}.logo-emblem{width:30px}.logo-copy strong{font-size:14px}.logo-copy small{font-size:8px}
  .header-search.is-open{position:absolute;left:12px;right:12px;top:8px;width:auto;z-index:10}
  .header-cart{display:none}
  .product-page{padding-left:12px;padding-right:12px}
  .product-page>.breadcrumb{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
  .product-showcase-grid{grid-template-columns:1fr;gap:22px}
  .product-quick-summary h1{font-size:29px}
  .sample-product-gallery .mini{width:64px;height:66px;flex-basis:64px}
  .sample-product-gallery .preview-thumbnails{gap:7px;justify-content:flex-start;overflow-x:auto;padding-bottom:3px}
  .product-buy-panel{grid-column:auto;display:block;padding:18px}
  .file-format-stats{gap:15px}
}

/* ========================================================================
   Product header V3 fixes
   - Search panel opens below the search icon without changing header width.
   - Cart icon removed from the HTML.
   - Preview navigation moved below the main image.
   - Purchase facts use consistent inline SVG icons.
   ======================================================================== */

.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;
}

/* Search dropdown: the 42px icon never changes width, so the page cannot
   grow horizontally when the search field is opened. */
.et-header .header-actions{
  position:relative;
  flex:0 0 auto;
  margin-left:auto;
}

.et-header .header-search,
.et-header .header-search.is-open{
  position:relative;
  width:42px;
  min-width:42px;
  height:42px;
  flex:0 0 42px;
  overflow:visible;
  border:0;
  border-radius:0;
  background:transparent;
  transition:none;
}

.et-header .header-search-button{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  color:#fff;
}

.et-header .header-search.is-open .header-search-button{
  color:#d8eaff;
  background:rgba(255,255,255,.08);
  border-radius:4px;
}

.header-search-panel{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:2300;
  width:min(310px,calc(100vw - 24px));
  height:48px;
  display:flex;
  align-items:center;
  overflow:visible;
  border:1px solid #c7d2df;
  border-radius:6px;
  background:#fff;
  box-shadow:0 12px 30px rgba(2,31,68,.22);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(-7px);
  transition:opacity .16s ease,transform .16s ease,visibility .16s ease;
}

.header-search-panel::before{
  content:"";
  position:absolute;
  right:14px;
  top:-7px;
  width:12px;
  height:12px;
  border-left:1px solid #c7d2df;
  border-top:1px solid #c7d2df;
  background:#fff;
  transform:rotate(45deg);
}

.header-search.is-open .header-search-panel{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0);
}

.et-header .header-search .header-search-panel input,
.et-header .header-search.is-open .header-search-panel input{
  position:relative;
  z-index:1;
  width:auto;
  min-width:0;
  height:46px;
  flex:1 1 auto;
  opacity:1;
  padding:0 12px;
  border:0;
  outline:0;
  background:#fff;
  color:#203244;
  font-size:14px;
  transition:none;
}

.header-search-submit{
  position:relative;
  z-index:1;
  width:48px;
  height:46px;
  flex:0 0 48px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:0;
  border-left:1px solid #d9e1e9;
  background:#f4f7fa;
  color:var(--sample-navy);
  cursor:pointer;
}

.header-search-submit:hover,
.header-search-submit:focus-visible{
  background:#e8f0f7;
}

.header-search-submit svg{
  width:21px;
  height:21px;
}

/* Main image remains clean; previous/next controls sit beside the thumbnails. */
.sample-product-gallery .preview-stage .preview-nav,
.sample-product-gallery .preview-counter{
  display:none!important;
}

.sample-product-gallery .preview-strip{
  position:relative;
  display:grid;
  grid-template-columns:34px minmax(0,1fr) 34px;
  align-items:center;
  gap:8px;
  min-height:0;
  padding:14px 0 10px;
  background:#fff;
  color:var(--sample-navy);
  overflow:visible;
}

.sample-product-gallery .preview-strip .preview-nav{
  position:static;
  inset:auto;
  z-index:2;
  width:34px;
  height:72px;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:3px;
  background:transparent;
  color:#173b6d;
  font-size:0;
  line-height:1;
  opacity:1;
  cursor:pointer;
  transition:background .16s ease,color .16s ease;
}

.sample-product-gallery .preview-strip .preview-nav:hover,
.sample-product-gallery .preview-strip .preview-nav:focus-visible{
  background:#edf3f8;
  color:#0758a3;
}

.sample-product-gallery .preview-strip .preview-nav:focus-visible{
  outline:2px solid rgba(7,88,163,.35);
  outline-offset:1px;
}

.sample-product-gallery .preview-strip .preview-nav svg{
  width:24px;
  height:24px;
  display:block;
}

.sample-product-gallery .preview-thumbnails{
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:2px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.sample-product-gallery .preview-thumbnails::-webkit-scrollbar{
  display:none;
}

.sample-product-gallery .mini{
  width:64px;
  height:72px;
  flex:0 0 64px;
  border:1px solid #aeb8c5;
  border-radius:2px;
  opacity:1;
  transform:none;
}

.sample-product-gallery .mini:hover{
  opacity:1;
  transform:none;
  border-color:#4f7197;
}

.sample-product-gallery .mini.active,
.sample-product-gallery .mini[aria-selected="true"]{
  border:2px solid #0a4f99;
  box-shadow:0 0 0 1px rgba(10,79,153,.10);
}

.sample-product-gallery .preview-progress{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  grid-column:1/-1;
  height:2px;
  margin:0;
  background:#e9eef3;
  overflow:hidden;
}

/* Unified purchase-panel icon set. */
.buy-facts{
  gap:9px;
}

.buy-facts li{
  grid-template-columns:28px minmax(0,1fr);
  gap:8px;
}

.buy-facts .fact-icon{
  position:relative;
  width:24px;
  height:24px;
  margin:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:0;
  background:none;
  color:#073b79;
  clip-path:none;
}

.buy-facts .fact-icon::before,
.buy-facts .fact-icon::after{
  content:none!important;
  display:none!important;
}

.buy-facts .fact-icon svg{
  width:24px;
  height:24px;
  display:block;
  overflow:visible;
}

@media (max-width:1020px){
  .et-header .header-actions{
    margin-left:0;
  }
}

@media (max-width:760px){
  .et-header .header-search,
  .et-header .header-search.is-open{
    position:relative;
    inset:auto;
    width:42px;
    min-width:42px;
  }

  .header-search-panel{
    position:fixed;
    top:70px;
    right:12px;
    left:12px;
    width:auto;
  }

  .header-search-panel::before{
    display:none;
  }

  .sample-product-gallery .preview-strip{
    grid-template-columns:30px minmax(0,1fr) 30px;
    gap:5px;
  }

  .sample-product-gallery .preview-strip .preview-nav{
    width:30px;
    height:66px;
  }

  .sample-product-gallery .mini{
    width:58px;
    height:64px;
    flex-basis:58px;
  }
}

/* ========================================================================
   Product Preview V4 — center Previous/Next controls in thumbnail row
   This final override intentionally appears at the end of the stylesheet so
   it takes precedence over the earlier shared .preview-nav declarations.
   ======================================================================== */

.sample-product-gallery .preview-strip{
  position:relative;
  display:grid;
  grid-template-columns:34px minmax(0,1fr) 34px;
  align-items:center;
  justify-items:stretch;
  column-gap:8px;
  width:100%;
  min-width:0;
  min-height:0;
  padding:14px 0 10px;
  background:#fff;
  color:#173b6d;
  overflow:visible;
}

.sample-product-gallery .preview-strip .preview-nav{
  position:static!important;
  inset:auto!important;
  top:auto!important;
  right:auto!important;
  bottom:auto!important;
  left:auto!important;
  transform:none!important;

  align-self:center;
  justify-self:center;

  width:34px;
  height:40px;
  min-width:34px;
  min-height:40px;
  margin:0;
  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  border:0;
  border-radius:3px;
  background:transparent;
  color:#173b6d;
  opacity:1;
  cursor:pointer;
  line-height:1;
  font-size:0;

  transition:background-color .16s ease,color .16s ease;
}

.sample-product-gallery .preview-strip .preview-nav:hover,
.sample-product-gallery .preview-strip .preview-nav:focus-visible{
  background:#edf3f8;
  color:#0758a3;
}

.sample-product-gallery .preview-strip .preview-nav:focus-visible{
  outline:2px solid rgba(7,88,163,.35);
  outline-offset:1px;
}

.sample-product-gallery .preview-strip .preview-nav svg{
  display:block;
  width:22px;
  height:22px;
  pointer-events:none;
}

.sample-product-gallery .preview-thumbnails{
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:2px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.sample-product-gallery .preview-thumbnails::-webkit-scrollbar{
  display:none;
}

.sample-product-gallery .mini{
  align-self:center;
}

@media (max-width:760px){
  .sample-product-gallery .preview-strip{
    grid-template-columns:30px minmax(0,1fr) 30px;
    column-gap:5px;
  }

  .sample-product-gallery .preview-strip .preview-nav{
    width:30px;
    height:36px;
    min-width:30px;
    min-height:36px;
  }

  .sample-product-gallery .preview-strip .preview-nav svg{
    width:20px;
    height:20px;
  }
}

/* ==========================================================
   Enterprise Toolkits Homepage Footer
   ========================================================== */

.home-footer{
  margin-top:0;
  padding:0;
  border-top:0;
  background:linear-gradient(110deg,#062f66 0%,#032858 100%);
  color:#fff;
}

.home-footer .container{
  max-width:1430px;
}

.home-footer-main{
  display:grid;
  grid-template-columns:minmax(250px,1.35fr) repeat(3,minmax(130px,.78fr)) minmax(250px,1.15fr);
  gap:44px;
  padding-top:32px;
  padding-bottom:28px;
}

.home-footer-brand{
  min-width:0;
}

.home-footer-logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
}

.home-footer-logo:hover{
  color:#fff;
  text-decoration:none;
}

.home-footer-logo .logo-emblem{
  width:31px;
  flex:0 0 31px;
}

.home-footer-logo-copy{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.home-footer-logo-copy strong{
  color:#fff;
  font-size:15px;
  line-height:1.1;
  letter-spacing:.1px;
  white-space:nowrap;
}

.home-footer-logo-copy small{
  margin-top:4px;
  color:#fff;
  font-size:8px;
  line-height:1.15;
  letter-spacing:.2px;
  white-space:nowrap;
}

.home-footer-description{
  max-width:245px;
  margin:17px 0 18px;
  color:#fff;
  font-size:12px;
  line-height:1.55;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:17px;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:0;
  color:#fff;
  font-size:17px;
  font-weight:700;
  line-height:1;
  text-decoration:none;
}

.footer-social a:hover{
  color:#ffc000;
  text-decoration:none;
}

.home-footer-column h4{
  margin:0 0 13px;
  color:#fff;
  font-size:14px;
  line-height:1.2;
  font-weight:800;
  text-transform:none;
}

.home-footer-column nav{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.home-footer-column nav a{
  display:inline-block;
  width:max-content;
  max-width:100%;
  margin:0;
  color:#fff;
  font-size:12px;
  line-height:1.35;
  text-decoration:none;
}

.home-footer-column nav a:hover{
  color:#ffc000;
  text-decoration:underline;
}

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

.footer-contact-list li{
  display:grid;
  grid-template-columns:18px minmax(0,1fr);
  gap:8px;
  align-items:start;
  margin:0 0 10px;
  color:#fff;
  font-size:12px;
  line-height:1.35;
}

.footer-contact-list li:last-child{
  margin-bottom:0;
}

.footer-contact-icon{
  width:18px;
  height:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.footer-contact-list a{
  display:inline;
  margin:0;
  color:#fff;
  font-size:12px;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.footer-contact-list a:hover{
  color:#ffc000;
}

.home-footer-bottom{
  min-height:60px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:32px;
  align-items:center;
  padding-top:15px;
  padding-bottom:15px;
  border-top:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:11px;
}

.home-footer-copyright{
  color:#fff;
}

.home-footer-legal{
  display:flex;
  align-items:center;
  gap:27px;
}

.home-footer-legal a{
  display:inline;
  margin:0;
  color:#fff;
  font-size:11px;
  text-decoration:none;
}

.home-footer-legal a:hover{
  color:#ffc000;
  text-decoration:underline;
}

.home-footer-payments{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
}

.payment-badge{
  min-width:42px;
  height:22px;
  padding:0 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:3px;
  background:#fff;
  color:#073763;
  font-size:10px;
  line-height:1;
  font-weight:900;
}

.payment-visa{
  color:#17357b;
  font-style:italic;
}

.payment-mastercard{
  position:relative;
  min-width:42px;
  gap:0;
}

.mastercard-circle{
  width:14px;
  height:14px;
  display:block;
  border-radius:50%;
}

.mastercard-red{
  margin-right:-4px;
  background:#e41b23;
}

.mastercard-yellow{
  background:#f6a800;
}

.payment-amex{
  color:#1471a9;
  font-size:9px;
}

.payment-paypal{
  color:#005ea6;
  font-style:italic;
}

@media(max-width:1100px){
  .home-footer-main{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .home-footer-brand{
    grid-column:1 / -1;
  }

  .home-footer-description{
    max-width:520px;
  }

  .home-footer-bottom{
    grid-template-columns:1fr auto;
  }

  .home-footer-payments{
    grid-column:1 / -1;
    justify-content:flex-start;
  }
}

@media(max-width:720px){
  .home-footer-main{
    grid-template-columns:1fr 1fr;
    gap:30px 22px;
    padding-top:28px;
  }

  .home-footer-brand,
  .home-footer-contact{
    grid-column:1 / -1;
  }

  .home-footer-description{
    max-width:100%;
  }

  .home-footer-bottom{
    grid-template-columns:1fr;
    gap:14px;
  }

  .home-footer-legal{
    gap:20px;
    flex-wrap:wrap;
  }

  .home-footer-payments{
    grid-column:auto;
  }
}

@media(max-width:480px){
  .home-footer-main{
    grid-template-columns:1fr;
  }

  .home-footer-brand,
  .home-footer-contact{
    grid-column:auto;
  }

  .home-footer-logo-copy strong{
    font-size:14px;
  }

  .home-footer-logo-copy small{
    white-space:normal;
  }
}

.home-container{width:min(1430px,100%);margin:0 auto;padding:0 24px}
.home-hero{position:relative;padding:30px 0 10px;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);overflow:hidden}
.home-hero::after{content:"";position:absolute;right:-10%;top:-30%;width:760px;height:760px;border-radius:50%;background:radial-gradient(circle,rgba(47,128,210,.10),rgba(47,128,210,0) 68%);pointer-events:none}
.home-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);gap:46px;align-items:center}
.home-hero-copy h1{max-width:650px;margin:0 0 16px;color:#062f66;font-size:46px;line-height:1.08;letter-spacing:-1.8px}
.home-hero-copy>p{max-width:660px;margin:0 0 20px;color:#41546a;font-size:18px;line-height:1.58}
.home-hero .hero-search{max-width:620px;height:50px;border-radius:5px;overflow:hidden;box-shadow:0 4px 16px rgba(5,54,112,.07)}
.home-hero .hero-search input{font-size:15px}
.home-hero .hero-search-submit{width:62px;padding:0;background:#063a7a;font-size:0}
.home-hero .hero-search-submit svg{width:24px;height:24px}
.home-actions{display:flex;gap:14px;flex-wrap:wrap;margin:16px 0 21px}
.home-primary-button,.home-secondary-button{min-width:120px;min-height:40px;padding:0 12px;border-radius:5px;display:inline-flex;align-items:center;justify-content:center;gap:12px;font-weight:800;text-decoration:none}
.home-primary-button{background:linear-gradient(#ffc733,#ffb400);color:#101820;border:1px solid #edae00}
.home-secondary-button{background:#fff;color:#073b79;border:1px solid #073b79}
.home-primary-button:hover,.home-secondary-button:hover{text-decoration:none;transform:translateY(-1px)}
.home-stat-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;max-width:690px}
.home-stat{display:flex;align-items:center;gap:9px;min-width:0}
.home-stat svg{width:27px;height:27px;flex:0 0 27px;color:#073b79}
.home-stat strong{display:block;color:#062f66;font-size:14px;line-height:1.1}
.home-stat span{display:block;color:#68778a;font-size:10px;line-height:1.3;margin-top:3px}
.home-hero-visual{position:relative;min-width:0}
.home-hero-visual img{display:block;width:100%;border-radius:10px;filter:drop-shadow(0 18px 28px rgba(11,51,95,.16))}
.home-trust-wrap{padding:0 0 18px;background:#f8fbff}
.home-trust-strip{display:grid;grid-template-columns:repeat(5,1fr);border:1px solid #dfe7ef;border-radius:8px;background:#fff;box-shadow:0 8px 24px rgba(6,47,102,.06);overflow:hidden}
.home-trust-item{min-height:80px;padding:15px 18px;display:flex;align-items:center;gap:13px;border-right:1px solid #e7edf3}
.home-trust-item:last-child{border-right:0}
.home-trust-item>svg{width:38px;height:38px;flex:0 0 38px;color:#073b79}
.home-trust-item strong{display:block;color:#062f66;font-size:13px;line-height:1.2}
.home-trust-item small{display:block;margin-top:4px;color:#617184;font-size:10px;line-height:1.35}
.home-format-mini{display:flex;align-items:center;gap:5px;flex:0 0 auto}
.home-format-mini .format-icon{width:22px;height:26px;font-size:13px;border-radius:2px}
.home-section{padding:18px 0 8px}
.home-section-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:0 0 14px}
.home-section-head h2{margin:0;color:#062f66;font-size:25px;line-height:1.2}
.home-section-head a{color:#073b79;font-size:12px;font-weight:700}
.home-department-grid{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:12px}
.home-department-card{min-width:0;display:flex;flex-direction:column;border:1px solid #dfe6ed;border-radius:6px;background:#fff;overflow:hidden;box-shadow:0 4px 14px rgba(11,52,98,.04)}
.home-department-image{display:block;aspect-ratio:1.65/1;overflow:hidden;background:#edf3f8}
.home-department-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s ease}
.home-department-card:hover .home-department-image img{transform:scale(1.035)}
.home-department-body{display:flex;flex-direction:column;flex:1;padding:11px 10px 12px}
.home-department-body h3{margin:0 0 7px;font-size:12px;line-height:1.25;color:#062f66}
.home-department-body h3 a{color:inherit}
.home-department-body p{margin:0 0 10px;color:#536376;font-size:10px;line-height:1.42}
.home-text-link{margin-top:auto;color:#073b79;font-size:10px;font-weight:800}
.home-product-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:15px}
.home-product-card{padding:6px;border:1px solid #dfe6ed;border-radius:6px;background:#fff;box-shadow:0 4px 16px rgba(11,52,98,.05)}
.home-product-card .thumb{margin-bottom:9px;border:0;border-radius:4px;aspect-ratio:1.65/1}
.home-product-card h3{font-size:12px;line-height:1.22;min-height:44px;margin:0 2px 5px;color:#062f66}
.home-product-card .meta{font-size:10px;margin:0 2px}
.home-rating{margin:7px 2px 4px;color:#ffae00;font-size:12px;letter-spacing:.4px}
.home-rating span{color:#627286;font-size:9px;letter-spacing:0}
.home-product-bottom{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:8px}
.home-product-card .price{margin:6px 2px 4px;font-size:13px;font-weight:800;color:#101820}
.home-view-button{min-width:48px;padding:7px 9px;border-radius:4px;background:#073b79;color:#fff;text-align:center;font-size:10px;font-weight:800}
.home-view-button:hover{background:#005ca8;color:#fff;text-decoration:none}
/* Why Enterprise Toolkits */
.home-why-grid{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.home-why-card{
  min-width:0;
  min-height:100px;
  height:100%;
  padding:26px 18px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  border:1px solid #dbe4ed;
  border-radius:9px;
  background:#fff;
  box-shadow:0 3px 12px rgba(11,52,98,.05);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.home-why-card:hover{
  transform:translateY(-3px);
  border-color:#b9cee2;
  box-shadow:0 10px 24px rgba(11,52,98,.10);
}
.home-why-card svg{
  display:block;
  width:42px;
  height:42px;
  flex:0 0 42px;
  margin:0 auto 18px;
  color:#073b79;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.home-why-card strong{
  display:block;
  width:100%;
  margin:0 0 10px;
  color:#062f66;
  font-size:16px;
  line-height:1.3;
  font-weight:800;
  text-align:center;
}
.home-why-card p{
  width:100%;
  margin:0;
  color:#536376;
  font-size:13px;
  line-height:1.55;
  text-align:center;
}
.home-reviews-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.home-review{display:grid;grid-template-columns:62px 1fr;gap:14px;padding:18px;border:1px solid #dfe6ed;border-radius:7px;background:#fff}
.home-review img{width:62px;height:62px;border-radius:50%;object-fit:cover}
.home-review-stars{color:#ffad00;font-size:15px;letter-spacing:1px}
.home-review blockquote{margin:6px 0 8px;color:#2f4053;font-size:11px;line-height:1.5}
.home-review strong{display:block;color:#062f66;font-size:11px}
.home-review small{color:#657588;font-size:9px}
.home-functions{display:grid;grid-template-columns:repeat(10,minmax(0,1fr));border:1px solid #e0e7ee;border-radius:7px;background:#fff;overflow:hidden}
.home-function{min-height:68px;padding:11px 8px;display:flex;align-items:center;justify-content:center;gap:8px;border-right:1px solid #e8edf2;color:#073b79;text-align:left;font-size:9px;font-weight:800;line-height:1.25}
.home-function:last-child{border-right:0}
.home-function svg{width:25px;height:25px;flex:0 0 25px}
.home-faq{padding-top:24px}
.home-faq .product-faq-section{margin:0}
.home-faq .product-faq-title{font-size:25px;color:#062f66}
.home-faq .product-faq-accordion{border-radius:6px;overflow:hidden}
.home-cta{margin:22px 0 10px;min-height:120px;padding:20px 34px;display:grid;grid-template-columns:210px 1fr auto;gap:30px;align-items:center;border-radius:8px;background:linear-gradient(90deg,#052d63,#073f86);color:#fff;overflow:hidden}
.home-cta img{width:210px;height:100px;object-fit:cover;border-radius:6px}
.home-cta h2{margin:0 0 6px;color:#fff;font-size:25px}
.home-cta p{margin:0;color:#d9e8f8;font-size:13px;line-height:1.5}
.home-cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.home-cta .home-secondary-button{border-color:#fff;color:#fff;background:transparent}
.home-footer-brand .et-brand{min-width:0!important;margin-bottom:13px;gap:8px}
.home-footer-brand .logo-emblem{width:28px}
.home-footer-brand .logo-emblem i{height:5px}
.home-footer-brand .logo-divider{height:28px}
.home-footer-brand .logo-copy strong{font-size:14px}
.home-footer-brand .logo-copy small{font-size:8px}
.home-footer-brand p{max-width:220px;color:#d9e8f8;font-size:12px;line-height:1.5}
.footer-social{display:flex;gap:12px;margin-top:14px}
.footer-social a{display:inline-flex;margin:0;color:#fff;font-weight:800}
@media(max-width:1260px){
  .home-hero-grid{grid-template-columns:.95fr 1.05fr;gap:26px}.home-hero-copy h1{font-size:41px}
  .home-department-grid{grid-template-columns:repeat(4,1fr)}.home-product-grid{grid-template-columns:repeat(3,1fr)}
  .home-why-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.home-why-card{min-height:200px}.home-functions{grid-template-columns:repeat(5,1fr)}
  .home-function:nth-child(5){border-right:0}.home-function:nth-child(-n+5){border-bottom:1px solid #e8edf2}
}
@media(max-width:900px){
  .home-hero{padding-top:32px}.home-hero-grid{grid-template-columns:1fr}

/* Homepage Hero Image */
.home-hero-visual{
  width:100%;
  max-width:760px;
  height:auto;
  min-height:0;
  margin:0 auto;
  overflow:hidden;
  border-radius:12px;
}

.home-hero-visual img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto !important;
  min-height:0 !important;
  max-height:none !important;

  /* Giữ đúng tỷ lệ ảnh 1048 x 636 */
  aspect-ratio:1048 / 636;
  object-fit:contain;
  object-position:center;
  border-radius:12px;
}
@media(max-width:720px){

  .home-hero-visual{
    width:100%;
    max-width:none;
    height:auto !important;
    min-height:0 !important;
    margin:18px auto 0;
    border-radius:10px;
  }

  .home-hero-visual img{
    width:100%;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    aspect-ratio:1048 / 636;
    object-fit:contain;
    object-position:center;
    border-radius:10px;
  }

}

  .home-trust-strip{grid-template-columns:repeat(2,1fr)}.home-trust-item{border-bottom:1px solid #e7edf3}.home-trust-item:nth-child(2n){border-right:0}.home-trust-item:last-child{grid-column:1/-1;border-bottom:0}
  .home-reviews-grid{grid-template-columns:1fr}.home-cta{grid-template-columns:150px 1fr}.home-cta img{width:150px}.home-cta-actions{grid-column:1/-1;justify-content:center}
}
@media(max-width:720px){
  .home-container{padding:0 15px}.home-hero-copy h1{font-size:34px;letter-spacing:-1px}.home-hero-copy>p{font-size:16px}
  .home-stat-row{grid-template-columns:repeat(2,1fr)}.home-department-grid,.home-product-grid,.home-why-grid{grid-template-columns:1fr 1fr}.home-why-grid{gap:14px}.home-why-card{min-height:190px;padding:22px 16px 20px}.home-why-card svg{width:38px;height:38px;flex-basis:38px;margin-bottom:15px}.home-why-card strong{font-size:15px}.home-why-card p{font-size:12px}
  .home-section-head{align-items:flex-start}.home-section-head h2{font-size:22px}.home-functions{grid-template-columns:repeat(2,1fr)}
  .home-function{border-bottom:1px solid #e8edf2}.home-function:nth-child(odd){border-right:1px solid #e8edf2}.home-function:nth-child(even){border-right:0}.home-function:last-child{border-bottom:0}
  .home-cta{grid-template-columns:1fr;text-align:center;padding:22px}.home-cta img{width:100%;height:130px}.home-cta-actions{grid-column:auto;justify-content:center}
}
@media(max-width:460px){
  .home-actions{display:grid}.home-primary-button,.home-secondary-button{width:100%}.home-department-grid,.home-product-grid,.home-why-grid{grid-template-columns:1fr}.home-why-card{min-height:0;padding:24px 20px}.home-why-card strong{font-size:16px}.home-why-card p{max-width:320px;font-size:13px}
  .home-trust-strip{grid-template-columns:1fr}.home-trust-item{border-right:0}.home-trust-item:last-child{grid-column:auto}.home-review{grid-template-columns:48px 1fr}.home-review img{width:48px;height:48px}
}

/* ========================================================================
   DESKTOP HEADER PANEL ALIGNMENT FIX

   Purpose:
   - Keep the existing dropdown-menu styling, dimensions and hover rules.
   - Make the desktop navigation occupy the complete header height.
   - Keep all navigation labels vertically centered.
   - Align both standard dropdown panels and the Toolkits mega panel with the
     bottom edge of the header.
   - Remove the hover gap that previously closed the Toolkits mega panel.

   Mobile navigation at 1020px and below is not affected.
   ======================================================================== */
@media (min-width:1021px){
  .et-header .main-nav{
    align-self:stretch;
    align-items:stretch;
  }

  .et-header .main-nav > .nav-item,
  .et-header .main-nav > .nav-link{
    align-self:stretch;
  }

  .et-header .main-nav > .nav-item{
    display:flex;
    align-items:stretch;
  }

  .et-header .main-nav > .nav-item > .nav-link,
  .et-header .main-nav > .nav-link{
    display:inline-flex;
    align-items:center;
  }

  /* Keep a 1px overlap with the header edge to avoid a sub-pixel hover seam. */
  .et-header .mega-panel{
    top:calc(100% - 1px);
  }
}
