/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

:root{
  --navy: #0B1D3A;
  --navy-mid: #122B52;
  --navy-dark: #08152B;
  --navy-deep: #050D1F;
  --teal: #0EA5A9;
  --teal-dark: #047C82;
  --teal-darker: #0F766E;
  --teal-light: #5EEAD4;
  --teal-tint: #F0FDFA;
  --orange: #F97316;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --fd: 'Plus Jakarta Sans', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --fm: 'JetBrains Mono',monospace;
 
  --jde: #336699;
  --jde-d: #1E4D7B;
  --jde-l: #60A5FA;
  --jde-t: #EFF6FF;
  
  --ns: #047857;
  --ns-d: #065F46;
  --ns-l: #34D399;
  --ns-t: #ECFDF5;
  
  --hs: #C2410C;
  --hs-d: #9A3412;
  --hs-l: #F97316;
  --hs-t: #FFF7ED;
  
  --ai: #BE123C;
  --ai-d: #9F1239;
  --ai-l: #FB7185;
  --ai-t: #FFF1F2;
  
  --its: #7C3AED;
  --its-d: #5B21B6;
  --its-l: #A78BFA;
  --its-t: #F5F3FF;
  --its-tm: #EDE9FE;
  --its-b: #DDD6FE;
}


html {
  scroll-behavior: smooth;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body{
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-500);
  background: var(--white);
  overflow-wrap: break-word;
}

.scrolled .body-wrapper {
  padding-top: 64px;
}

.body-wrapper {
  position: relative;
}

/* Paragraphs */
p {
  margin: 0 0 16px;
}
p:last-child {
  margin: 0;
}

/* ═══ Anchors ═══ */
a {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
}

/* ═══ Headings ═══ */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--fd);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 12px;
  line-height: 1.1;
  display: block;
}

h1, .h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem); /* 48px */
}
h2, .h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); /* 40px */
}
h3, .h3 {
  font-size: clamp(1.4rem, 2.8vw, 2.25rem); /* 36px */
}
h4, .h4 {
  font-size: clamp(1.4rem, 2.6vw, 2rem); /* 32px */
}
h5, .h5 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem); /* 24px */
}
h6, .h6 {
  font-size: clamp(1rem, 2vw, 1.25rem); /* 20px */
}

/* ═══ Lists ═══ */
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* ═══ Code Blocks ═══ */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* ═══ Blockquotes ═══ */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* ═══ Horizontal Rules ═══ */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* ═══ Image ═══ */
img {
  display: block;
  max-width: 100%;
}

/* ═══ container ═══ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.dnd-section > .row-fluid {
  max-width: 1280px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 24px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}

@media(max-width: 991px) {
  .dnd-section > .row-fluid {
    padding: 0 24px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
}
/* ═══ Buttons ═══ */
button, .button, .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled, .button:disabled, .hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* Button Holder */
.ctas {
  display: flex;
  gap: 14px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

/* default Button */
.cta-button {
  background: var(--orange);
  border: 1px solid transparent;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
}

/* primary Button */
.btn-primary {
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

/* ghost Button */
.btn-secondary {
  background: var(--teal);
  color: var(--white);
}

/* ghost Button */
.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

/* ghost Button */
/* .btn-ghost {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--gray-200);
  backdrop-filter: blur(8px);
} */

/* white Button */
.btn-white {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-50);
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,29,58,.06);
}
/* Fields */

.hs-form-field {
  margin-bottom: 14px;
}

/* Labels */
form label {
  display: block;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 11px;
}

/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%;
  outline: none;
  box-shadow: none;
  width: 100% !important;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
}

form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--teal-darker);
}

