/* 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;
 --teal: #0EA5A9;
 --accent: #00BDA5;
 --blue: #2563EB;
 --orange: #F97316;
 --orange-hov: #ea6c0a;
 --white: #FFFFFF;
 --slate: #F1F5F9;
 --border: #E2E8F0;
 --body-txt: #1E293B;
 --muted: #64748B;
 --slate-mid: #E2E8F0;
 --font-display: 'Plus Jakarta Sans',sans-serif;
 --font-body: 'DM Sans',sans-serif;
 --fd: 'Plus Jakarta Sans', sans-serif; 
 --fb: 'DM Sans', sans-serif;
 --ease: cubic-bezier(.22, 1, .36, 1)
}


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(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--body-txt);
  background: var(--white);
  overflow-wrap: break-word;
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

/* 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(--font-display);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.2;
  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: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.dnd-section > .row-fluid {
  max-width: 1200px;
  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;
  }
}


/* ═══ Eyebrow ═══ */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ═══ verdict ═══ */
.verdict {
  background: rgba(14, 165, 169, 0.06);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.65;
}
.verdict strong {
  font-weight: 700;
}


.section-hdr .text {
  font-size: 1rem;
  color: var(--muted);
}
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;
}

/* primary button */
.cta-button, .btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  gap: 8px;
  background: var(--orange); 
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor:pointer;
  white-space: nowrap;
  text-align: center;
  transition: background .15s,transform .15s;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.btn-primary:hover{ 
  background: #ea6b0d;
  transform: translateY(-1px);
  text-decoration: none; 
  color: var(--white);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}

/* secondary button */
.btn-secondary {
  background: transparent; 
  color: var(--white);
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,.35);
  box-shadow: none;
  transition: border-color .15s, background .15s,transform .12s;
}
.btn-secondary:hover{
  border-color: var(--teal);
  background: rgba(14,165,169,.12);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none; 
}

/* ghost button */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
  transition: border-color .2s, background .2s;
  box-shadow: none;
}
.btn-ghost:hover { 
  border-color: var(--white); 
  background: rgba(255,255,255,.07); 
  text-decoration: none; 
}

/* green button */
.btn-green {
  background: var(--accent);
  color: var(--white);
  border: var(--accent);
  box-shadow: none;
}
.btn-green:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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;
  padding: 11px 14px;
  background: #f1f5f9;
  font-size: 0.92rem;
  color: var(--navy);
  width: 100%;
  outline: none;
  box-shadow: none;
  width: 100% !important;
  border: 1.5px solid transparent;
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

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 {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 169, .1);
  background: var(--white);
}

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 {
  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.7rem 0;
}

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

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: 0.875rem;
  margin: 0 0 1.4rem;
}

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 {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  gap: 8px;
  background: var(--orange); 
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor:pointer;
  white-space: nowrap;
  text-align: center;
  transition: background .15s,transform .15s;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
form input[type=submit]:hover, 
form .hs-button:hover { 
  background: #ea6b0d;
  transform: translateY(-1px);
  text-decoration: none; 
  color: var(--white);
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
}

/* 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;
}

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

/* ═══ HEADER ═══ */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(11, 29, 58, 0.04);
}
.header .container {
  max-width: 1200px;
  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;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.52rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

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

.nav-items > li {
  position: relative;
}
.nav-items > li > a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  padding: 20px 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-items > li > a:hover {
  color: var(--teal);
}
.chevron {
  font-size: 0.5rem;
  color: var(--muted);
  transition: transform 0.2s;
}
.nav-items > li:hover .chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

/* Dropdown panel */
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--white);
  border: 1px solid var(--border);
  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;
}
.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(--border);
}
.dd-product-name {
  font-family: var(--font-display);
  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-family: var(--font-body);
  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(--border);
}
.dd-group-label:not(:first-child) {
  margin-top: 14px;
}
.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(--border);
  margin: 10px 0;
}
.dd-footer-link {
  display: block;
  padding: 10px 0 0;
  margin-top: 8px;
  border-top: 1px solid var(--border);
  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);
  gap: 10px;
  margin-top: 10px;
}
.dd-grid-item {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.dd-grid-item:hover {
  background: var(--slate);
  border-color: var(--teal);
  transform: translateY(-1px);
  text-decoration: none;
}
.dd-grid-title {
  font-family: var(--font-body);
  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(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  margin-left: 12px;
}
.nav-cta:hover {
  background: var(--orange-hov);
  transform: translateY(-1px);
  text-decoration: none;
}
/* ═══ Hero Main ═══ */
.hero {
  background: linear-gradient(180deg, #e3f0fa 0%, #d4e8f5 40%, #ddeef2 70%, #e6f4f4 100%);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center; 
  max-width: 640px;
  margin: 0 auto;
}
@media(min-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr 1.1fr;
    margin: 0;
    text-align: left;
    max-width: 100%;
  }
}
.hero__content {
  animation: reveal 0.7s var(--ease) both;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media(min-width: 960px) {
  .hero__content {
    align-items: flex-start;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(14, 165, 169, 0.12);
  border-radius: 24px;
  padding: 7px 20px;
  margin: 0 auto 28px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
@media(min-width: 768px) {
  .hero__badge {
    margin: 0 0 28px;
  }
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
.hero h1 {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero h1.medium {
  font-size: clamp(2rem,4vw,3rem);
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero__swap {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.08em;
}
.hero__swap-sizer {
  visibility: hidden;
  display: block;
  height: 0;
  overflow: hidden;
  white-space: nowrap;
}
.hero__swap em {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  animation: heroSwap 12s infinite;
  white-space: nowrap;
  font-style: normal;
  color: var(--teal);
}
.hero__swap em:nth-child(1) {
  animation-delay: 0s;
}
.hero__swap em:nth-child(2) {
  animation-delay: 4s;
}
.hero__swap em:nth-child(3) {
  animation-delay: 8s;
}
@keyframes heroSwap {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  4% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  34% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.hero__sub {
  color: #3b4f68;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-ghost {
  color: var(--navy);
  border-color: rgba(11, 29, 58, 0.2);
  font-weight: 700;
}
.hero .btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(11, 29, 58, 0.04);
  color: var(--navy);
}
.hero__dash {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11, 29, 58, 0.2),
    0 4px 12px rgba(11, 29, 58, 0.08);
  animation: reveal 0.7s var(--ease) 0.15s both;
  display: flex;
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, #0b1d3a 0%, #122b52 100%);
}

.hero__bottom {
  animation: reveal 0.6s var(--ease) 0.2s both;
  margin-top: 48px;
}
.hero__proof {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 800px;
}
.hero__proof-item {
  font-family: var(--fb);
  font-size: 0.86rem;
  color: var(--muted);
  white-space: nowrap;
  padding: 8px;
}
.hero__proof-item strong {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  color: var(--teal);
  font-size: 1.15rem;
}
.hero__proof-muted {
  color: rgba(11, 29, 58, 0.25);
  font-size: 0.82rem;
}
.hero__proof-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(11, 29, 58, 0.15);
  margin: 0 16px;
  flex-shrink: 0;
}
@media(max-width: 640px) {
  .hero__proof-sep { 
    display: none;
  }
}
.hero__logos {
  padding: 14px 0 16px;
  margin-top: 14px;
  border-top: 1px solid rgba(11, 29, 58, 0.06);
}
.hero__logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 36px;
  flex-wrap: wrap;
}
.hero__logos-row span {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 0.88rem;
  color: rgba(11, 29, 58, 0.22);
  letter-spacing: -0.2px;
  white-space: nowrap;
}


.hero__price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  animation: reveal 0.6s var(--ease) 0.3s both;
  padding: 16px 28px;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .hero__price-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
}


.hero__price-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero__price-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero__price-val {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}
.hero__price-val span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}
.hero__proof2{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media(max-width: 767px) {
  .hero__proof2{
    display: block;
  }
}

.hero__proof2-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__proof-val {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1;
}
.hero__proof2-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.2;
}
.hero__proof2-div {
  width: 1px;
  height: 28px;
  background: rgba(11, 29, 58, 0.1);
}
/* ═══ Hero Centered ═══ */
.hero-centered {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}
.hero-centered::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(94, 166, 135, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-centered::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(94, 166, 135, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-centered__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media(min-width: 992px) {
  .hero-centered__layout {
    grid-template-columns: 1fr 440px;
    gap: 48px;
  }
  /* 👇 If only one child exists, make it full width */
  .hero-centered__layout > .hero-centered__inner:only-child {
    grid-column: 1 / -1;
  }
}
.hero-centered h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-centered h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-centered__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-centered__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-centered__note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 14px;
  display: block;
}
/* ═══ Hero Stats ═══ */
.hero-stats {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f2347 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
@media(min-width: 768px) {
  .hero-stats {
    padding: 96px 0 88px;
  }
}

.hero-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(14, 165, 169, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(min-width: 992px) {
  .hero-stats__grid {
    grid-template-columns: 1fr 420px;
  }
}

.hero-stats__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 169, 0.15);
  border: 1px solid rgba(14, 165, 169, 0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 24px;
}
.hero-stats__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}
.hero-stats__badge span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-stats__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 169, 0.15);
  border: 1px solid rgba(14, 165, 169, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.hero-stats h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-stats h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-stats__sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-stats__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* card stats */
.card-stats {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.card-stats__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}
.card-stats__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-stats__stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--teal);
  min-width: 72px;
}
.card-stats__label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.hero-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}


/* multiple stats grid */
.hero-stats__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media(min-width: 992px) {
  .hero-stats__inner {
    gap: 60px;
  }
}
.multiple-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .multiple-stats {
    grid-template-columns: 1fr 1fr;
  }
}
.multiple-stats__stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px 16px;
}
.multiple-stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.multiple-stats__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.multiple-stats__source {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
}
/* ═══ Proof Bar ═══ */
.proof-bar {
  background: linear-gradient(135deg, rgba(94, 166, 135, 0.08) 0%, rgba(94, 166, 135, 0.03) 100%);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.proof-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}