form select {
  appearance: none !important;
  background-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

form textarea {
  min-height: 80px;
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0 0 0.35rem;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form .inputs-list.hs-error-msgs > li {
  margin: 0.35rem 0;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.6rem;
  width: 20px !important;
  height: 20px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 11px;
  color: var(--gray-500);
  margin: 0 0 0.7rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  font-size: 10px;
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {  
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
form input[type=submit]:hover, 
form .hs-button:hover { 
  transform: translateY(-2px);
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
/* ═══ ANIMATIONS ═══ */
@keyframes breathe {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.ao {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ao.v {
  opacity: 1;
  transform: translateY(0);
}
/* ═══ Section Header ═══ */
.section-header {
  margin-bottom: 40px;
}
.section-header .title {
  display: block;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header h2 em {
  color: var(--teal-dark);
  font-style: normal;
}
.section-header .text {
  font-size: 17px;
  max-width: 720px;
  line-height: 1.7;
}
/* ═══ Badge ═══ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,169,0.08);
  border: 1px solid rgba(14,165,169,0.08);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  animation: fadeIn 0.6s ease 0.3s both;
  backdrop-filter: blur(8px);
}
.badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}
.badge.dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.badge.dark .dot {
  background: var(--teal);
}


/* ═══ Pill ═══ */
.pill {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 3px;
}
.pill-jde {
  background: var(--jde-t);
  color: var(--jde);
}
.pill-ns {
  background: var(--ns-t);
  color: var(--ns);
}
.pill-hs {
  background: var(--hs-t);
  color: var(--hs);
}
.pill-ai {
  background: var(--ai-t);
  color: var(--ai);
}
.pill-its {
  background: var(--its-t);
  color: var(--its);
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* ═══ HEADER ═══ */
.nav-opener {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: var(--orange);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  border-radius: 6px;
}
@media(min-width: 992px) {
  .nav-opener {
    display: none;
  }
}
.nav-opener:after,
.nav-opener:before,
.nav-opener span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  height: 2px;
  transition: all 0.3s ease;
  width: 25px;
}
.nav-opener span {
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav-opener:after,
.nav-opener:before {
  content: '';
}
.nav-opener:after {
  bottom: 28px;
}
.nav-opener:before {
  top: 28px;
}
.menu-active .nav-opener:before {
  transform: rotate(45deg) translate(-13px, 4px);
}
.menu-active .nav-opener:after {
  transform: rotate(-45deg) translate(-13px, -4px);
}
.menu-active .nav-opener span {
  opacity: 0;
  visibility: hidden;
}

.nav-drop {
  position: relative;
}
@media (max-width: 991px) {
  .nav-drop {
    overflow: hidden;
    transition: all 0.4s ease;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 100;
    max-height: 0;
  }
  .menu-active .nav-drop {
    max-height: 4000px;
  }
}

.nav-area {
  position: relative;
}
@media (max-width: 991px) {
  .nav-area {
    transition: all 0.4s ease;
    transform: translateY(-100%);
  }
  .menu-active .nav-area {
    transform: none;
  }
}

.nav-holder {
  position: relative;
}
@media (max-width: 991px) {
  .nav-holder {
    display: block;
    background: #fff;
    text-align: center;
    padding: 25px 15px;
    border-bottom: 1px solid var(--orange);
    border-top: 1px solid var(--orange);
  }
}

.header {
  background: var(--white);
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(11, 29, 58, 0.04);
}
.header.scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.header .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.logo .mark {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -.5px;
}
.logo .tag {
  display: block;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* Nav items */
nav {
  display: flex;
  align-items: center;
}
.nav-items {
  list-style: none;
  display: block;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media(min-width: 992px){
  .nav-items {
    display: flex;
    padding-left: 40px;
  }
}

.nav-items > li {
  position: relative;
  padding: 0 0 20px;
}
.nav-items > li:last-child {
  padding: 0;
}
@media(min-width: 992px) {
  .nav-items > li {
    padding: 0;
  }
}
.nav-items > li > a {
  font-family: var(--fd);
  font-weight: 600;
  font-size: 14px;
  color: var(--grey-500);
  padding: 0;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all .2s;
  white-space: nowrap;
}
@media(min-width: 992px) {
  .nav-items > li > a {
    justify-content: flex-start;
    padding: 20px 14px;
  }
}
.nav-items > li > a:hover {
  color: var(--navy);
  background: rgba(11,29,58,.04);
}
.nav-items > li > a:hover .chevron {
  color: var(--navy);
}
.chevron {
  font-size: 14px;
  color: var(--grey-500);
  transition: transform 0.2s;
  display: none;
}
@media(min-width: 992px) {
  .chevron {
    display: block;
  }
}

/* Dropdown panel */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 280px;
  box-shadow: 0 12px 40px rgba(11, 29, 58, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
@media(max-width: 991px) {
  .dropdown-panel {
    display: none;
  }
}
.nav-items > li:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel.wide {
  min-width: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

/* Dropdown content */
.dd-product {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.dd-product-name {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
}
.dd-product-desc {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.45;
}
.dd-group-label {
  display: block;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.dd-group-label:not(:first-child) {
  margin-top: 14px;
}
.dd-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.dd-link {
  display: block;
  padding: 7px 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none; 
  transition: color 0.15s, padding-left 0.15s;
}
.dd-link:hover {
  color: var(--teal);
  padding-left: 4px;
  text-decoration: none;
}
.dd-link small {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 1px;
}
.dd-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 10px 0;
}
.dd-footer-link {
  display: block;
  padding: 10px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s;
}
.dd-footer-link:hover {
  color: var(--navy);
}

/* Managed services wide dropdown with grid */
.dd-managed {
  min-width: 620px;
}
.dd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
/*   grid-template-columns: repeat(2, 1fr); */
  gap: 10px;
}
.dd-grid-item {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.dd-grid-item:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  transform: translateY(-1px);
  text-decoration: none;
}
.dd-grid-title {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.dd-grid-item:hover .dd-grid-title {
  color: var(--teal);
}
.dd-grid-desc {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.45;
}

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  margin-left: 12px;
  display: none;
}
@media(min-width: 992px) {
  .nav-cta {
    display: block;
  }
}
.nav-cta:hover {
  background: #EA6C10;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249,115,22,.35);
}
/* ═══ HERO ═══ */
.hero {
  background: radial-gradient(
      ellipse at 0% 0%,
      rgba(30, 77, 123, 0.75) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(51, 102, 153, 0.65) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(96, 165, 250, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #b5cfe0 0%, #bfd9e9 50%, #aac8dc 100%);
  color: var(--navy);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(11, 29, 58, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(11, 29, 58, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.hero.ns {
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(6, 95, 70, 0.75) 0%,
    transparent 70%
  ),
  radial-gradient(
    ellipse at 100% 100%,
    rgba(4, 120, 87, 0.7) 0%,
    transparent 70%
  ),
  radial-gradient(
    ellipse at 50% 50%,
    rgba(52, 211, 153, 0.2) 0%,
    transparent 60%
  ),
  linear-gradient(135deg, #b8dccc 0%, #aed3c2 50%, #9bceb8 100%);
}
.hero.jde-ns {
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(30, 77, 123, 0.75) 0%,
    transparent 70%
  ),
  radial-gradient(
    ellipse at 100% 100%,
    rgba(6, 95, 70, 0.7) 0%,
    transparent 70%
  ),
  radial-gradient(
    ellipse at 50% 50%,
    rgba(13, 148, 136, 0.15) 0%,
    transparent 60%
  ),
  linear-gradient(135deg, #b5cfe0 0%, #aaccca 50%, #aed3c2 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 56px;
}
@media(min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    padding-bottom: 80px;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jde-d);
  margin-bottom: 24px;
}
.hero-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--jde-d);
}
.hero-title {
  font-family: var(--fd);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.02;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-title .accent-dot {
  color: var(--jde-d);
  font-weight: 800;
}
.hero-sub {
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
/* Override btn-ghost for light hero */
.hero .btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11, 29, 58, 0.2);
}
.hero .btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}
/* ═══ VIDEO HERO ═══ */
.video-hero {
  background: var(--navy);
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
}
.video-hero .my-video {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
  z-index: -1;
}
.video-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.video-hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(11, 29, 58, 0.5) 0%,
    rgba(11, 29, 58, 0.3) 40%,
    rgba(11, 29, 58, 0.65) 100%
  );
}
.video-hero .grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
}
.video-hero .lob-glows {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      ellipse 300px 250px at 15% 70%,
      rgba(51, 102, 153, 0.08),
      transparent
    ),
    radial-gradient(
      ellipse 300px 250px at 40% 85%,
      rgba(4, 120, 87, 0.06),
      transparent
    ),
    radial-gradient(
      ellipse 300px 250px at 70% 80%,
      rgba(249, 115, 22, 0.05),
      transparent
    ),
    radial-gradient(
      ellipse 300px 250px at 90% 75%,
      rgba(190, 18, 60, 0.04),
      transparent
    );
  pointer-events: none;
}
.video-hero .container {
  width: 100%;
}
.video-hero h1 {
  font-family: var(--fd);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}
.video-hero h1 .teal {
  color: var(--teal);
}
.video-hero h1 .orange {
  color: var(--orange);
}
.video-hero .hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 44px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}



.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
.hero-stat {
  padding-right: 44px;
  margin-right: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.hero-stat .num {
  font-family: var(--fd);
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.hero-stat .num span {
  color: var(--teal);
}
.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 4px;
}
.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-ind span {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.scroll-ind .arr {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  animation: breathe 2s ease-in-out infinite;
}
/* ═══ PROOF ═══ */
.proof {
  padding: 56px 0;
  background: radial-gradient(circle at 80% 0%, var(--teal-tint) 0%, white 40%);
}
.proof .section-header {
  margin-bottom: 48px;
}
.proof .section-header .title {
  color: var(--orange-dark);
}
.proof h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -1.4px;
  line-height: 1.02;
}
.proof-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .proof-tabs {
    grid-template-columns: 1fr;
  }
}
.proof-tab {
  background: transparent;
  border: none;
  padding: 20px 24px 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  border-right: 1px solid var(--gray-200);
  transition: opacity 0.2s;
  opacity: 0.4;
}
.proof-tab:last-child {
  border-right: none;
}
@media (max-width: 720px) {
  .proof-tab {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }
  .proof-tab:last-child {
    border-bottom: none;
  }
}
.proof-tab:hover {
  opacity: 0.7;
}
.proof-tab.active {
  opacity: 1;
}
.proof-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.proof-tab.active::after {
  width: 48px;
}
.proof-stat {
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2.4px;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.proof-stat .proof-unit {
  color: var(--teal);
}
.proof-labels {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.35;
}
.proof-tab.active .proof-labels {
  color: var(--gray-700);
}
.proof-labels strong {
  font-weight: 700;
}
.proof-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 16px 8px 0;
  max-width: 960px;
  display: none;
}
@media (max-width: 767px) {
  .proof-detail {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.proof-detail.active {
  display: grid;
}
.proof-detail-stat {
  font-family: var(--f-display);
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -3.6px;
  line-height: 0.9;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.proof-detail-stat .pd-unit {
  color: var(--teal);
  font-size: 0.55em;
}
.proof-detail-text h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.proof-detail-text .text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 18px;
}
.proof-link {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s;
}
.proof-link:hover {
  color: var(--navy);
}
.proof-link::after {
  content: "→";
  transition: transform 0.15s;
}
.proof-link:hover::after {
  transform: translateX(3px);
}


/* ═══ PROOF 02 ═══ */
.proof-02 {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}
.proof-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.proof-label {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.proof-clients {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-client {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}
.proof__client-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
}
.proof__client-tag {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
/* ═══ INDUSTRIES ═══ */
.industries {
  background: var(--gray-50);
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
}
.industries .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.industries .section-header .title-block {
  max-width: 680px;
}
.hp-see-all {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gray-300);
  transition: all 0.15s;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hp-see-all:hover {
  color: var(--navy);
  border-color: var(--teal);
}
.hp-see-all::after {
  content: "→";
  transition: transform 0.15s;
}
.hp-see-all:hover::after {
  transform: translateX(3px);
}
.hp-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.hp-tabs::-webkit-scrollbar {
  display: none;
}
.hp-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 20px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  transition: all 0.15s;
  white-space: nowrap;
  position: relative;
  top: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hp-tab:hover {
  color: var(--navy);
}
.hp-tab.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
  font-weight: 700;
}
.hp-count {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  padding: 2px 7px;
  background: var(--gray-100);
  border-radius: 10px;
}
.hp-tab.active .hp-count {
  background: var(--teal);
  color: white;
}
.hp-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 12px;
  animation: fade 0.3s ease;
}
@media(min-width: 640px) {
  .hp-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 1024px) { 
  .hp-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hp-panel.active {
  display: grid;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hp-card {
  padding: 22px 22px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: white;
  transition: all 0.15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hp-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 14px -4px rgba(14, 165, 169, 0.18);
  transform: translateY(-1px);
}
.hp-card-name {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.hp-card-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
}
.hp-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px dashed var(--gray-200);
  gap: 10px;
}
.hp-card-platform {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--teal-dark);
  white-space: nowrap;
  text-transform: uppercase;
}
.hp-card-proof {
  font-size: 11.5px;
  color: var(--gray-500);
  text-align: right;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
  font-style: italic;
}
.hp-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hp-footer-text {
  font-size: 14px;
  color: var(--gray-700);
}
.hp-footer-text strong {
  color: var(--navy);
  font-weight: 700;
}
.hp-footer-link {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  padding: 8px 14px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  transition: all 0.15s;
}
.hp-footer-link:hover {
  background: var(--teal);
  color: white;
}
/* ═══ USE CASES ═══ */
.uc {
  padding: 56px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.uc .secton-header .title {
  color: var(--teal-dark);
}
.uc .section-header h2 .q {
  color: var(--teal);
}
.uc .section-header .text {
  max-width: 640px;
}
.uc-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.uc-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.uc-chip {
  background: white;
  border: 1px solid var(--gray-300);
  padding: 9px 18px;
  border-radius: 6px;
  font-family: var(--fd);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.15s;
}
.uc-chip:hover {
  border-color: var(--navy);
}
.uc-chip.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.uc-counter {
  font-size: 13px;
  color: var(--gray-500);
  font-family: var(--fd);
  font-weight: 500;
}
.uc-counter strong {
  color: var(--navy);
  font-weight: 700;
}
.uc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) {
  .uc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .uc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .uc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.uc-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px 24px 22px;
  transition: all 0.15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}
.uc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 14px -4px rgba(14, 165, 169, 0.15);
  transform: translateY(-1px);
}
.uc-card-title {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.uc-card-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
}
.uc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-size: 14px;
  background: var(--white);
  border-radius: 10px;
  border: 1px dashed var(--gray-300);
}
/* ═══ WHY GSI (Interactive stat toggle) ═══ */
.why-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  background: linear-gray-radient(
    180deg,
    #eef2f6 0%,
    #f0fdfa 15%,
    #f0fdfa 85%,
    #eef6fc 100%
  );
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gray-radient(
    ellipse 500px 350px at 70% 40%,
    rgba(14, 165, 169, 0.05),
    transparent
  );
  pointer-events: none;
}
.why-section .section-header .title {
  color: var(--navy);
}
.why-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-bottom: none;
}
@media(min-width: 1024px) {
  .why-bar {
    flex-wrap: nowrap;
  }
}
.why-stat {
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  width: 100%;
  border-right: none;
  border-bottom: 1px solid var(--gray-200);
}
@media(min-width: 768px) {
  .why-stat {
    border-right: 1px solid var(--gray-200);
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .why-stat {
    flex: 1;
    width: auto;
    border-bottom: none;
  }
}

.why-stat:last-child {
  border-right: none;
}
.why-stat:hover {
  background: var(--gray-50);
}
.why-stat.active {
  background: #eff6ff;
}
.why-stat.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
}
.why-stat .ws-num {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 900;
  color: var(--gray-300);
  letter-spacing: -2px;
  line-height: 1;
  transition: color 0.2s;
}
.why-stat .ws-num span {
  transition: color 0.2s;
}
.why-stat.active .ws-num {
  color: var(--navy);
}
.why-stat.active .ws-num span {
  color: var(--teal);
}
.why-stat:hover .ws-num {
  color: var(--navy);
}
.why-stat .ws-lbl {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  margin-top: 8px;
  transition: color 0.2s;
}
.why-stat.active .ws-lbl {
  color: var(--navy);
}
.why-detail {
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 28px 32px;
  background: #eff6ff;
  display: none;
}
.why-detail.active {
  display: block;
}
.why-detail p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 100%;
}

.tm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
@media(min-width: 460px) {
  .tm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 768px) {
  .tm-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media(min-width: 1024px) {
  .tm-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.tm {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.tm__shotname {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(155deg,var(--gray-700),var(--gray-800));
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}
.tm__shotname.jde {
  background: linear-gradient(155deg,var(--jde),var(--jde-d));
}
.tm__shotname.ns {
  background: linear-gradient(155deg,var(--ns),var(--ns-d));
}
.tm__shotname.hs {
  background: linear-gradient(155deg,var(--hs),var(--hs-d));
}
.tm__shotname.ai {
  background: linear-gradient(155deg,var(--ai),var(--ai-d));
}
.tm__shotname.its {
  background: linear-gradient(155deg,var(--its),var(--its-d));
}
.tm__name {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}
.tm__designation {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.tm__age {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--teal);
  background: rgba(14, 165, 169, 0.06);
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
}
/* ═══ INTERACTIVE TOOLS ═══ */
.tools-section {
  background: linear-gradient(
    180deg,
    #eef6fc 0%,
    #f0f9ff 20%,
    #f0f9ff 75%,
    #e2eaf2 100%
  );
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.tools-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 400px 300px at 30% 50%,
      rgba(14, 165, 169, 0.04),
      transparent
    ),
    radial-gradient(
      ellipse 400px 300px at 70% 50%,
      rgba(190, 18, 60, 0.03),
      transparent
    );
  pointer-events: none;
}
.tools-section .section-header .title {
  color: var(--teal);
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 1024px) {
  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s;
}
.tool-card:hover {
  border-color: var(--gray-200);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(11, 29, 58, 0.07);
}
.tool-card .tc-top {
  padding: 28px 28px 0;
  display: flex;
  align-items: start;
  gap: 20px;
}
.tool-card .tc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tool-card .tc-icon svg {
  width: 24px;
  height: 24px;
}
.tool-card .tc-info h3 {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.tool-card .tc-info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.tool-card .tc-widget {
  padding: 20px 28px;
}
.tool-card .tc-widget .tw-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.tool-card .tc-widget .tw-box {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.tool-card .tc-widget .tw-box:nth-child(2) {
  background: rgba(14,165,169,.04); 
  border: 1px solid rgba(14,165,169,.12);
}
.tool-card .tc-widget .tw-arrow {
  display: flex;
  align-items: center;
  color: var(--gray-300);
  font-size: 14px;
  padding-top: 12px;
}
.tool-card .tc-widget .tw-label {
  font-family: var(--fm);
  font-size: 8px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.tool-card .tc-widget .tw-val {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}
.tool-card .tc-widget .assess-q {
  margin-bottom: 10px;
}
.tool-card .tc-widget .assess-q label {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-600);
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.tool-card .tc-widget .assess-q label span {
  font-family: var(--fm);
  font-size: 10px;
}
.tool-card .tc-widget .assess-q input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 3px;
  outline: none;
}
.tool-card .tc-widget .assess-q.teal-slider input[type="range"] {
  background: var(--gray-200);
}
.tool-card
  .tc-widget
  .assess-q.teal-slider
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(14, 165, 169, 0.3);
}
.tool-card .tc-widget .assess-q.rose-slider input[type="range"] {
  background: var(--gray-200);
}
.tool-card
  .tc-widget
  .assess-q.rose-slider
  input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #be123c;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(190, 18, 60, 0.3);
}
.tool-card .tc-widget .tw-result {
  background: var(--ai-t);
  border: 1px solid #FFE4E6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-top: 8px;
}
.tool-card .tc-widget .tw-result__score {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 900;
  color: #be123c;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.tool-card .tc-widget  .tw-result__label {
  font-family: var(--fd);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.tool-card .tc-widget  .tw-result__text {
  font-size: 10px;
  color: var(--gray-500);
  margin-top: 1px;
}
.tool-card .tc-meta {
  font-family: var(--fm);
  font-size: 12px;
  color: var(--gray-400);
  padding: 0 28px 8px;
}
.tool-card .tc-cta {
  display: block;
  padding: 16px 28px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tool-card .tc-cta:hover {
  background: var(--gray-50);
}
.tool-card .tc-cta span {
  font-size: 18px;
  transition: transform 0.2s;
}
.tool-card:hover .tc-cta span {
  transform: translateX(4px);
}
/* ═══ VIDEO + TEXT MODULE ═══ */
.video-module {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #0d1f35 0%,
    #0b1d3a 20%,
    #0b1d3a 80%,
    #1a2a3e 100%
  );
}
.video-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 500px 350px at 20% 50%,
    rgba(14, 165, 169, 0.03),
    transparent
  );
  pointer-events: none;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media(min-width: 1024px) {
  .video-grid {
    gap: 56px;
    grid-template-columns: 1fr 1fr;
  }
}
@media(min-width: 1024px) {
  .video-grid.left .vm-text {
    order: 2;
  }

  .video-grid.left .vm-player {
    order: 1;
  }
}
.video-inner.flip {
  direction: rtl;
}
.video-inner.flip > * {
  direction: ltr;
}
.vm-player {
  aspect-ratio: 16/9;
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(11, 29, 58, 0.12);
}
.vm-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.4)
  );
  pointer-events: none;
  transition: opacity 0.3s;
}
.vm-player:hover::after {
  opacity: 0.7;
}
.vm-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.vm-player:hover .vm-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.vm-play svg {
  margin-left: 3px;
}
.vm-text .sl {
  color: var(--orange);
}
.vm-text .vm-h {
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.vm-text .vm-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}
.vm-text .vm-link {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
/* ═══ GUIDES & WEBINARS — Restored standalo ═══ */
.guides-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #fff9f0 0%,
    #fffbf5 15%,
    #fffbf5 85%,
    #f2f4f7 100%
  );
}
.guides-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 500px 350px at 80% 30%,
    rgba(249, 115, 22, 0.04),
    transparent
  ),
    radial-gradient(
      ellipse 400px 300px at 20% 70%,
      rgba(51, 102, 153, 0.03),
      transparent
    );
  pointer-events: none;
}
.guides-section .section-header .title {
  color: var(--orange);
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 768px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 1024px) {
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.guide-card {
  background: var(--gray-50);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 29, 58, 0.1);
}
.guide-card .gc-visual {
  background: linear-gradient(155deg,var(--gray-700),var(--gray-800));
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.guide-card .gc-visual svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}
.guide-card .gc-body {
  padding: 24px;
}
.guide-card .gc-type {
  color: var(--gray-600);
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.guide-card h3 {
  color: var(--gray-700);
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}
.guide-card .text {
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.guide-card .gc-stat {
  color: var(--gray-500);
  font-family: var(--fm);
  font-size: 11px;
  margin-bottom: 10px;
}
.guide-card .gc-link {
  color: var(--gray-600);
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.guide-card:hover .gc-link {
  gap: 8px;
}


.guide-card.jde {
  background: var(--jde-t);
}
.guide-card.ns {
  background: var(--ns-t);
}
.guide-card.hs {
  background: var(--hs-t);
}
.guide-card.ai {
  background: var(--ai-t);
}
.guide-card.its {
  background: var(--its-t);
}
.guide-card.jde .gc-visual {
  background: linear-gradient(155deg,var(--jde),var(--jde-d));
}
.guide-card.ns .gc-visual {
  background: linear-gradient(155deg,var(--ns),var(--ns-d));
}
.guide-card.hs .gc-visual {
  background: linear-gradient(155deg,var(--hs),var(--hs-d));
}
.guide-card.ai .gc-visual {
  background: linear-gradient(155deg,var(--ai),var(--ai-d));
}
.guide-card.its .gc-visual {
  background: linear-gradient(155deg,var(--its),var(--its-d));
}

.guide-card.jde .gc-type, .guide-card.jde .gc-stat, .guide-card.jde .gc-link {
  color: var(--jde)
}
.guide-card.ns .gc-type, .guide-card.ns .gc-stat, .guide-card.ns .gc-link {
  color: var(--ns);
}
.guide-card.hs .gc-type, .guide-card.hs .gc-stat, .guide-card.hs .gc-link {
  color: var(--hs);
}
.guide-card.ai .gc-type, .guide-card.ai .gc-stat, .guide-card.ai .gc-link {
  color: var(--ai);
}
.guide-card.its .gc-type, .guide-card.its .gc-stat, .guide-card.its .gc-link {
  color: var(--its);
}

.guide-card.jde h3 {
  color: var(--jde-d);
}
.guide-card.ns h3 {
  color: var(--ns-d);
}
.guide-card.hs h3 {
  color: var(--hs-d);
}
.guide-card.ai h3 {
  color: var(--ai-d);
}
.guide-card.its h3 {
  color: var(--its-d);
}
/* ═══ AWARDS MODULE ═══ */
.awards-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f2f4f7 0%,
    #f0f4f8 15%,
    #f0f4f8 85%,
    #eef7f4 100%
  );
}
.awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 500px 350px at 50% 50%,
    rgba(11, 29, 58, 0.025),
    transparent
  );
  pointer-events: none;
}
.awards-section .section-header {
  text-align: center;
}
.awards-section .section-header .title {
  color: var(--orange);
}
.aw-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.aw-grid::-webkit-scrollbar {
  height: 4px;
}
.aw-grid::-webkit-scrollbar-track {
  background: transparent;
}
.aw-grid::-webkit-scrollbar-thumb {
  background: var(--gray-200);
  border-radius: 2px;
}
.aw-card {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  background: var(--white);
  min-width: 160px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(11, 29, 58, 0.03);
}
.aw-card:hover {
  border-color: var(--gray-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.05);
}
.aw-card .aw-badge {
  background: rgba(11,29,58,.05);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.aw-card .aw-badge svg {
  stroke: #0B1D3A;
  width: 22px;
  height: 22px;
}
.aw-card .aw-badge.jde {
  background: rgba(51,102,153,.08);
}
.aw-card .aw-badge.ns {
  background: rgba(4,120,87,.06);
}
.aw-card .aw-badge.hs {
  background: rgba(249,115,22,.06);
}
.aw-card .aw-badge.ai {
  background: rgba(190,18,60,.06);
}
.aw-card .aw-badge.its {
  background: rgba(124,58,237,.06);
}
.aw-card .aw-badge.jde svg {
  stroke: #336699;
}
.aw-card .aw-badge.ns svg {
  stroke: #047857;
}
.aw-card .aw-badge.hs svg {
  stroke: #F97316;
}
.aw-card .aw-badge.ai svg {
  stroke: #BE123C;
}
.aw-card .aw-badge.its svg {
  stroke: #7C3AED;
}
.aw-card .aw-title {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 3px;
  line-height: 1.25;
}
.aw-card .aw-sub {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.4;
}
/* ═══ REVIEWS MODULE ═══ */
.reviews-section {
  background: linear-gradient(
    180deg,
    #eef7f4 0%,
    #f0fdf8 15%,
    #f0fdf8 85%,
    #edf3f9 100%
  );
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 500px 350px at 70% 40%,
      rgba(4, 120, 87, 0.04),
      transparent
    ),
    radial-gradient(
      ellipse 400px 300px at 30% 60%,
      rgba(14, 165, 169, 0.03),
      transparent
    );
  pointer-events: none;
}
.rv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 768px) {
  .rv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 1024px) {
  .rv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rv-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  box-shadow: 0 1px 4px rgba(11, 29, 58, 0.03);
}
.rv-card:hover {
  border-color: var(--gray-200);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(11, 29, 58, 0.07);
}
.rv-card .rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.rv-card .rv-stars span {
  color: #fbbf24;
  font-size: 14px;
}
.rv-card .rv-quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.rv-card .rv-author {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.rv-card .rv-role {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.rv-card .rv-pill {
  display: inline-block;
  margin-top: 10px;
}
/* ═══ CLOSING CTA (Light with atmospheric visuals) ═══ */
.closing-cta {
  background: linear-gradient(
    180deg,
    #edf3f9 0%,
    #eff6ff 20%,
    #f0fdfa 50%,
    #f5f7fa 80%,
    #f0f2f5 100%
  );
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 500px 350px at 15% 40%,
      rgba(51, 102, 153, 0.05),
      transparent
    ),
    radial-gradient(
      ellipse 500px 350px at 40% 70%,
      rgba(4, 120, 87, 0.04),
      transparent
    ),
    radial-gradient(
      ellipse 500px 350px at 65% 30%,
      rgba(249, 115, 22, 0.04),
      transparent
    ),
    radial-gradient(
      ellipse 500px 350px at 85% 60%,
      rgba(190, 18, 60, 0.03),
      transparent
    );
  pointer-events: none;
}
.closing-cta::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: url("data:image/svg+xml,%3Csvg width='800' height='400' viewBox='0 0 800 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q200 100 400 200 T800 200' stroke='%230EA5A9' stroke-width='1' opacity='.06'/%3E%3Cpath d='M0 240 Q200 140 400 240 T800 240' stroke='%23336699' stroke-width='1' opacity='.05'/%3E%3Cpath d='M0 160 Q200 60 400 160 T800 160' stroke='%23F97316' stroke-width='1' opacity='.04'/%3E%3Ccircle cx='120' cy='180' r='60' stroke='%230EA5A9' stroke-width='.5' opacity='.04'/%3E%3Ccircle cx='680' cy='220' r='80' stroke='%23336699' stroke-width='.5' opacity='.03'/%3E%3Ccircle cx='400' cy='200' r='120' stroke='%23E2E8F0' stroke-width='1' opacity='.3'/%3E%3C/svg%3E")
    center/cover no-repeat;
  pointer-events: none;
  opacity: 0.7;
}
.closing-cta .container {
  max-width: 780px;
}
.closing-cta .section-header .text {
  max-width: 100%;
}
.closing-cta .ctas {
  justify-content: center;
}


.closing-cta.dark {
  background: radial-gradient(
    ellipse at top left,
    rgba(249, 115, 22, 0.1),
    transparent 55%
  ),
  radial-gradient(
    ellipse at bottom right,
    rgba(14, 165, 169, 0.08),
    transparent 55%
  ),
  linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.closing-cta.dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249,115,22,0.5), rgba(94,234,212,0.5), transparent);
}
.closing-cta.dark::after {
  display: none;
}
.closing-cta.dark .section-header h2 {
  color: var(--white);
}
.closing-cta.dark .section-header .text {
  color: rgba(255,255,255,0.7);
}
/* ═══ CHALLENGES ═══ */
.challenges {
  background: var(--white);
  padding: 56px 0;
}
.challenges .section-header .title {
  color: var(--teal-darker);
}
.chal-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.chal-tab {
  background: none;
  border: none;
  padding: 18px 28px 16px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-500);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.15s;
  width: 100%;
}
@media(min-width: 640px) {
  .chal-tab {
    width: auto;
  }
}
.chal-tab:hover {
  color: var(--navy);
}
.chal-tab.active {
  color: var(--navy);
}
.chal-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal-dark);
}
.chal-tab-num {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}
.chal-tab.active .chal-tab-num {
  color: var(--teal-dark);
}