@media(min-width: 768px) {
  .proof-bar__inner {
    gap: 40px;
  }
}

.pstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pstat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.pstat__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}
.proof-bar__div {
  width: 1px;
  height: 44px;
  background: var(--border);
  display: none;
}

@media(min-width: 768px) {
  .proof-bar__div {
    display: block;
  }
}
/* ═══ Pricing ═══ */
.pricing {
  background: #edf5f0;
  padding: 64px 0;
}
.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin: 40px auto 0;
}
@media(min-width: 768px){
  .pricing__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 768px){
  .pricing__cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing__cta {
  margin-top: 48px;
  text-align: center;
}
.p-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-card__tier {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.p-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.p-card__price span {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
}
.p-card__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.p-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  padding: 0 0 0 10px;
  flex: 1;
}
.p-card__list li {
  font-size: 0.88rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.p-card__list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
/* ═══ Pricing Comparison ═══ */
.pricing-comparison {
  background: var(--slate);
  padding: 64px 0;
}
.pricing-comparison .section-hdr h2 {
  margin-bottom: 14px;
}
.pricing-comparison .section-hdr .text {
  margin-bottom: 40px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.pricing-card--hs {
  border-top: 3px solid var(--teal);
}
.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  min-height: 60px;
}
.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.pricing-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(14, 165, 169, 0.1);
  color: var(--teal);
}
.pricing-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  min-height: 44px;
}
.pricing-line:last-child {
  border-bottom: none;
}
.pricing-line__label {
  color: #475569;
}
.pricing-line__val {
  font-weight: 600;
  color: var(--navy);
}
.pricing-line__val--teal {
  color: var(--teal);
}
/* ═══ Pricing Hiring ═══ */
.compare {
  background: linear-gradient(180deg, #fef7f1 0%, #fef0ee 60px, var(--white) 140px, var(--white) calc(100% - 140px), #f8fafc 100%);
  padding: 80px 0;
}
.compare__card {
  background: linear-gradient(145deg, #fef3eb 0%, #fdeadb 50%, #fef0ee 100%);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
@media(min-width: 960px) {
  .compare__card {
    padding: 48px;
  }
}
.compare__card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.compare__inner {
  align-items: center;
  position: relative;
}
@media(min-width: 768px) {
  .compare__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media(min-width: 992px) {
  .compare__inner {
    grid-template-columns: 2fr 3fr;
  }
}
.compare__card .section-hdr h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.compare__card .section-hdr .eyebrow {
  color: var(--orange);
}
.compare__card .section-hdr .text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 24px;
}
.compare__card .compare__ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.compare__card .table-note {
  font-size: .76rem;
  color: var(--muted);
  margin-top: 12px;
}
.table-responsive {
  width: 100%;
}
@media (max-width: 767px) {
  .table-responsive {
    overflow-x: auto;
    margin-top: 40px;
  }
}
.compare__table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 767px) {
  .compare__table {
    min-width: 600px;
  }
}
.compare__table th {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.compare__table td {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-size: 0.86rem;
  color: var(--navy);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.compare__table td:first-child {
  font-weight: 600;
}
.compare__table .highlight {
  color: #c2410c;
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
}
/* ═══ FAQ ═══ */
.faq {
  background: linear-gradient(180deg, rgba(94, 166, 135, 0.04) 0%, rgba(94, 166, 135, 0.01) 100%);
  padding: 64px 0;
}
.faq h2 {
  margin-bottom: 32px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-top: 1px solid #e2e8f0;
}
.faq__item:last-of-type {
  border-bottom: 1px solid #e2e8f0;
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.5;
}
.faq__chev {
  transition: transform 0.22s;
  flex-shrink: 0;
  margin-left: 14px;
}
.faq__item.open .faq__chev {
  transform: rotate(180deg);
}
.faq__item.open .faq__a {
  display: block;
}
.faq__a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
}
.faq__a a {
  color: var(--teal);
}
/* ═══ Final CTA ═══ */
.final-cta,
.fcta {
  background: var(--navy, #0b1d3a);
  padding: 80px 0;
}
.final-cta .container,
.fcta .container {
  text-align: center;
}
.final-cta .section-hdr h2 {
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.final-cta .section-hdr .text {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.7;
}

.final__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cross-links {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cl-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 14px;
  text-align: center;
}
.cl-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cl-pill {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  border-radius: 24px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  display: inline-block;
}
.cl-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
/* ═══ Client Results ═══ */
.proof {
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate) 90%, #e8ecf0 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.proof .section-hdr {
  text-align: center;
}
.proof .section-hdr h2 {
  line-height: 1.1;
  margin-bottom: 12px;
}
.proof .section-hdr .text {
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 48px;
}
.proof__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11, 29, 58, 0.03);
}
@media(min-width: 768px) {
  .proof__stats {
    flex-direction: row; 
  }
}

.proof__stat {
  text-align: center;
  padding: 14px;
  flex: 1;
  position: relative;
  transition: background 0.2s;
}
@media(min-width: 768px) {
  .proof__stat {
    padding: 12px 24px;
  }
}
@media(min-width: 992px) {
  .proof__stat {
    padding: 20px 36px;
  }
}

.proof__stat:hover {
  background: rgba(14, 165, 169, 0.02);
}
.proof__stat+.proof__stat {
  border-top: 1px solid var(--border);
}
@media(min-width: 768px) {
  .proof__stat+.proof__stat {
    border: none;
  }
}

.proof__stat + .proof__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
  display: none;
}
@media(min-width: 768px) {
  .proof__stat+.proof__stat::before {
    display: block;
  }
}

.proof__stat-n {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  transition: transform 0.2s var(--ease);
}
.proof__stat:hover .proof__stat-n {
  transform: scale(1.03);
}
.proof__stat-n .a {
  color: var(--teal);
  font-size: 0.45em;
  font-weight: 700;
}
.proof__stat-l {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}
/* Review cards */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}
@media(min-width: 640px) {
  .proof__grid, .proof__grid.two, .proof__grid.three, .proof__grid.four {
    grid-template-columns: repeat(2, 1fr)
  }
}
@media(min-width: 992px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
  .proof__grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof__grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .proof__grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rcard {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(11, 29, 58, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.08);
  border-color: rgba(14, 165, 169, 0.15);
}
.rcard__persona {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  opacity: 0.5;
  margin-bottom: 10px;
  align-self: start;
}
.rcard__quote {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
  align-self: start;
}
.rcard__quote strong {
  color: var(--teal);
  font-weight: 700;
}
.rcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  align-self: end;
}
.rcard__info {
}
.rcard__name {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  line-height: 1.2;
}
.rcard__role {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.rcard__src {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.rcard__src::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0.5;
}
.rcard__src--clutch {
  color: var(--teal);
}
.rcard__src--clutch::before {
  background: var(--teal);
}
.rcard__src--hubspot {
  color: var(--teal);
}
.rcard__src--hubspot::before {
  background: var(--teal);
}
.rcard__src--g2 {
  color: var(--teal);
}
.rcard__src--g2::before {
  background: var(--teal);
}
/* ═══ Testimonial Card ═══ */
.testimonial {
  background: #fff;
  padding: 64px 0;
}
.testimonial__card {
  max-width: 740px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0b1d3a 0%, #0a2a2b 100%);
  border-radius: 20px;
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}
.testimonial__card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(14, 165, 169, 0.08);
  pointer-events: none;
}
.testimonial__card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(14, 165, 169, 0.05);
  pointer-events: none;
}

.testimonial__quote {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: #fff;
  line-height: 1.55;
  letter-spacing: -0.3px;
  position: relative;
}
.testimonial__quote strong {
  color: var(--teal);
}
.testimonial__footer {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 24px;
}
.testimonial__name {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
.testimonial__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
  font-family: var(--font-body, "DM Sans", sans-serif);
}
.testimonial__source {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.testimonial__platform {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.testimonial__platform-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal, #0ea5a9);
  opacity: 0.6;
}
@media (max-width: 640px) {
  .testimonial__card {
    padding: 36px 28px;
  }
  .testimonial__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial__source {
    align-items: flex-start;
  }
}



/* Light Version */
.testimonial__card.light {
  background: #fff;
  border: 1px solid rgba(14,165,169,.15);
}
.testimonial__card.light::before {
  background: rgba(14,165,169,0.06);
}
.testimonial__card.light::after {
  background: rgba(14,165,169,0.04);
}
.testimonial__card.light .testimonial__quote, .testimonial__card.light .testimonial__name {
  color: var(--navy);
}
.testimonial__card.light .testimonial__quote strong {
  color: #388ECC;
}
.testimonial__card.light .testimonial__role, .testimonial__card.light .testimonial__platform {
  color: var(--muted);
}
.testimonial__card.light .testimonial__footer {
  border-top: 1px solid rgba(14,165,169,.12);
}
/* ═══ Testimonial light ═══ */
.testimonial-light {
  background: #eff6ff;
  padding: 32px 0 48px;
}
.testimonial-light__block {
  background: var(--white);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
}
.testimonial-light__quote {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.testimonial-light__quote strong { 
  color: var(--teal);
}
.testimonial-light__attr {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.testimonial-light__name {
  font-family: var(--font-b, "DM Sans", sans-serif);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
}
.testimonial-light__role {
  font-size: 0.78rem;
  color: #64748b;
}
.testimonial-light__sep {
  color: #cbd5e1;
  font-size: 0.78rem;
}
.testimonial-light__platform {
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.testimonial-light__platform-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
/* ═══ Hub Chooser ═══ */
.services {
  background: var(--navy, #0b1d3a);
  padding: 64px 0;
}
.services .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.services .section-hdr {
  margin-bottom: 40px;
}
.services .section-hdr .eyebrow {
  color: var(--teal);
}
.services .section-hdr h2 {
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.services .section-hdr .text {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .services__grid.one {
    grid-template-columns: 1fr;
  }
  .services__grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .services__grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hub-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
}
.hub-card.border-top {
  border-width: 3px 0 0;
}
.hub-card.border-right {
  border-width: 0 3px 0 0;
}
.hub-card.border-left {
  border-width: 0 0 0 3px;
}
.hub-card.border-bottom {
  border-width: 0 0 3px;
}
.hub-card:hover {
  border-color: rgba(14, 165, 169, 0.5);
  box-shadow: 0 8px 32px rgba(14, 165, 169, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.hub-card__hub {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal, #0ea5a9);
  margin-bottom: 12px;
}
.hub-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hub-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14, 165, 169, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hub-card__icon img {
  width: 20px;
  height: 20px;
}
.hub-card__title {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.hub-card__desc {
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex: 1;
}
.hub-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body, "DM Sans", sans-serif);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal, #0ea5a9);
  transition: gap 0.15s;
  margin-top: 18px;
}
.hub-card:hover .hub-card__cta {
  gap: 10px;
}
/* ═══ Timeline ═══ */
.timeline {
  background: linear-gradient(180deg, #f1f5f9 0%, #eff2f5 50%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.timeline .section-hdr {
  text-align: center;
  position: relative;
}
.timeline .section-hdr h2 {
  line-height: 1.1;
  margin-bottom: 10px;
}
.timeline .section-hdr .text {
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 48px;
}


/* Timeline */
.timeline-steps {
  position: relative;
  padding: 0 0 48px;
}
.timeline-steps__line {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  z-index: 0;
  display: none;
}
@media (min-width: 992px) {
  .timeline-steps__line {
    display: block;
  }
}
.timeline-steps__line-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), #f97316);
  width: 0;
  transition: width 2s var(--ease);
}

.steps-holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .steps-holder {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}
.timeline-step h3 {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.timeline-step .timeline-step__text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}
/* Node */
.timeline-step__node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.5s, background 0.5s, transform 0.4s;
  position: relative;
}
.timeline-step__node svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.5s;
}
.timeline-step.is-active .timeline-step__node {
  border-color: var(--teal);
  background: rgba(14, 165, 169, 0.06);
  transform: scale(1.08);
}
.timeline-step.is-active .timeline-step__node svg {
  stroke: var(--teal);
}
.timeline-step.is-done .timeline-step__node {
  border-color: var(--teal);
  background: var(--teal);
}
.timeline-step.is-done .timeline-step__node svg {
  stroke: #fff;
}
/* Pulse on active */
.timeline-step.is-active .timeline-step__node::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 169, 0.2);
  animation: nodePulse 2s infinite;
}
@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}
/* Last node is orange for Accelerate */
.timeline-step__acc.is-active .timeline-step__node {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
}
.timeline-step__acc.is-active .timeline-step__node svg {
  stroke: var(--orange);
}
.timeline-step__acc.is-active .timeline-step__node::after {
  border-color: rgba(249, 115, 22, 0.2);
}
.timeline-step__acc.is-done .timeline-step__node {
  border-color: var(--orange);
  background: var(--orange);
}
.timeline-step__acc.is-done .timeline-step__node svg {
  stroke: #fff;
}
/* Label and body */
.timeline-step__label {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.5s;
}
.timeline-step.is-active .timeline-step__label,
.timeline-step.is-done .timeline-step__label {
  color: var(--teal);
}
.timeline-step__acc.is-active .timeline-step__label,
.timeline-step__acc.is-done .timeline-step__label {
  color: var(--orange);
}
/* ═══ Timeline Accordion ═══ */
.timeline-accordion {
  background: linear-gradient(180deg, #e4f0f0 0%, #dceeed 30%, #d4e9e9 55%, #dfeeed 80%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.timeline-accordion::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.timeline-accordion .section-hdr {
  text-align: center;
  position: relative;
}
.timeline-accordion .section-hdr h2 {
  line-height: 1.1;
  margin-bottom: 10px;
}
.timeline-accordion .section-hdr .text {
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 48px;
}
.timeline-accordion__acc {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.pacc {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.pacc:hover {
  border-color: rgba(14, 165, 169, 0.2);
  background: rgba(255, 255, 255, 0.85);
}
.pacc.is-open {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(14, 165, 169, 0.08);
  background: rgba(255, 255, 255, 0.9);
}
.pacc__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
}
.pacc__num {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--teal);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(14, 165, 169, 0.08);
  border: 2px solid rgba(14, 165, 169, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.pacc.is-open .pacc__num {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.pacc__header h3 {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  flex: 1;
  line-height: 1.25;
  margin: 0;
}
.pacc__week {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14, 165, 169, 0.06);
  padding: 4px 14px;
  border-radius: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s;
}
.pacc.is-open .pacc__week {
  background: rgba(14, 165, 169, 0.12);
  color: var(--teal);
}
.pacc__chev {
  width: 20px;
  height: 20px;
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.25s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.pacc.is-open .pacc__chev {
  transform: rotate(180deg);
  color: var(--teal);
}
.pacc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.pacc.is-open .pacc__body {
  max-height: 200px;
}
.pacc__body-inner {
  padding:0 20px 20px 20px;
}
@media(min-width: 992px) {
  .pacc__body-inner {
    padding: 0 28px 24px 78px;
  }
}
.pacc__body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.65;
}
/* ═══ Wrokflow ═══ */
.workflow {
  background: linear-gradient(180deg, #e6f4f4 0%, #eef3f7 6%, var(--slate) 14%, var(--slate) 92%, #f6f8fa 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.workflow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(14, 165, 169, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.workflow .section-hdr {
  text-align: center;
}
.workflow .section-hdr h2 {
  line-height: 1.1;
  margin-bottom: 12px;
}
.workflow .section-hdr .text {
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 48px;
}

.workflow__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media(min-width: 768px){
  .workflow__panels{ 
    grid-template-columns: 1fr 1fr;
  }
}
.spanel {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.spanel:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11, 29, 58, 0.1);
}
.spanel__header {
  padding: 20px 32px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spanel--arch .spanel__header {
  background: var(--white);
}
.spanel--accel .spanel__header {
  background: #fef7f1;
}
.spanel__visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.spanel__visual svg {
  position: relative;
  z-index: 1;
  width: 85%;
  height: auto;
}
.spanel--arch .spanel__visual {
  background: linear-gradient(145deg, #0b2d2e 0%, #0f3f40 40%, #0b1d3a 100%);
}
.spanel--accel .spanel__visual {
  background: linear-gradient(145deg, #2d1b08 0%, #3f2a10 40%, #0b1d3a 100%);
}
.spanel__visual::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
}
.spanel--arch .spanel__visual::before {
  background: radial-gradient(
    circle,
    rgba(14, 165, 169, 0.12) 0%,
    transparent 70%
  );
}
.spanel--accel .spanel__visual::before {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 70%
  );
}
.spanel__visual::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
}
.spanel--arch .spanel__visual::after {
  background: radial-gradient(
    circle,
    rgba(14, 165, 169, 0.06) 0%,
    transparent 70%
  );
}
.spanel--accel .spanel__visual::after {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.05) 0%,
    transparent 70%
  );
}
.spanel__body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spanel--arch .spanel__body {
  background: var(--white);
}
.spanel--accel .spanel__body {
  background: #fef7f1;
}
.spanel__label-text {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
}
.spanel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.spanel--arch .spanel__dot {
  background: var(--teal);
}
.spanel--accel .spanel__dot {
  background: var(--orange);
}
.spanel__name {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.4px;
  line-height: 1;
  margin-bottom: 16px;
}
.spanel--arch .spanel__name {
  color: var(--teal);
}
.spanel--accel .spanel__name {
  color: var(--orange);
}
.spanel h3 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
}
.spanel__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}
.spanel__ctas {
  margin-top: 28px;
}
.spanel .btn-primary {
  font-size: 0.86rem;
  padding: 12px 24px;
}
/* ═══ Wrokflow 02 ═══ */
.workflow-02 {
  background: linear-gradient(180deg,var(--slate) 0%,var(--white) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.workflow-02 .section-hdr h2 {
  letter-spacing: -0.4px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.workflow-02 .section-hdr .text {
  line-height: 1.65;
  margin-bottom: 32px;
}

.workflow__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width: 768px) {
  .workflow__cards.two, .workflow__cards.three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 992px) {
  .workflow__cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.scard {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.scard > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.scard__number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(14, 165, 169, 0.15);
  line-height: 1;
  flex-shrink: 0;
}
.scard h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 8px;
}
.scard__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.scard__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap .2s;
  margin-top: 24px;
}
.scard.shadow {
  border-width: 5px 0 0;
}
.scard.shadow:hover, .scard.shadow:hover, .scard.shadow:hover {
  box-shadow: 0 12px 40px rgba(11,29,58,.18), 0 4px 12px rgba(11,29,58,.10);
}
.scard.scard--teal {
  background: rgba(14,165,169,.04);
  border-color: rgba(14,165,169,.2);
}
.scard.scard--teal .scard__link {
  color: var(--teal);
}
.scard.scard--blue {
  background: rgba(37,99,235,.04);
  border-color: rgba(37,99,235,.18);
}
.scard.scard--blue .scard__link {
  color: var(--blue);
}
.scard.scard--orange {
  background: rgba(249,115,22,.04);
  border-color: rgba(249,115,22,.2);
}
.scard.scard--orange .scard__link {
  color: var(--orange);
}
/* ═══ Wrokflow 03 ═══ */
.workflow-03 {
  background: linear-gradient(to bottom, #F1F5F9 0%, var(--white) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.workflow-03 .section-hdr .eyebrow {
  color: var(--teal);
}
.workflow-03 .section-hdr h2 {
  line-height: 1.1;
  margin-bottom: 12px;
}
.workflow-03 .section-hdr .text {
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.workflow-03 .holder {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 32px;
  align-items: start;
}
.workflow-03 .step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.workflow-03 .step__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  color: #fff;
}
.workflow-03 .step__bullots {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
  top: 5px;
}
.workflow-03 .step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.workflow-03 .step__text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}
.workflow-03 .card-box {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
}
.workflow-03 .card-box__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.workflow-03 .card-box__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workflow-03 .card-box__list .text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--muted);
}
.workflow-03 .card-box__list .text span {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.workflow-03 .card-box .note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(14,165,169,.06);
  border: 1px solid rgba(14,165,169,.15);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}