.chal-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media(min-width: 1024px) {
  .chal-body {
    grid-template-columns: 320px 1fr;
  }
}
.chal-panel {
  display: none;
}
.chal-panel.active {
  display: block;
}
.chal-rail {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chal-rail-item {
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background 0.15s;
  border: 1px solid transparent;
}
.chal-rail-item:hover {
  background: var(--white);
}
.chal-rail-item.active {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(14, 165, 169, 0.1);
}
.chal-rail-num {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  flex-shrink: 0;
}
.chal-rail-item.active .chal-rail-num {
  color: var(--teal-dark);
}
.chal-rail-label {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}
.chal-rail-item.active .chal-rail-label {
  color: var(--navy);
}

.chal-detail {
  background: radial-gradient(
      ellipse at top left,
      rgba(14, 165, 169, 0.04),
      transparent 60%
    ),
    var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  display: none;
}
.chal-detail.active {
  display: block;
}
.chal-urgency {
  display: inline-block;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--hs-d);
  margin-bottom: 18px;
}
.chal-quote {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.chal-context {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 28px;
}
.chal-context strong {
  color: var(--navy);
  font-weight: 700;
}
.chal-solve {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
}
.chal-solve-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.chal-solve-label {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.chal-solve-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.6;
}
/* ═══ COMPLIANCE ═══ */
.compliance {
  background: var(--gray-50);
  padding: 56px 0;
}
.compliance .section-header .title {
  color: var(--teal-darker);
}
.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media(min-width: 1024px) {
  .comp-grid {
    grid-template-columns: 360px 1fr;
  }
}
.comp-left {
  position: sticky;
  top: 96px;
}
.comp-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.comp-tile {
  padding: 28px 20px;
  background: radial-gradient(
      ellipse at top right,
      rgba(96, 165, 250, 0.18),
      transparent 55%
    ),
    linear-gradient(145deg, var(--jde-d), var(--jde));
  color: var(--white);
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.comp-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(96, 165, 250, 0.6),
    transparent
  );
}
.comp-tile-num {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 28px;
  color: var(--jde-l);
  line-height: 1;
  letter-spacing: -1.5px;
}
.comp-tile-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  line-height: 1.3;
  font-family: var(--fd);
  font-weight: 700;
}