.workflow-03 .card-box .note strong {
  color: var(--teal);
}
/* ═══ Who We Help ═══ */
.who-we-help {
  background: linear-gradient(180deg, #f6f8fa 0%, #ffffff 6%, #ffffff 92%, #fafafa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.wwh__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}
@media(min-width: 992px) {
  .wwh__layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.wwh__left {
}
.who-we-help .eyebrow {
  color: var(--teal);
}
.wwh__left .section-hdr h2 {
  letter-spacing: -0.8px;
  line-height: 1.06;
  margin-bottom: 24px;
}
.wwh__left .section-hdr h2 em {
  font-style: normal;
  color: var(--teal);
}
.wwh__left .section-hdr .text {
  line-height: 1.65;
  margin-bottom: 28px;
}
.wwh__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.wwh__pill {
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 24px;
  padding: 7px 18px;
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.wwh__pill:hover {
  border-color: var(--teal);
  background: rgba(14, 165, 169, 0.04);
}
.wwh__pill.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 4px 12px rgba(14, 165, 169, 0.2);
}
.wwh__left .btn-primary {
  font-size: 0.9rem;
  padding: 14px 30px;
}
/* Right — showcase card, aligned with h2 */
.wwh__showcase {
  position: relative;
}
.wwh__card {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 29, 58, 0.07);
  flex-direction: column;
  animation: wwh-fade 0.35s var(--ease) both;
}
.wwh__card.is-visible {
  display: flex;
}
@keyframes wwh-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.wwh__card-visual {
  height: 140px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) {
  .wwh__card-visual {
    height: 200px;
  }
}

.wwh__card-visual svg {
  position: relative;
  z-index: 1;
  width: 92%;
  height: auto;
}
.wwh__card-visual--teal {
  background: linear-gradient(135deg, #0b2d2e 0%, #0f3f40 50%, #0b1d3a 100%);
}
.wwh__card-visual--green {
  background: linear-gradient(135deg, #0c2e1e 0%, #143f2c 50%, #0b1d3a 100%);
}
.wwh__card-visual--blue {
  background: linear-gradient(135deg, #0f2136 0%, #173350 50%, #0b1d3a 100%);
}
.wwh__card-visual--orange {
  background: linear-gradient(135deg, #2d1b08 0%, #3f2a10 50%, #0b1d3a 100%);
}
.wwh__card-visual--steel {
  background: linear-gradient(135deg, #15243d 0%, #1b3150 50%, #0b2d2e 100%);
}
.wwh__card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wwh__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.wwh__card-name {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}
.wwh__card-tag {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 8px;
  white-space: nowrap;
  color: var(--teal);
  background: rgba(14, 165, 169, 0.08);
}
.wwh__card-client {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
  font-size: 0.72rem;
  color: rgba(11, 29, 58, 0.2);
  margin-bottom: 8px;
}
.wwh__card-work {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.wwh__card-result {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--navy);
  line-height: 1.5;
}
.wwh__card-result strong {
  font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
  font-weight: 800;
}
.wwh__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  text-decoration: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: color 0.15s;
}
.wwh__card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s;
}
.wwh__card:hover .wwh__card-link {
  color: var(--teal);
}
.wwh__card:hover .wwh__card-link svg {
  transform: translateX(3px);
}
/* ═══ Who We Help 02 ═══ */
.who-we-help-02 {
  background: var(--navy-mid);
  padding: 80px 0 64px;
}
.who-we-help-02 .section-hdr h2 {
  color: #fff;
  line-height: 1.25;
}
.who-we-help-02 .section-hdr .text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
}
.who__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 768px) {
  .who__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.who__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.who__tag {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.who__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media(min-width: 768px){
  .who__cards.two, .who__cards.three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 992px){
  .who__cards.two {
    grid-template-columns: 1fr;
  }
  .who__cards.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .who__cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.who__cards.full-w {
  grid-template-columns: 1fr;
}
.who__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 20px 18px;
}
.who__card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  margin-bottom: 7px;
}
.who__card .text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.6;
}
/* ═══ Expertise═══ */
.svc {
  background: #fafafa;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.svc .section-hdr {
  text-align: center;
  margin-bottom: 40px;
}
.svc .section-hdr .text {
  line-height: 1.6;
  margin: 0 auto;
}
.svc .section-hdr h2 {
  line-height: 1.08;
  margin-bottom: 10px;
}
.svc .section-hdr__hint {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.svc__strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.svc__strip::-webkit-scrollbar {
  height: 4px;
}
.svc__strip::-webkit-scrollbar-track {
  background: transparent;
}
.svc__strip::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.svc__card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
}
.svc__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
  border-radius: 3px 0 0 3px;
}
.svc__card:hover {
  border-color: rgba(14, 165, 169, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.08);
}
.svc__card:hover::before {
  opacity: 1;
}
.svc__card-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.svc__card-visual--teal {
  background: linear-gradient(160deg, #e6f7f7 0%, #d0f0ef 100%);
}
.svc__card-visual--orange {
  background: linear-gradient(160deg, #fef3eb 0%, #fdeadb 100%);
}
.svc__card-visual--navy {
  background: linear-gradient(160deg, #edf1f7 0%, #dde5f0 100%);
}
.svc__card-visual--green {
  background: linear-gradient(160deg, #e6f7f0 0%, #d0f0e4 100%);
}
.svc__card-visual--purple {
  background: linear-gradient(160deg, #f0eefe 0%, #e4e0fd 100%);
}
.svc__card-visual--red {
  background: linear-gradient(160deg, #fef0ee 0%, #fde2de 100%);
}
.svc__card-visual--blue {
  background: linear-gradient(160deg, #ebf2fe 0%, #dbeafe 100%);
}
.svc__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc__card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc__card-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc__card-eyebrow {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.svc__card-eyebrow--teal {
  color: var(--teal);
}
.svc__card-eyebrow--orange {
  color: var(--orange);
}
.svc__card-eyebrow--navy {
  color: var(--navy);
}
.svc__card-eyebrow--green {
  color: #16a34a;
}
.svc__card-eyebrow--blue {
  color: #2563eb;
}
.svc__card-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 8px;
  min-height: 2.3em;
}
.svc__card-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 14px;
  min-height: 4.5em;
}
.svc__card-stat {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}
.svc__card-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
}
.svc__card-stat-spacer {
  min-height: 2.6em;
}
.svc__card-link {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  margin-top: auto;
}
.svc__card:hover .svc__card-link {
  gap: 8px;
}
/* ═══ Call out CTA ═══ */
.coa {
  background: #fafafa;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.coa__inner {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.coa .section-hdr {
  flex: 1;
  position: relative;
}
.coa .section-hdr .eyebrow {
  letter-spacing: 1.2px;
  color: var(--teal);
  margin-bottom: 10px;
}
.coa .section-hdr h3 {
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.coa .section-hdr .text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}
.coa .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .coa__inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
  .coa .btn-primary {
    width: 100%;
  }
}
/* ═══ Benefits ═══ */
.creds {
  background: linear-gradient(
    180deg,
    #f0f7f7 0%,
    var(--slate) 6%,
    var(--slate) 94%,
    #edf3f7 100%
  );
  padding: 48px 0 80px;
}

.included {
  padding: 56px 0 0;
  position: relative;
}
.included .section-hdr {
  text-align: center;
  margin-bottom: 32px;
}
.included .section-hdr h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.12;
  margin: 0 0 8px;
}
.included .section-hdr .eyebrow {
  margin-bottom: 8px;
}
.included .section-hdr .text {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.included__scroll {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px;
}
@media(min-width: 768px) {
  .included__scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(min-width: 992px) {
  .included__scroll {
    grid-template-columns: repeat(5, 1fr);
  }
}
.icard {
  border-radius: 16px;
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
}
.icard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 29, 58, 0.08);
  border-color: rgba(14, 165, 169, 0.12);
}
.icard__keyword {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--teal);
}
.icard--orange .icard__keyword {
  color: var(--orange);
}
.icard__title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.25;
  margin-bottom: 6px;
  color: var(--navy);
}
.icard__desc {
  font-size: 0.86rem;
  line-height: 1.5;
  flex: 1;
  color: var(--muted);
}
.icard__tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 12px;
}
.icard__tag--free {
  background: rgba(14, 165, 169, 0.08);
  color: var(--teal);
}
.icard__tag--guarantee {
  background: rgba(249, 115, 22, 0.07);
  color: var(--orange);
}
.icard__tag--std {
  background: var(--slate);
  color: var(--muted);
}
/* ═══ Process ═══ */
.process {
  background: var(--white);
  padding: 64px 0;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 44px;
}
@media(min-width: 768px) {
  .process__steps.two, .process__steps.three {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 992px) {
  .process__steps.one {
    grid-template-columns: 1fr;
  }
  .process__steps.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .process__steps.three {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pstep__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.8rem;
  color: rgba(94, 166, 135, 0.18);
  line-height: 1;
  margin-bottom: 10px;
}
.pstep h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pstep .pstep__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.pstep .pstep__badge {
  display: inline-block;
  margin-top: 16px;
  align-self: flex-start;
  background: rgba(108,140,180,.1);
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  margin-top: 14px;
}
/* ═══ Quiz ═══ */
.pathfinder {
  background: linear-gradient(180deg,#F0F7F7 0%,#E6F4F4 6%,#D8EDEE 30%,#E0EFF5 60%,#EDF3F7 90%,var(--slate) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.pathfinder::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.pathfinder::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,rgba(249, 115, 22, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.pf__layout {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.pathfinder .section-hdr {
  text-align: center;
  margin-bottom: 36px;
}
.pathfinder .section-hdr .eyebrow {
  color: var(--navy);
  opacity: 0.35;
}
.pathfinder .section-hdr h2 {
  letter-spacing: -0.4px;
  line-height: 1.12;
  margin-bottom: 10px;
}
.pathfinder .section-hdr h2 em {
  font-style: normal;
  color: var(--teal);
}
.pathfinder .section-hdr .text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
/* Needs grid */
.pf__needs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.pf__need {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px;
  background: var(--white);
  border: 1.5px solid rgba(14, 165, 169, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
  text-align: left;
  font-family: var(--fb);
  position: relative;
}
.pf__need:hover {
  border-color: rgba(14, 165, 169, 0.25);
  box-shadow: 0 4px 16px rgba(14, 165, 169, 0.06);
  transform: translateY(-2px);
}
.pf__need.is-selected {
  border-color: var(--teal);
  background: rgba(14, 165, 169, 0.03);
  box-shadow: 0 4px 20px rgba(14, 165, 169, 0.1);
}
.pf__need-check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(14, 165, 169, 0.2);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.pf__need.is-selected .pf__need-check {
  background: var(--teal);
  border-color: var(--teal);
}
.pf__need-check svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.pf__need.is-selected .pf__need-check svg {
  opacity: 1;
}
.pf__need-body {
  flex: 1;
  min-width: 0;
}
.pf__need-label {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.pf__need-desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.pf__need--fun {
  border-style: dashed;
  border-color: rgba(249, 115, 22, 0.2);
}
.pf__need--fun:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.06);
}
.pf__need--fun.is-selected {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.03);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}
.pf__need--fun.is-selected .pf__need-check {
  background: var(--orange);
  border-color: var(--orange);
}
.pf__need.is-locked {
  cursor: default;
}
.pf__need.is-locked:hover {
  transform: none;
}
.pf__need-toast {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: #fff;
  font-family: var(--fb);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10;
}
.pf__need-toast::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}
.pf__need-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Submit */
.pf__submit {
  text-align: center;
}
.pf__submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--orange);
  color: #fff;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  min-width: 200px;
  white-space: nowrap;
  transition: background 0.15s, transform 0.2s, box-shadow 0.2s;
}
.pf__submit-btn:hover {
  background: var(--orange-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}
.pf__submit-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.pf__submit-count {
  font-family: var(--fb);
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 8px;
}
/* Results */
.pf__results {
  display: none;
  animation: pf-fade 0.35s var(--ease) both;
}
.pf__results.is-visible {
  display: block;
}
@keyframes pf-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.pf__results-header {
  text-align: center;
  margin-bottom: 28px;
}
.pf__results-header h3 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pf__results-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto;
}
.pf__rec {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.pf__rec:hover {
  border-color: var(--teal);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(14, 165, 169, 0.08);
}
.pf__rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.pf__rec-dot--primary {
  background: var(--teal);
}
.pf__rec-dot--secondary {
  background: var(--orange);
}
.pf__rec-dot--fun {
  background: #f59e0b;
}
.pf__rec-body {
  flex: 1;
}
.pf__rec-title {
  display: block;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 6px;
}
.pf__rec-desc {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}
.pf__rec-arrow {
  color: var(--border);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
  transition: color 0.15s, transform 0.15s;
}
.pf__rec:hover .pf__rec-arrow {
  color: var(--teal);
  transform: translateX(3px);
}
.pf__rec--highlight {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(14, 165, 169, 0.06);
}
.pf__restart-row {
  text-align: center;
  margin-top: 20px;
}
.pf__restart {
  font-family: var(--fb);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.pf__restart:hover {
  color: var(--navy);
  background: rgba(14, 165, 169, 0.06);
}
/* ═══ Carousel ═══ */
.carousel-section {
  background: linear-gradient(
    160deg,
    #e6f4f4 0%,
    #d0edee 30%,
    #e2eff5 60%,
    #f0f6fa 100%
  );
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.carousel-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 169, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.carousel-section::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 29, 58, 0.04) 0%, transparent 55%);
  pointer-events: none;
}
.carousel-section .section-hdr {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
@media(min-width: 992px) {
  .carousel-section .section-hdr {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}
.carousel-section .section-hdr .eyebrow {
  color: var(--teal);
}
.carousel-section .section-hdr h2 {
  line-height: 1.08;
  margin-bottom: 0;
}
.carousel-section .section-hdr .text {
  line-height: 1.65;
}
.carousel-slider  {
  position: relative;
  padding: 0 0 20px;
  overflow: hidden;
  margin-right: -30px;
}
@media(min-width: 768px) {
  .carousel-slider  {
    padding: 0 56px 20px;
    margin: 0;
  }
}
@media(min-width: 992px) {
  .carousel-slider  {
    padding: 0 56px 20px;
  }
}
.carousel-slider  .slick-list {
  margin: 0 -12px;
}
@media(max-width: 767px) {
  .carousel-slider  .slick-list {
    padding: 0 60px 0 0 !important;
  }
}
.carousel-slider  .slick-slide {
  padding: 0 12px;
}
.carousel__card {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(11, 29, 58, 0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    flex 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  opacity: 1; 
}
@media(min-width: 992px) {
  .carousel__card {
    opacity: 0.8;
    transform: scale(0.95);
  }
}
.slick-center .carousel__card {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 16px 48px rgba(11, 29, 58, 0.12);
  z-index: 2;
}
.carousel__card:hover {
  box-shadow: 0 16px 48px rgba(11, 29, 58, 0.13);
}
.carousel__visual {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media(min-width: 768px) {
  .carousel__visual {
    height: 200px;
  }
}
.carousel__visual svg {
  position: relative;
  z-index: 1;
  width: 88%;
  height: auto;
}
.carousel__visual--teal {
  background: linear-gradient(135deg, #0b2d2e 0%, #0f3f40 50%, #0b1d3a 100%);
}
.carousel__visual--orange {
  background: linear-gradient(135deg, #2d1b08 0%, #3f2a10 50%, #0b1d3a 100%);
}
.carousel__visual--navy {
  background: linear-gradient(135deg, #0b1d3a 0%, #122b52 50%, #0b2d2e 100%);
}
.carousel__visual--steal {
  background: linear-gradient(135deg, #15243d 0%, #1b3150 50%, #0b2d2e 100%);
}
.carousel__visual--blue {
  background: linear-gradient(135deg, #0f2136 0%, #173350 50%, #0b1d3a 100%);
}
.carousel__body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media(min-width: 768px) {
  .carousel__body {
    padding: 28px 28px 24px;
  }
}
.carousel__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
@media(min-width: 768px) {
  .carousel__body h3 {
    font-size: 1.2rem;
  }
}
.carousel__body .text {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 0;
}
.carousel__link {
  display: inline-block;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--navy);
  transition: color 0.15s, border-color 0.15s;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s, margin 0.3s, color 0.15s,
    border-color 0.15s;
}
.slick-center .carousel__link {
  opacity: 1;
  max-height: 40px;
}
.carousel__link:hover {
  color: var(--teal);
  border-color: var(--teal);
}
.carousel-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.06);
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  z-index: 5;
  color: var(--navy);
}
.carousel-slider .slick-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.carousel-slider .slick-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel-slider .slick-arrow.slick-prev {
  left: 2px;
}
.carousel-slider .slick-arrow.slick-next {
  right: 2px;
}
.carousel-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}
.carousel-slider .slick-dots li {
  line-height: 0;
}
.carousel-slider .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0.15;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, transform 0.2s;
  font-size: 0;
}
.carousel-slider .slick-dots li.slick-active button {
  opacity: 0.6;
  transform: scale(1.3);
}
/* ═══ Solutions ═══ */
.what-section {
  background: var(--white);
  padding: 80px 0;
}
.what-section .section-hdr .eyebrow {
  color: var(--teal);
}
.what-section .section-hdr h2 {
  margin-bottom: 18px;
}
.what-section .section-hdr .text {
  line-height: 1.7;
  margin-bottom: 16px;
}

.gtm-motions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media(min-width: 768px) {
  .gtm-motions.two, .gtm-motions.three {
    grid-template-columns: 1fr 1fr;
  }
}
@media(min-width: 992px) {
  .gtm-motions.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.motion-card {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.motion-card:hover {
  border-color: var(--teal);
}
.motion-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.motion-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.motion-card h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0;
}
.motion-card p {
  font-size: 0.84rem;
  color: #475569;
  line-height: 1.6;
}
.motion-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14, 165, 169, 0.08);
  border-radius: 8px;
  padding: 2px 8px;
  margin-top: 8px;
}
/* ═══ Process Table ═══ */
.process-table {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8f0f8 100%);
  padding: 64px 0;
}
.process-table .section-hdr {
  margin-bottom: 48px;
}
.process-table .section-hdr .eyebrow {
  color: var(--teal);
}
.process-table .section-hdr h2 {
  margin-bottom: 12px;
}
.process-table .section-hdr .text {
  margin-top: 12px;
}
.fix-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(11,29,58,.08), 0 1px 2px rgba(11,29,58,.06);
  margin-top: 20px;
}
.fix-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 12px 14px;
  text-align: left;
}
.fix-table td {
  padding: 14px 14px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--slate-mid);
  vertical-align: top;
}
.fix-table tr:last-child td {
  border-bottom: none;
}
.fix-table tr:hover td {
  background: var(--slate);
}
.fix-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.fix-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.fix-badge-teal {
  background: rgba(14, 165, 169, 0.1);
  color: var(--teal-dim);
}
.fix-badge-navy {
  background: rgba(11, 29, 58, 0.1);
  color: var(--navy);
}
.fix-badge-orange {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
}
/* ═══ Support ═══ */
.ongoing {
  background: linear-gradient(180deg, rgba(0,189,165,.10) 0%, rgba(0,189,165,.06) 100%);
  padding: 48px 0;
}
.ongoing .buttons {
  margin-top: 24px; 
  text-align: center;
}
.accel-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px 40px;
  color: #fff;
}
.accel-block__top {
  margin-bottom: 28px;
}
.accel-block__heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.accel-block__body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.accel-block__plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 40px;
  align-items: start;
}
@media(min-width: 768px) {
  .accel-block__plans {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 40px;
  }
} 
.accel-divider {
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}
.accel-col__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.accel-col__sublabel {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}
.accel-tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.accel-tier-row--featured {
  background: rgba(14, 165, 169, 0.1);
  border-radius: 6px;
  padding: 10px 12px;
  border-bottom: none;
  margin: 4px -12px;
}
.accel-tier__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  flex: 1;
}
.accel-tier__detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}
.accel-tier__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  white-space: nowrap;
}
.accel-tier__price span {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.accel-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 2px 8px;
  white-space: nowrap;
}
.accel-bulk-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.accel-bulk__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}
.accel-bulk__detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}
.accel-bulk__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}
.accel-bulk__note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  line-height: 1.5;
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.55);
}

.process {
  background: #f1f5f9;
}

.pricing {
  background: #ebf8f6;
}
/* ═══ Comparison Table ═══ */
.comparison {
  background: var(--white);
  padding: 64px 0;
}
.comparison .section-hdr {
  margin-bottom: 48px;
}
.comparison .section-hdr {
  margin-bottom: 48px;
}
.compare-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-bottom: 32px;
}
.control-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control-row--split {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.control-row__left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control-row__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.control-row__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 72px;
}
.toggle-group {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  flex-wrap: wrap;
}
@media(min-width: 768px) {
  .toggle-group {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    gap: 0;
  }
}
.toggle-btn {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 9px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
@media(min-width: 768px) {
  .toggle-btn {
    border: none;
    border-radius: 0;
  }
}
.toggle-btn:hover {
  color: var(--navy);
}
.toggle-btn--active {
  background: var(--accent);
  color: #fff;
}

/* ═══ Compare table  ═══ */
.comparison__table {
  width: 100%;
  border-collapse: collapse;
}
.comparison__table th,
.comparison__table td {
  padding: 13px 18px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--body-txt);
  border-bottom: 1px solid var(--border);
}
.comparison__table thead th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  padding: 14px 18px;
}
.comparison__table thead .thead-top th {
  background: var(--navy);
  color: #fff;
  border-bottom: none;
}
.comparison__table thead .thead-top th:first-child {
  border-radius: 10px 0 0 0;
}
.comparison__table thead .thead-top th:last-child {
  border-radius: 0 10px 0 0;
}
.comparison__table thead .thead-top th.col-fi {
  background: var(--accent);
}
.comparison__table thead .thead-cols th {
  background: var(--slate);
  color: var(--navy);
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-bottom: 1px solid var(--border);
}
.comparison__table thead th:nth-child(2),
.comparison__table thead th:nth-child(3),
.comparison__table td:nth-child(2),
.comparison__table td:nth-child(3) {
  text-align: center;
  width: 180px;
}
.compare__grp {
  background: var(--slate);
}
.compare__grp td {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 0.2px;
  padding: 12px 18px;
}
.comparison__table .ck {
  color: var(--accent);
  font-weight: 700;
}
.comparison__table .no {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
}
.comparison__table .ltd {
  color: #d97706;
  font-size: 0.82rem;
  font-weight: 600;
}
.compare__grp td {
  position: relative;
}
.grp__label {
  display: inline;
}
.grp__chev {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  transition: transform 0.2s;
  color: var(--muted);
}
.grp--collapsed .grp__chev {
  transform: rotate(-90deg);
}
.compare__grp:hover {
  background: rgba(14, 165, 169, 0.04);
}
.ck-ast {
  text-decoration: none;
  cursor: help;
  font-style: normal;
}
.comparison__table .add-note {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}
.comparison__table tbody tr:hover {
  background: rgba(14, 165, 169, 0.02);
}
.compare__price-row td {
  border-top: 2px solid var(--border);
  padding-top: 20px;
  padding-bottom: 20px;
}
.compare__price-row .price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  display: block;
  line-height: 1.2;
}
.compare__price-row .price-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}