/* Timeline-style list on right */
.comp-list {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  padding: 8px;
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
@media(max-width: 639px) {
  .comp-row {
    grid-template-columns: 1fr;
  }
}
.comp-row:last-child {
  border-bottom: none;
}
.comp-row-content {
  padding-left: 0;
}
.comp-row-name {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.comp-row-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
}
.comp-row-status {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0;
  white-space: nowrap;
  color: var(--teal-dark);
}
/* ═══ EXPERTISE ═══ */
.connected-expertise {
  background: var(--gray-50);
  padding: 56px 0;
}
.connected-expertise .section-header {
  max-width: 720px;
}
.connected-expertise .section-header .title {
  color: var(--teal-darker);
}
.connected-expertise .section-header .text {
  max-width: 560px;
}
.connected-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.connected-pill {
  padding: 12px 22px;
  background: var(--jde-t);
  border: 1px solid rgba(51, 102, 153, 0.15);
  border-radius: 100px;
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 600;
  color: var(--jde-dark);
  transition: all 0.15s;
}
.connected-pill:hover {
  background: var(--jde-d);
  color: var(--white);
  border-color: var(--jde-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 77, 123, 0.2);
}
/* ═══ SERVICES CALLOUT ═══ */
.ms-callout {
  background: var(--teal-tint);
  padding: 56px 0;
}
.ms-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media(min-width: 1024px) {
  .ms-callout-grid {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
}
.ms-callout-stat {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(15, 118, 110, 0.12);
}
@media(max-width: 1023px) {
  .ms-callout-stat {
    order: 2;
  }
}
.ms-callout-num {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.ms-callout-lbl {
  font-size: 12px;
  color: var(--gray-600);
  font-family: var(--fm);
  letter-spacing: 0.3px;
}
@media(max-width: 1023px) {
  .ms-callout-body  {
    order: 1;
  }
}
.ms-callout-body .section-header {
  margin-bottom: 16px;
}
.ms-callout-body .title {
  color: var(--teal-darker);
}
.ms-callout-body h2 {
  font-size: 28px;
  line-height: 1.2;
}
.ms-callout-body .text {
  font-size: 14px;
  line-height: 1.65;
  max-width: 520px;
}
.ms-callout-link {
  color: var(--teal-darker);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
}
/* ═══ MIGRATION CALLOUT ═══ */
.upgrades-callout {
  background: var(--white);
  padding: 56px 0;
}
.upgrades-callout .section-header {
  max-width: 720px;
}
.upgrades-callout .section-header .title {
  color: var(--teal-darker);
}
.upgrades-callout .section-header h2 {
  font-size: clamp(28px, 3.2vw, 34px);
}
.upgrades-callout .section-header .text {
  font-size: 14px;
  line-height: 1.65;
  max-width: 560px;
}
.upgrades-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media(min-width: 1024px) {
  .upgrades-callout-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}
.upgrades-methodology {
  background: var(--teal-tint);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 14px;
  padding: 28px 32px;
}
.upgrades-methodology-eyebrow {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal-darker);
  margin-bottom: 18px;
}
.upgrades-methodology-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.upgrades-methodology-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}
.upgrades-methodology-num {
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-darker);
  border-right: 2px solid var(--teal-darker);
  padding-right: 10px;
  text-align: center;
}
.upgrades-methodology-step-title {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.upgrades-methodology-step-sub {
  font-size: 12px;
  color: var(--gray-600);
}
.upgrades-methodology-link {
  display: block;
  margin-top: 20px;
  color: var(--teal-darker);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
}
.upgrades-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upgrades-stat-card {
  flex: 1;
  background: var(--gray-50);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.upgrades-stat-num {
  font-family: var(--fd);
  font-size: 52px;
  font-weight: 800;
  color: var(--teal-darker);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.upgrades-stat-num.navy {
  color: var(--navy);
}
.upgrades-stat-num .unit {
  font-size: 32px;
}
.upgrades-stat-lbl {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.4;
  max-width: 260px;
}
/* ═══ LEAD MAGNET ═══ */
.lead-magnet {
  background: var(--gray-50);
  padding: 56px 0;
}
.lead-magnet-wrap {
  background: var(--jde-t);
  border: 1px solid rgba(51, 102, 153, 0.15);
  border-radius: 18px;
  padding: 30px 25px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media(min-width: 768px) {
  .lead-magnet-wrap {
    padding: 30px 35px;
    grid-template-columns: 1fr 180px;
  }
}
@media(min-width: 1024px) {
  .lead-magnet-wrap {
    padding: 40px 48px;
  }
}
.lead-magnet-left h3 { 
  font-size: 24px;
  color: var(--jde-d);
  letter-spacing: -0.3px;
}
.lead-magnet-left .text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 20px;
}
@media(min-width: 640px) {
  .lead-magnet-form form {
    display: flex;
    gap: 10px;
    max-width: 480px;
  }
}
.lead-magnet-form form label {
  margin: 0;
}
@media(min-width: 640px) {
  .lead-magnet-form form .hs-form-field {
    margin: 0;
  }
}
.lead-magnet-form form .hs-form-field {
  flex: 1;
}
.lead-magnet-form form input {
  font-size: 13px;
}
.lead-magnet-form form input:focus {
  border-color: var(--jde-d);
}
.lead-magnet-form form .hs-button {
  padding: 11px 20px;
  background: var(--jde-d);
}
.lead-magnet-form .hs-button:hover {
  background: var(--navy);
  box-shadow: none;
}
.lead-magnet-file {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.04);
}
.lead-magnet-icon {
  font-size: 40px;
  color: var(--jde-d);
  margin-bottom: 10px;
  font-family: var(--fd);
  font-weight: 800;
}
.lead-magnet-icon svg {
  width: 42px;
  height: 42px;
  display: inline-block;
}
.lead-magnet-meta {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gray-600);
  letter-spacing: 0.5px;
}
/* ═══ CASE STUDY FULL ═══ */
.case-full {
  background: var(--gray-50);
  padding: 56px 0;
}
.case-full .section-header {
  margin-bottom: 28px;
  max-width: 840px;
}
.case-full .section-header .title {
  color: var(--teal-darker);
}
.case-full .section-header .title {
  color: var(--teal-darker);
}
.case-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
@media(min-width: 1024px) {
  .case-full-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* If only ONE child exists → make it full width */
.case-full-grid:has(> :only-child) {
  grid-template-columns: 1fr;
}
.case-full-body {
  padding: 30px 25px;
  background: var(--white);
}
@media(min-width: 768px) {
  .case-full-body {
    padding: 30px 35px;
  }
}
@media(min-width: 1024px) {
  .case-full-body {
    padding: 40px 44px;
  }
}
.case-full-tags {
  display: flex;
  gap: 10px;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-darker);
  margin-bottom: 16px;
}
.case-full-tags span::after {
  content: " ·";
  color: var(--gray-400);
}
.case-full-tags span:last-child::after {
  content: "";
}
.case-full-headline {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.case-full-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 24px;
}
.case-full-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.case-full-stat {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
}
.case-full-stat-num {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 4px;
}
.case-full-stat-lbl {
  font-size: 11px;
  color: var(--gray-600);
  font-family: var(--fm);
  letter-spacing: 0.3px;
}
.case-full-quote-side {
  background: radial-gradient(ellipse at top right, rgba(96,165,250,0.15), transparent 55%), linear-gradient(160deg, var(--jde-d) 0%, var(--jde) 60%, #3D7BB0);
  color: var(--white);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media(min-width: 768px) {
  .case-full-quote-side {
    padding: 30px 35px;
  }
}
@media(min-width: 1024px) {
  .case-full-quote-side {
    padding: 40px 44px;
  }
}
.case-full-quote {
  font-size: 19px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}
.case-full-quote-mark {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 36px;
  color: var(--jde-l);
  line-height: 0.5;
  margin-bottom: 12px;
  display: block;
}
.case-full-attr-name {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.case-full-attr-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.case-full-quote-side.ns {
  background: radial-gradient(
    ellipse at top right,
    rgba(52, 211, 153, 0.15),
    transparent 55%
  ),
  linear-gradient(160deg, var(--ns-d) 0%, var(--ns) 60%, #0a9168);
}
.case-full-quote-side.ns .case-full-quote-mark {
  color: var(--ns-l);
}

.case-full-quote-side.hs .case-full-quote-mark {
  color: var(--hs-l);
}
.case-full-quote-side.ai .case-full-quote-mark {
  color: var(--ai-l);
}
.case-full-quote-side.its .case-full-quote-mark {
  color: var(--its-l);
}

/* ═══ CASE STUDY FEATURED ═══ */
.case-featured {
  background: var(--white);
  padding: 56px 0;
}
.case-featured .section-header .title {
  color: var(--teal-darker);
}
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}
@media(min-width: 1024px) {
  .featured {
    grid-template-columns: 1fr 320px;
  }
}
.featured-tile {
  background: radial-gradient(
      ellipse at bottom right,
      rgba(96, 165, 250, 0.18),
      transparent 55%
    ),
    linear-gradient(160deg, var(--jde-d), var(--jde) 80%, #3d7bb0);
  color: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.featured-tile.ns {
  background: radial-gradient(
    ellipse at bottom left,
    rgba(52, 211, 153, 0.1),
    transparent 55%
  ),
  linear-gradient(160deg, var(--ns-d), var(--ns) 60%, #0a9168);
}
.featured-tile.hs {
}
.featured-tile.ai {
}
.featured-tile.its {
}
.featured-tag {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jde-light);
  margin-bottom: 12px;
}
.featured-name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.featured-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}
.featured-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media(min-width: 1024px) {
  .featured-body {
    padding: 32px 36px;
  }
}
.featured-headline {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.featured-narrative {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.featured-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
  gap: 12px;
}
.featured-meta {
  font-family: var(--fm);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}
.featured-link {
  color: var(--teal-darker);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
}



/* ═══ CASE STUDY COMPACT ═══ */
.case-compact {
  background: var(--gray-50);
  padding: 56px 0;
}
.case-compact .section-header .title {
  color: var(--teal-darker);
}
.case-compact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 36px;
}
@media(min-width: 1024px) {
  .case-compact-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
.case-compact .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.case-compact .section-header .title {
  color: var(--teal-darker);
  margin: 0;
}
.case-compact .section-header h2 {
  font-size: 24px;
  margin: 0;
}
.case-compact .section-header .text {
  font-size: 14px;
}
@media(min-width: 1024px) {
  .case-compact .section-header .text {
    max-width: 440px;
  }
}
.case-compact-link {
  color: var(--teal-darker);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
}
.case-compact-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.case-compact-tile {
  background: linear-gradient(180deg,#EFF6FF,#E8F1FB);
  border: 1px solid #D5E8E8;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
}
.case-compact-tile.ns {
  background: linear-gradient(180deg,#ECFDF5,#DDFAED);
  border-color: #C6E8DC;
}
.case-compact-tile.ns .case-compact-tile-num {
  color: #065F46;
}
.case-compact-tile.hs {
  background: linear-gradient(180deg,#FFF7ED,#FFEFDB);
  border-color: #F5DFC6;
}
.case-compact-tile.hs .case-compact-tile-num {
  color: #9A3412;
}
.case-compact-tile.ai {
  background: linear-gradient(180deg,#FFF1F2,#FFE8E9);
  border-color: #FECDD3;
}
.case-compact-tile.ai .case-compact-tile-num {
  color: #9F1239;
}
.case-compact-tile.its {
  background: linear-gradient(180deg,#F5F3FF,#EDE9FE);
  border-color: #DDD6FE;
}
.case-compact-tile.its .case-compact-tile-num {
  color: #5B21B6;
}
.case-compact-tile-num {
  font-family: var(--fd);
  font-size: 36px;
  font-weight: 800;
  color: #1E4D7B;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.case-compact-tile-num.navy {
  color: var(--navy);
}
.case-compact-tile-lbl {
  font-size: 11px;
  color: var(--gray-600);
  font-family: var(--fm);
  letter-spacing: 0.3px;
}


/* ═══ CASE STUDY SPLIT ═══ */
.case-split {
  background: var(--gray-50);
  padding: 56px 0;
}
.case-split .section-header .title {
  color: var(--teal-darker);
}
.case-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media(min-width: 1024px) {
  .case-split-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}
.case-split .section-header {
  max-width: 720px;
}
.case-split-tile {
  background: radial-gradient(
    ellipse at bottom left,
    rgba(96, 165, 250, 0.1),
    transparent 55%
  ),
  linear-gradient(160deg, var(--jde-d), var(--jde) 60%, #3d7bb0);
  border-radius: 18px;
  padding: 36px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}
.case-split-tile-tag {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--jde-l);
  margin-bottom: 12px;
}
.case-split-tile-name {
  font-family: var(--fd);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.case-split-tile-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.case-split-tile.ns {
  background: radial-gradient(
    ellipse at bottom left,
    rgba(52, 211, 153, 0.1),
    transparent 55%
  ),
    linear-gradient(160deg, var(--ns-d), var(--ns) 60%, #0a9168);
}
.case-split-tile.ns .case-split-tile-tag {
  color: var(--ns-l);
}
.case-split-tile.hs {}
.case-split-tile.hs .case-split-tile-tag {
  color: var(--hs-l);
}
.case-split-tile.ai {}
.case-split-tile.ai .case-split-tile-tag {
  color: var(--ai-l);
}
.case-split-tile.its {}
.case-split-tile.its .case-split-tile-tag {
  color: var(--its-l);
}

.case-split-body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-split .case-split-body .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.case-split .case-split-body .section-header .title {
  color: var(--teal-darker);
  margin: 0;
}
.case-split .case-split-body .section-header h2 {
  font-size: 24px;
  margin: 0;
}
.case-split .case-split-body .section-header .text {
  font-size: 14px;
}
@media(min-width: 1024px) {
  .case-split .section-header .text {
    max-width: 440px;
  }
}
.case-split-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
.case-split-stat-num {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.case-split-stat-num.teal {
  color: var(--teal-darker);
}
.case-split-stat-lbl {
  font-size: 12px;
  color: var(--gray-600);
  font-family: var(--fm);
  letter-spacing: 0.3px;
}
.case-split-link {
  color: var(--teal-darker);
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  align-self: flex-start;
}
/* ═══ DIFFERENCES ═══ */
.diff {
  background: var(--gray-50);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(51, 102, 153, 0.05),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(14, 165, 169, 0.04),
      transparent 55%
    );
  pointer-events: none;
}
.diff .section-header {
  text-align: center;
}
.diff .section-header .title {
  color: var(--jde-d);
}

.diff-claim {
  max-width: 800px;
  margin: 28px auto 40px;
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.65;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid rgba(51, 102, 153, 0.12);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.04);
  text-align: left;
  position: relative;
}
.diff-claim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--jde-d);
  border-radius: 0 0 4px 4px;
}
.diff-claim strong {
  color: var(--navy);
  font-weight: 700;
}

/* Layout: featured full-width on top, 5 tiles below */
.diff-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Featured pillar — JDE blue gradient card, full width */
.diff-featured {
  background: radial-gradient(
      ellipse at top right,
      rgba(96, 165, 250, 0.15),
      transparent 55%
    ),
    linear-gradient(160deg, var(--jde-d) 0%, var(--jde) 60%, #3d7bb0);
  border: 1px solid rgba(51, 102, 153, 0.3);
  border-radius: 20px;
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media(min-width: 1024px) {
  .diff-featured {
    grid-template-columns: 1.3fr 1fr;
    padding: 40px 48px;
    gap: 48px;
  }
}
.diff-featured.ns {
  background: radial-gradient(
    ellipse at top right,
    rgba(52, 211, 153, 0.15),
    transparent 55%
  ),
  linear-gradient(160deg, var(--ns-d) 0%, var(--ns) 60%, #0a9168);
}
.diff-featured.ns .diff-featured-badge {
  color: var(--ns-l);
  border: 1px solid rgba(52,211,153,0.3);
}
.diff-feature.hs {}
.diff-feature.ai {}
.diff-feature.its {}
.diff-featured-left {
  position: relative;
  z-index: 1;
}
.diff-featured-badge {
  display: inline-block;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jde-l);
  padding: 5px 12px;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 100px;
  margin-bottom: 14px;
}
.diff-featured-title {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.diff-featured-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.diff-featured-right {
  position: relative;
  z-index: 1;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media(max-width: 1023px) {
  .diff-featured-right {
    padding-left: 0; 
    padding-top: 24px; 
    border-left: none; 
    border-top: 1px solid rgba(255,255,255,0.15);
  }
}
.diff-featured-proof-item {
  display: flex;
  flex-direction: column;
}
.diff-featured-proof-val {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.diff-featured-proof-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}

/* 5 bench tiles — horizontal row */
.diff-bench {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media(min-width: 640px) {
.diff-bench {
  grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 768px) {
.diff-bench {
  grid-template-columns: repeat(3, 1fr);
  }
}
@media(min-width: 1024px) {
.diff-bench {
  grid-template-columns: repeat(4, 1fr);
  }
}
@media(min-width: 1200px) {
.diff-bench {
  grid-template-columns: repeat(5, 1fr);
  }
}

.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s,
    background 0.2s;
}
.diff-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-dark);
  box-shadow: 0 6px 16px rgba(11, 29, 58, 0.06);
}

/* Per-LOB hover states */
.diff-card.bench-jde:hover {
  border-color: var(--jde);
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.15);
  background: linear-gradient(180deg, var(--jde-t), var(--white));
}
.diff-card.bench-ns .diff-card-label {
  color: var(--jde-d);
}

.diff-card.bench-ns:hover {
  border-color: var(--ns);
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.15);
  background: linear-gradient(180deg, var(--ns-t), var(--white));
}
.diff-card.bench-ns .diff-card-label {
  color: var(--ns-d);
}

.diff-card.bench-hs:hover {
  border-color: var(--hs);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.15);
  background: linear-gradient(180deg, var(--hs-t), var(--white));
}
.diff-card.bench-hs .diff-card-label {
  color: var(--hs-d);
}

.diff-card.bench-its:hover {
  border-color: var(--its);
  box-shadow: 0 8px 20px rgba(194, 65, 12, 0.15);
  background: linear-gradient(180deg, var(--its-t), var(--white));
}
.diff-card.bench-its .diff-card-label {
  color: var(--its-d);
}

.diff-card.bench-ai:hover {
  border-color: var(--ai);
  box-shadow: 0 8px 20px rgba(190, 18, 60, 0.15);
  background: linear-gradient(180deg, var(--ai-t), var(--white));
}
.diff-card.bench-ai .diff-card-label {
  color: var(--ai-d);
}

.diff-card.bench-de:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.12);
  background: linear-gradient(180deg, #f1f5fb, var(--white));
}
.diff-card.bench-de .diff-card-label {
  color: var(--navy);
}

.diff-card-label {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.2s;
}
.diff-card-title {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.1px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.diff-card-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}
/* ═══ QUIZ ═══ */
.quiz-section {
  background: var(--navy-dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.quiz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at top right,
      rgba(14, 165, 169, 0.1),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(96, 165, 250, 0.08),
      transparent 55%
    );
}
.quiz-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 25px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
@media(min-width: 768px) {
  .quiz-wrap {
    padding: 30px 35px;
  }
}
@media(min-width: 1024px) {
  .quiz-wrap {
    padding: 40px 48px;
  }
}
.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.quiz-progress-step {
  flex: 1;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
}
.quiz-progress-step.active {
  background: var(--teal-darker);
}
.quiz-section .section-header {
  text-align: center;
  margin-bottom: 28px;
}
.quiz-section .section-header .title {
  color: var(--teal-darker);
}
.quiz-section .section-header h2 {
  font-size: clamp(22px, 2.8vw, 28px);
}
.quiz-section .section-header .text {
  font-size: 14px;
  color: var(--gray-600);
}
.quiz-question-meta {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-darker);
  margin-bottom: 10px;
}
.quiz-question {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
@media(min-width: 768px) {
  .quiz-options {
    grid-template-columns: 1fr 1fr;
  }
}
.quiz-option {
  padding: 16px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: all 0.15s;
}
.quiz-option:hover {
  border-color: var(--teal-darker);
  background: var(--teal-tint);
}
.quiz-option.selected {
  border: 2px solid var(--teal-darker);
  background: var(--teal-tint);
  color: var(--navy);
  font-weight: 600;
  padding: 15px 17px;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.quiz-btn {
  padding: 11px 22px;
  border-radius: 8px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
}
.quiz-btn-prev {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}
.quiz-btn-prev:hover {
  border-color: var(--navy);
}
.quiz-btn-prev:disabled {
  background: transparent;
  color: var(--gray-300);
  border-color: var(--gray-100);
  cursor: not-allowed;
}
.quiz-btn-prev:disabled:hover {
  border-color: var(--gray-100);
}
.quiz-btn-next {
  background: var(--teal-darker);
  color: var(--white);
  border: 1.5px solid var(--teal-darker);
}
.quiz-btn-next:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.quiz-btn-next:disabled {
  background: var(--gray-200);
  border-color: var(--gray-200);
  color: var(--gray-500);
  cursor: not-allowed;
}
.quiz-btn-next:disabled:hover {
  background: var(--gray-200);
  border-color: var(--gray-200);
}

/* Results screen */
.quiz-result {
  text-align: center;
  padding: 12px 0;
}
.quiz-result-eyebrow {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal-darker);
  margin-bottom: 10px;
}
.quiz-result-score {
  font-family: var(--fd);
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}
.quiz-result-score .total {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 38px;
}
.quiz-result-bucket {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}
.quiz-result-bucket.high {
  color: var(--teal-darker);
}
.quiz-result-bucket.mid {
  color: var(--jde-d);
}
.quiz-result-bucket.low {
  color: var(--navy);
}
.quiz-result-summary {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 28px;
}
.quiz-result-rec {
  background: var(--jde-t);
  border: 1px solid rgba(51, 102, 153, 0.15);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 20px;
  text-align: left;
}
.quiz-result-rec-label {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--jde-dark);
  margin-bottom: 6px;
}
.quiz-result-rec-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.quiz-result-rec-body {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.55;
}
.quiz-result-cta {
  margin-bottom: 16px;
}
.quiz-result-retake {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 13px;
  font-family: var(--fb);
  text-decoration: underline;
  margin: 0 auto;
  padding: 6px 12px;
}
.quiz-result-retake:hover {
  color: var(--navy);
}
/* ═══ TALK ═══ */
.talk-section {
  background: var(--gray-50);
  padding: 56px 0;
}
.talk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media(min-width: 1024px) {
  .talk-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.talk-left .section-header {
  margin: 0;
}
.talk-left .section-header .title {
  color: var(--teal-darker);
}
.talk-left .section-header  .talk-left h2 {
  font-size: clamp(28px, 3.2vw, 36px);
}
.talk-left .section-header .text {
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 480px;
}
.talk-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.talk-check {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--gray-700);
}
.talk-check-icon {
  width: 20px;
  height: 20px;
  background: var(--teal-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-darker);
  flex-shrink: 0;
}
.talk-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.04);
}
.talk-form h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.talk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
.talk-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.talk-form-field.full {
  grid-column: 1 / -1;
}
.talk-form-field label {
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.3px;
}
.talk-form-field input,
.talk-form-field select,
.talk-form-field textarea {
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--fb);
  font-size: 13px;
  color: var(--navy);
  background: var(--white);
}
.talk-form-field input:focus,
.talk-form-field select:focus,
.talk-form-field textarea:focus {
  outline: none;
  border-color: var(--teal-darker);
}
.talk-form-field textarea {
  min-height: 80px;
  resize: vertical;
}
.talk-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 16px;
}
.talk-form-note {
  font-size: 11px;
  color: var(--gray-500);
  flex: 1;
}
.talk-form-submit {
  padding: 14px 24px;
  background: var(--hs);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.talk-form-submit:hover {
  background: var(--hs);
}
/* ═══ FAQ ═══ */
.faq {
  background: var(--gray-50);
  padding: 56px 0;
}
.faq .section-header .title {
  color: var(--teal-darker);
}
.faq-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item summary {
  padding: 22px 28px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background 0.15s;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--teal-darker);
  font-weight: 500;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: var(--gray-50);
}
.faq-item-body {
  padding: 20px 28px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  display: none;
}
.faq-item.open .faq-item-body {
  display: block;
}
.faq-item-body a {
  font-weight: 700;
}
/* ═══ RELATED INDUSTRIES ═══ */
.ri {
  background: var(--white);
  padding: 56px 0;
}
.ri .section-header {
  max-width: 760px;
}
.ri .section-header .title {
  color: var(--teal-darker);
}
.ri-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media(min-width: 640px) {
  .ri-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 1024px) {
  .ri-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ri-card {
  background: var(--jde-t);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    border-color 0.15s ease;
}
.ri-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-darker);
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.08);
}
.ri-card h3 {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.ri-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.555;
}
.ri-arrow {
  font-family: var(--fd);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-darker);
  margin-top: auto;
}
/* ═══ QUICK ANSWERS ═══ */
.qa {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--gray-100);
}
.qa .section-header {
  max-width: 760px;
}
.qa .section-header .title {
  color: var(--teal-darker);
}
.qa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .qa-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .qa-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.qa-item {
  padding: 24px 22px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.qa-item:hover {
  border-color: var(--teal);
  background: var(--white);
}
.qa-q {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.qa-a {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
/* ═══ CORE SERVICES ═══ */
.core-services {
  background: linear-gradient(
    180deg,
    var(--gray-50) 0%,
    var(--jde-t) 35%,
    var(--jde-t) 100%
  );
  padding: 56px 0;
  position: relative;
}
.core-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid rgba(51, 102, 153, 0.12);
  box-shadow: 0 1px 2px rgba(11, 29, 58, 0.03);
}
@media(min-width: 1024px) {
  .core-wrap {
    padding: 56px;
  }
}
.core-services .section-header {
  max-width: 720px;
}
.core-services .section-header .title {
  color: var(--teal-darker);
}
.core-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .core-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .core-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.core-card {
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.core-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}
.core-card.jde {
  background: var(--jde-t);
  border: 1px solid rgba(51, 102, 153, 0.18);
}
.core-card.jde::before {
  background: var(--jde);
}
.core-card.jde .core-card-label {
  color: var(--jde-d);
}
.core-card.jde .core-card-link {
  color: var(--jde-d);
}

.core-card.jde-dark {
  background: radial-gradient(ellipse at top right, rgba(96,165,250,0.18), transparent 55%), linear-gradient(160deg, var(--jde-d), var(--jde) 70%, #3D7BB0);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: var(--white);
}
.core-card.jde-dark::before {
  display: none;
}
.core-card.jde-dark .core-card-label {
  color: var(--jde-l);
}
.core-card.jde-dark .core-card-title {
  color: var(--white);
}
.core-card.jde-dark .core-card-body {
  color: rgba(255, 255, 255, 0.75);
}
.core-card.jde-dark .core-card-link {
  color: var(--jde-l);
}
.core-card.jde-dark .core-card-link:hover {
  color: var(--white);
}

.core-card.ns {
  background: var(--ns-t);
  border: 1px solid rgba(4, 120, 87, 0.18);
}
.core-card.ns::before {
  background: var(--ns);
}
.core-card.ns .core-card-label {
  color: var(--ns-d);
}
.core-card.ns .core-card-link {
  color: var(--ns-d);
}
.core-card.ns .core-card-link:hover {
  color: var(--ns);
}

.core-card.ns-dark {
  background: radial-gradient(ellipse at top right, rgba(52,211,153,0.18), transparent 55%), linear-gradient(160deg, var(--ns-d), var(--ns) 70%, #0A9168);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--white);
}
.core-card.ns-dark::before {
  display: none;
}
.core-card.ns-dark .core-card-label {
  color: var(--ns-l);
}
.core-card.ns-dark .core-card-title {
  color: var(--white);
}
.core-card.ns-dark .core-card-body {
  color: rgba(255, 255, 255, 0.75);
}
.core-card.ns-dark .core-card-link {
  color: var(--ns-l);
}

.core-card.hs {
  background: var(--hs-t);
  border: 1px solid rgba(4, 120, 87, 0.18);
}
.core-card.hs::before {
  background: var(--hs);
}
.core-card.hs .core-card-label {
  color: var(--hs-d);
}
.core-card.hs .core-card-link {
  color: var(--hs-d);
}
.core-card.hs .core-card-link:hover {
  color: var(--hs);
}

.core-card.hs-dark {
  background: linear-gradient(145deg, #5C1D0A, #9A3412, #7A2D10);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--white);
}
.core-card.hs-dark::before {
  display: none;
}
.core-card.hs-dark .core-card-label {
  color: var(--hs-l);
}
.core-card.hs-dark .core-card-title {
  color: var(--white);
}
.core-card.hs-dark .core-card-body {
  color: rgba(255, 255, 255, 0.75);
}
.core-card.hs-dark .core-card-link {
  color: var(--hs-l);
}

.core-card.cyber {
  background: var(--its-t);
  border: 1px solid rgba(4, 120, 87, 0.18);
}
.core-card.cyber::before {
  background: var(--its);
}
.core-card.cyber .core-card-label {
  color: var(--its-d);
}
.core-card.cyber .core-card-link {
  color: var(--its-d);
}
.core-card.cyber .core-card-link:hover {
  color: var(--its);
}
.core-card.cyber-dark {
  background: linear-gradient(145deg, #3B0F6E, #5B21B6, #4A1A8F);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: var(--white);
}
.core-card.cyber-dark::before {
  display: none;
}
.core-card.cyber-dark .core-card-label {
  color: var(--teal);
}
.core-card.cyber-dark .core-card-title {
  color: var(--white);
}
.core-card.cyber-dark .core-card-body {
  color: rgba(255, 255, 255, 0.75);
}
.core-card.cyber-dark .core-card-link {
  color: var(--teal);
}

/* Light TEAL variant — for Managed Services (cross-platform) */
.core-card.teal-light {
  background: var(--teal-tint);
  border: 1px solid rgba(14, 165, 169, 0.18);
  color: var(--navy);
}
.core-card.teal-light::before {
  background: var(--teal-dark);
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
}
.core-card.teal-light .core-card-label {
  color: var(--teal-darker);
}
.core-card.teal-light .core-card-title {
  color: var(--navy);
}
.core-card.teal-light .core-card-body {
  color: var(--gray-700);
}
.core-card.teal-light .core-card-link {
  color: var(--teal-darker);
}

/* Light NAVY variant — for Integrated / Cybersecurity + Cloud */
.core-card.navy-dark {
  background: radial-gradient(
      ellipse at top right,
      rgba(94, 234, 212, 0.14),
      transparent 55%
    ),
    linear-gradient(160deg, var(--navy-dark), var(--navy) 70%, var(--navy-mid));
  border: 1px solid rgba(14, 165, 169, 0.22);
  color: var(--white);
}
.core-card.navy-dark::before {
  display: none;
}
.core-card.navy-dark .core-card-label {
  color: var(--teal-l);
}
.core-card.navy-dark .core-card-title {
  color: var(--white);
}
.core-card.navy-dark .core-card-body {
  color: rgba(255, 255, 255, 0.75);
}
.core-card.navy-dark .core-card-link {
  color: var(--white);
}
.core-card.navy-light {
  background: #f1f5fb;
  border: 1px solid rgba(51, 102, 153, 0.15);
  color: var(--navy);
}
.core-card.navy-light::before {
  background: var(--navy);
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
}
.core-card.navy-light .core-card-label {
  color: var(--navy);
}
.core-card.navy-light .core-card-title {
  color: var(--navy-dark);
}
.core-card.navy-light .core-card-body {
  color: var(--gray-700);
}
.core-card.navy-light .core-card-link {
  color: var(--navy);
}

.core-card.neutral {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.core-card.neutral::before {
  background: var(--teal);
}

.core-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 29, 58, 0.06);
}
.core-card-label {
  font-family: var(--fm);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal-darker);
}
.core-card-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.core-card-body {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}
.core-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal-darker);
  margin-top: 8px;
}
/* ═══ WHY NOW ═══ */
.whynow {
  background: var(--gray-50);
  padding: 56px 0;
  position: relative;
}
.whynow .section-header .title {
  color: var(--teal-darker);
}
.whynow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media(min-width: 1024px) {
  .whynow-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}
.whynow-grid.full {
  grid-template-columns: 1fr;
}
.whynow-stats-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
}
.whynow-stats-column.full {
  gap: 16px;
  flex-direction: row;
}
.whynow-stats-column.full .whynow-stat-card {
  width: 100%;
}
@media(min-width: 768px) {
  .whynow-stats-column.full .whynow-stat-card {
    width: 50%;
  }
}
@media(min-width: 1024px) {
  .whynow-stats-column.full .whynow-stat-card {
    width: 25%;
  }
}
.whynow-stats-column .whynow-stat-card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--gray-100);
  padding: 24px 28px;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: background 0.15s;
}
.whynow-stats-column .whynow-stat-card:last-child {
  border-bottom: none;
}
.whynow-stats-column .whynow-stat-card:hover {
  transform: none;
  background: var(--gray-50);
  box-shadow: none;
}
/* Hero card — JDE BLUE, dominant */
.whynow-hero {
  background: radial-gradient(
      ellipse at top right,
      rgba(96, 165, 250, 0.14),
      transparent 60%
    ),
    linear-gradient(145deg, var(--jde-d), var(--jde) 60%, #2b5b8a);
  color: var(--white);
  border-radius: 18px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.whynow-hero.ns {
  background: radial-gradient(
    ellipse at top right,
    rgba(52, 211, 153, 0.14),
    transparent 60%
  ),
  linear-gradient(145deg, var(--ns-d), var(--ns) 60%, #0a9168);
}
.whynow-hero.hs {}
.whynow-hero.ai {}
.whynow-hero.its {}
.whynow-hero-label {
  font-family: var(--fm);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--jde-light);
  margin-bottom: 16px;
}
.whynow-hero-stat {
  font-family: var(--fd);
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--white), rgba(96, 165, 250, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.whynow-hero-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.whynow-hero-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

/* Supporting cards — light, stacked vertically beside hero */
.whynow-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 1;
}
.whynow-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 29, 58, 0.08);
}
.whynow-card-date {
  display: inline-block;
  font-family: var(--fm);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--hs-d);
  margin-bottom: 12px;
  align-self: flex-start;
  text-transform: uppercase;
}
.whynow-card-date.jde {
  color: var(--jde-d);
}
.whynow-card-date.ns {
  color: var(--ns-dark);
}
.whynow-stat-num {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.whynow-stat-lbl {
  font-family: var(--fb);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
  display: block;
}
/* ═══ BREADCRUMBS ═══ */
.breadcrumb {
  background: var(--gray-50);
  padding: 14px 32px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
  color: var(--gray-500);
}
.breadcrumb .container {
  width: 100%;
}
.breadcrumb a {
  color: var(--gray-600);
  font-weight: 500;
}
.breadcrumb [aria-current] {
  color: var(--navy);
  font-weight: 700;
}
.breadcrumb-sep {
  color: var(--gray-300);
  margin: 0 8px;
}
/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy);
  padding: 56px 0;
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-bottom: 40px;
}
.footer-inner > :first-child {
  grid-column: 1 / -1;
}
@media(min-width: 768px){
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
    grid-column: 1 / -1;
  }
}
@media(min-width: 961px){
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-inner > :first-child {
    grid-column: initial;
  }
}

.footer-brand .f-logo {
  font-family: var(--fd);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}
.footer-brand .f-tag {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer-brand .text {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
}
@media(min-width 992px) {
  .footer-brand .text {
    max-width: 280px;
  }
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.footer-badge {
  font-family: var(--fd);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.3);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.08);
}
.footer-col-title {
  font-family: var(--fd);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col-sub {
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 14px 0 8px;
  opacity: 0.6;
}
.footer-col a {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media(min-width: 768px) {
  .footer-bottom {
    flex-direction: row-reverse;
  }
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}
.footer-bottom-links {
  display: flex;
  flex-flow: row wrap;
  gap: 8px 16px;
}
.footer-bottom-links a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}