@media (max-width: 768px) {
  .comparison__table th,
  .comparison__table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
  .comparison__table td:nth-child(2),
  .comparison__table td:nth-child(3),
  .comparison__table thead th:nth-child(2),
  .comparison__table thead th:nth-child(3) {
    width: 100px;
  }
  .compare-controls {
    gap: 10px;
  }
  .toggle-btn {
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .control-row__label {
    min-width: 56px;
    font-size: 0.7rem;
  }
  .control-row {
    flex-wrap: wrap;
  }
}
/* ═══ About Us ═══ */
.about-us {
  background: #fff;
  padding: 64px 0;
}
.about-us .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}
@media(min-width: 768px) {
  .about-us .grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.about-us .section-hdr .eyebrow {
  color: var(--teal);
}
.about-us .section-hdr h2 {
  margin-bottom: 14px;
}
.about-us .section-hdr .text {
  line-height: 1.65;
  margin-bottom: 16px;
}
/* ═══ Approach ═══ */
.approach {
  background: var(--slate);
  padding: 64px 0;
}
.approach .container {
  max-width: 800px;
}
.approach .section-hdr .eyebrow {
  color: var(--teal);
}
.approach .section-hdr h2 {
  margin-bottom: 14px;
}
.approach .section-hdr .text {
  line-height: 1.65;
  margin-bottom: 16px;
}
/* ═══ About Us ═══ */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f2347 100%);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.contact:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 20% 60%, rgba(14,165,169,.13) 0%, transparent 65%);
  pointer-events: none;
}
.contact .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}
@media(min-width: 768px) {
  .contact .grid {
    grid-template-columns: 1fr 460px;
    gap: 64px;
  }
}
.contact .section-hdr .eyebrow {
  color: var(--teal);
}
.contact .section-hdr h1 {
  color: #fff;
  margin-bottom: 12px;
}
.contact .section-hdr h1 em {
  color: var(--orange);
  font-style: normal;
}
.contact .section-hdr .text {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.trust h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0;
}
.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-check::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.trust-item-text {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  margin-top: 3px;
}
.trust-item-text strong {
  display: block;
  font-size: 0.93rem;
  color: var(--white);
  font-weight: 600;
}
.contact .proof-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  overflow: hidden;
}
@media(max-width: 479px) {
  .contact .proof-row {
    flex-wrap: wrap;
  }
}
.contact .proof-cell {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}
.contact .proof-cell:last-child {
  border: none;
}
@media(max-width: 479px) {
  .contact .proof-cell {
    flex: inherit;
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
  }
}
.contact .proof-cell-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  display: block;
}
.contact .proof-cell-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}
.contact .note {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  margin-top: 20px;
}
.contact .note a {
  color: var(--teal);
  text-decoration: underline;
}




/* ── BOOKING WIDGET ─────────────────────────────────────────── */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.booking-header {
  background: var(--navy);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.booking-rep {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rep-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.rep-info {
  flex: 1;
}
.rep-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.rep-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}
.meeting-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.meeting-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 4px 10px;
}
.meeting-pill svg {
  flex-shrink: 0;
}

/* Steps indicator */
.booking-steps {
  display: flex;
  border-bottom: 1px solid var(--slate-mid);
}
.booking-step-tab {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.booking-step-tab.active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}
.booking-step-tab.done {
  color: var(--teal);
}

/* Step panels */
.booking-body {
  padding: 0;
}
.booking-panel {
  display: none;
}
.booking-panel.active {
  display: block;
}

/* ── Step 1: Calendar ── */
.cal-wrap {
  padding: 20px 22px 16px;
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.cal-month {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.cal-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--slate-mid);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.15s;
  font-size: 0.9rem;
}
.cal-arrow:hover {
  background: var(--slate);
  border-color: var(--navy);
}
.cal-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0 8px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: 1.5px solid transparent;
  color: var(--navy);
  background: none;
}
.cal-day:disabled {
  background: transparent;
  border: none;
}
.cal-day:hover:not(:disabled):not(.empty) {
  background: var(--slate);
  border-color: var(--slate-mid);
}
.cal-day.today {
  font-weight: 700;
  color: var(--teal);
}
.cal-day.selected {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cal-day.unavailable {
  color: #cbd5e1;
  cursor: not-allowed;
}
.cal-day.empty {
  cursor: default;
}
.cal-day.has-slots {
  position: relative;
}
.cal-day.has-slots::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}
.cal-day.selected::after {
  background: rgba(255, 255, 255, 0.7);
}
.cal-legend {
  display: flex;
  gap: 16px;
  padding: 10px 22px 16px;
  border-top: 1px solid var(--slate-mid);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--muted);
}
.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Step 2: Time slots ── */
.slots-wrap {
  padding: 20px 22px;
}
.slots-date-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.slots-tz {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.slots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.slot-btn {
  padding: 11px 10px;
  border: 1.5px solid var(--slate-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.slot-btn:hover {
  border-color: var(--teal);
  background: rgba(14, 165, 169, 0.04);
}
.slot-btn.selected {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.slots-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: 16px;
  background: none;
  border: none;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.15s;
}
.slots-back:hover {
  color: var(--navy);
}

/* ── Step 3: Details form ── */
.details-wrap {
  padding: 20px 22px;
}
.details-selected {
  background: var(--slate);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.details-change {
  font-size: 0.78rem;
  color: var(--teal);
  cursor: pointer;
  font-weight: 500;
}
.det-group {
  margin-bottom: 14px;
}
.det-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.det-group input,
.det-group select {
  width: 100%;
  padding: 10px 13px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--slate);
  border: 1.5px solid var(--slate-mid);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.det-group input:focus,
.det-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 165, 169, 0.12);
  background: var(--white);
}
.det-group input::placeholder {
  color: #94a3b8;
}
.det-group select {
  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;
}
.det-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.confirm-btn {
  white-space: nowrap;
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  margin-top: 6px;
  transition: all 0.2s;
}
.confirm-btn:hover {
  background: var(--orange-hov);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}
.booking-privacy {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
  line-height: 1.5;
}
.booking-privacy a {
  color: var(--blue);
}

/* ── Step 4: Confirmed ── */
.confirmed-wrap {
  padding: 32px 22px;
  text-align: center;
}
.confirmed-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(14, 165, 169, 0.1);
  border: 2px solid rgba(14, 165, 169, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.confirmed-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.confirmed-wrap p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.confirmed-detail {
  background: var(--slate);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 20px;
}
.confirmed-detail-row {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--body-text);
  padding: 6px 0;
  border-bottom: 1px solid var(--slate-mid);
}
.confirmed-detail-row:last-child {
  border-bottom: none;
}
.confirmed-detail-row strong {
  color: var(--navy);
  min-width: 70px;
  flex-shrink: 0;
}
.add-cal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  background: none;
  border: 1.5px solid var(--slate-mid);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-family: var(--font-body);
  transition: all 0.15s;
}
.add-cal:hover {
  border-color: var(--teal);
  background: rgba(14, 165, 169, 0.06);
}


.contact .form-holder {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 12px;
  padding: 28px 32px 32px;
}
.contact .form-holder.dark {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
}
.contact .form-holder.dark form label, .contact .form-holder.dark form .hs-richtext {
  color: #fff;
}
.contact .form-holder form label.hs-error-msg {
  color: #EF6B51;
}
.form-holder form .hs-richtext a {
  color: var(--teal);
}
/* ═══ Implementation ═══ */
.wbuild {
  background: linear-gradient(180deg, #edf6f6 0%, #e8f2f2 40%, #e4f0f0 100%);
  padding: 80px 0;
}
.wbuild__top {
  margin-bottom: 36px;
  text-align: center;
}
.wbuild h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.wbuild h2 em {
  font-style: normal;
  color: var(--teal);
}
.wbuild__sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* Layer pills */
.wbuild__layer-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center;
}
@media (max-width: 767px) {
  .wbuild__layer-pills {
    flex-direction: column;
    align-items: stretch;
  }
}
.wbuild__lpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 28px;
  padding: 12px 28px;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .wbuild__lpill {
    justify-content: center;
  }
}
.wbuild__lpill:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.wbuild__lpill.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.wbuild__lpill-count {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.72rem;
  background: rgba(14, 165, 169, 0.12);
  color: var(--teal);
  border-radius: 12px;
  padding: 2px 10px;
  transition: all 0.15s;
}
.wbuild__lpill.is-active .wbuild__lpill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
/* Panels */
.wbuild__panel {
  display: none;
}
.wbuild__panel.is-active {
  display: block;
}
/* Worth knowing inline text */
.wbuild__worth {
  font-family: var(--fb);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}
.wbuild__worth strong {
  font-family: var(--fd);
  font-weight: 800;
  color: var(--teal-text);
  font-size: 0.8rem;
}
/* Hub pill selector */
.wbuild__hub-pills {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
@media (max-width: 767px) {
  .wbuild__hub-pills {
    border: none;
    gap: 6px;
    flex-direction: column;
  }
}
.wbuild__hpill {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s;
  border-right: 1px solid var(--border);
  position: relative;
}
.wbuild__hpill:last-child {
  border-right: none;
}
.wbuild__hpill::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}
.wbuild__hpill:hover {
  background: var(--slate);
}
.wbuild__hpill.is-active {
  background: rgba(14, 165, 169, 0.02);
}
.wbuild__hpill.is-active::after {
  background: var(--hub-c, var(--teal));
}
.wbuild__hpill-name {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.84rem;
  color: var(--navy);
  transition: color 0.2s;
}
.wbuild__hpill.is-active .wbuild__hpill-name {
  color: var(--hub-c, var(--teal));
}
.wbuild__hpill-price {
  font-family: var(--fb);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
/* Detail card */
.wbuild__detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 29, 58, 0.06);
  border-top: 3px solid var(--hub-c, var(--teal));
  animation: hubCardIn 0.35s var(--ease) both;
  display: none;
}
.wbuild__detail.is-active {
  display: block;
}
@keyframes hubCardIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.wbuild__detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 767px) {
  .wbuild__detail-inner {
    grid-template-columns: 1fr;
  }
}
.wbuild__detail-left {
  padding: 36px;
  border-right: 1px solid var(--border);
}
.wbuild__detail-right {
  padding: 36px;
  background: rgba(14, 165, 169, 0.015);
}
@media (max-width: 767px) {
  .wbuild__detail-left, .wbuild__detail-right {
    padding: 24px 20px;
  }
}
.wbuild__detail-name {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.wbuild__detail-price {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.wbuild__detail-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
}
.wbuild__detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  background: var(--hub-c, var(--teal));
  border: none;
  border-radius: 10px;
  min-width: 160px;
  white-space: nowrap;
  transition: all 0.2s;
}
.wbuild__detail-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.wbuild__detail-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.15s;
}
.wbuild__detail-link:hover svg {
  transform: translateX(3px);
}
/* Diff list */
.wbuild__diff-label {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--hub-c, var(--teal));
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wbuild__diff-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.wbuild__diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wbuild__diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  font-family: var(--fb);
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.35;
}
.wbuild__diff-item:last-child {
  border-bottom: none;
}
.wbuild__diff-ck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(14, 165, 169, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wbuild__diff-ck svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--hub-c, var(--teal));
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wbuild__diff-hs {
  margin-left: auto;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  font-style: italic;
  flex-shrink: 0;
}
/* Specialized cards */
.wbuild__spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media(min-width: 768px) {
  .wbuild__spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(min-width: 992px) {
  .wbuild__spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wbuild__scard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.wbuild__scard:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(11, 29, 58, 0.07);
  border-color: rgba(14, 165, 169, 0.2);
  text-decoration: none;
}
.wbuild__scard-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 165, 169, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wbuild__scard-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wbuild__scard-name {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.wbuild__scard-price {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.wbuild__scard-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}
.wbuild__scard-link {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.74rem;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap 0.15s;
}
.wbuild__scard-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.wbuild__scard:hover .wbuild__scard-link {
  gap: 8px;
}
.wbuild__scard:hover .wbuild__scard-link svg {
  transform: translateX(3px);
}
/* ═══ Serives 02 ═══ */
.wserve {
  background: linear-gradient(
    180deg,
    rgba(254, 247, 241, 0.35) 0%,
    var(--white) 120px,
    var(--white) 70%,
    #fef7f1 100%
  );
  padding: 80px 0;
  position: relative;
}
.wserve__layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wserve__top {
  text-align: center;
}
.wserve .eyebrow {
  color:var(--orange);
}
.wserve h2 {
  font-family: var(--fd);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.wserve h2 em {
  font-style: normal;
  color: var(--orange);
}
.wserve__sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.wserve__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.wserve__note {
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
  margin-top: 16px;
}
.wserve__pill {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 24px;
  padding: 8px 20px;
  font-family: var(--fb);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
  background: var(--white);
  cursor: pointer;
}
.wserve__pill:hover,
.wserve__pill.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  text-decoration: none;
}
.wserve__showcase {
  position: relative;
  min-height: 340px;
}
.wserve__pair {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
  transform: translateY(8px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 960px) {
  .wserve__pair {
    grid-template-columns: 1fr;
  }
}
.wserve__pair.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  position: relative;
}
.wserve__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(11, 29, 58, 0.06);
  display: flex;
  flex-direction: column;
}
.wserve__card--tasks {
}
.wserve__card--outcome {
  background: #eff6ff;
  border-color: #dbeafe;
}
.wserve__card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wserve__card-visual--orange {
  background: linear-gradient(145deg, #2d1b08 0%, #3f2a10 40%, #0b1d3a 100%);
}
.wserve__card-visual--green {
  background: linear-gradient(145deg, #0b2e1a 0%, #0f402a 40%, #0b1d3a 100%);
}
.wserve__card-visual--blue {
  background: linear-gradient(145deg, #0b1a2e 0%, #0f2a40 40%, #0b1d3a 100%);
}
.wserve__card-visual--teal {
  background: linear-gradient(145deg, #0b2d2e 0%, #0f3f40 40%, #0b1d3a 100%);
}
.wserve__card-visual--navy {
  background: linear-gradient(145deg, #0b1d3a 0%, #122b52 100%);
}
.wserve__card-body {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wserve__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  gap: 5px 0;
}
@media(max-width: 767px) {
  .wserve__card-head {
    flex-wrap: wrap;
  }
}
.wserve__card-name {
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--navy);
}
@media(max-width: 767px) {
  .wserve__card-name {
    width: 100%;
  }
}
.wserve__card-tag {
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #c2410c;
  border: 1px solid rgba(194, 65, 12, 0.25);
  border-radius: 6px;
  padding: 3px 10px;
}
@media(max-width: 767px) {
  .wserve__card-tag {
    margin-bottom: 10px;
  }
}
.wserve__card-sub {
  font-family: var(--fb);
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.wserve__card-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.wserve__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.wserve__card-list li {
  font-family: var(--fb);
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  padding: 5px 0 5px 18px;
  position: relative;
}
.wserve__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
}
.wserve__card-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 165, 169, 0.06);
  border: 1px solid rgba(14, 165, 169, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.wserve__card-stat__val {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0d8f92;
  line-height: 1;
  flex-shrink: 0;
}
.wserve__card-stat__text {
  font-family: var(--fb);
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}
.wserve__card-stat__src {
  font-family: var(--fb);
  font-size: 0.7rem;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.wserve__card-link {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: color 0.15s;
}
.wserve__card-link:hover {
  color: var(--orange);
}
.wserve__card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.15s;
}
.wserve__card:hover .wserve__card-link svg {
  transform: translateX(3px);
}
/* Outcome card overrides */
.wserve__card--outcome .wserve__card-tag {
  color: var(--teal);
  border-color: rgba(14, 165, 169, 0.25);
}
.wserve__card--outcome .wserve__card-link {
  border-top-color: #dbeafe;
}
/* ═══ Quiz 02 ═══ */
.quiz {
  padding: 24px 0;
}
.quiz-holder {
  background: linear-gradient(145deg, #fef3eb 0%, #fdeadb 50%, #fef0ee 100%);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 0;
  border: 1.5px solid var(--orange);
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.08);
  overflow: hidden;
}
.quiz__intro {
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .quiz__intro {
    flex-direction: column;
    text-align: center;
  }
}
.quiz__intro::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.quiz__intro::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.quiz__intro-content {
  flex: 1;
  position: relative;
}
.quiz__intro-title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.quiz__intro-sub {
  font-family: var(--fb);
  font-size: 0.88rem;
  color: #5c4033;
  line-height: 1.55;
  margin-bottom: 0;
}
.quiz__intro-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.quiz__intro-btn {
  background: none;
  border: none;
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1rem;
  color: #c2410c;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.15s, color 0.15s;
  padding: 0;
  position: relative;
  white-space: nowrap;
}
.quiz__intro-btn:hover {
  color: var(--orange-hov);
  gap: 12px;
}
.quiz__intro-btn svg {
  transition: transform 0.15s;
}
.quiz__intro-btn:hover svg {
  transform: translateX(3px);
}
.quiz__intro-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  position: relative;
}
.quiz__intro-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.2);
}
.quiz__body {
  display: none;
  padding: 24px 24px;
  background: rgba(255, 255, 255, 0.85);
}
.quiz__body.is-active {
  display: block;
}
.quiz__title {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.quiz__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.quiz__step {
  display: none;
}
.quiz__step.is-active {
  display: block;
}
.quiz__q {
  font-family: var(--fd);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.4;
}
.quiz__options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.quiz__opt {
  display: flex;
  align-items: flex-start;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--white);
  font-family: var(--fb);
  font-size: 0.88rem;
  color: var(--navy);
  line-height: 1.5;
}
.quiz__opt:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.03);
}
.quiz__opt.is-selected {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
}
.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.quiz__dots {
  display: flex;
  gap: 6px;
}
.quiz__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s;
}
.quiz__dot.is-active {
  background: var(--orange);
}
.quiz__dot.is-done {
  background: rgba(249, 115, 22, 0.35);
}
.quiz__btn {
  font-family: var(--fb);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.quiz__btn--next {
  background: var(--orange);
  color: #fff;
}
.quiz__btn--next:hover {
  background: var(--orange-hov);
}
.quiz__btn--back {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.quiz__btn--back:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.quiz__result {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.quiz__result.is-active {
  display: block;
}
.quiz__rec-plan {
  font-family: var(--fd);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 4px;
}
.quiz__rec-reason {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 20px;
}
/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy);
  padding: 56px 0 0;
}
.footer .container {
  max-width: 1200px;
  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: 0.9fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-inner > :first-child {
    grid-column: initial;
  }
}

.footer-brand .text {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 12px 0 16px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.footer-badge {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.52rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 14px;
}
.footer-col-sub {
  font-family: var(--font-body);
  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: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover {
  color: var(--teal);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 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: 0.68rem;
  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;
  }
}