/* 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 */
  scroll-behavior: smooth;
}

/* 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.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

body.header-mobile-menu-open {
  overflow: hidden;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* 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 alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  align-items: center;
  background-color: var(--button-bg, #162c57);
  border-radius: var(--button-radius, 9999px);
  color: var(--button-color, #fff);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: var(--button-size, 16px);
  font-weight: 500;
  gap: var(--button-gap, 6px);
  justify-content: center;
  letter-spacing: 0;
  line-height: var(--button-line-height, 24px);
  min-height: var(--button-min-height, 44px);
  overflow: hidden;
  padding: var(--button-padding, 12px 20px);
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: var(--button-transform, none);
  transition: all 0.15s linear;
  white-space: nowrap;
  max-width: 100%;
}

button:hover,
button:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus {
  background-color: var(--button-hover-bg, #102347);
  border: var(--button-hover-border, var(--button-border, 2px solid rgba(255, 255, 255, 0.12)));
  color: var(--button-hover-color, #fff);
  text-decoration: none;
}

button:focus-visible,
.button:focus-visible,
.hs-button:focus-visible {
  outline: 2px solid var(--button-focus-ring, #84caff);
  outline-offset: 2px;
}

button:active,
.button:active,
.hs-button:active {
  background-color: var(--button-active-bg, #0c1f40);
  transform: translateY(1px);
}

.button--secondary,
.hs-button--secondary,
button.button--secondary,
input[type=submit].button--secondary,
.button--ghost,
.hs-button--ghost,
button.button--ghost,
input[type=submit].button--ghost {
  --button-bg: var(--button-secondary-bg, #fff);
  --button-border: var(--button-secondary-border, 1px solid #e8e5e1);
  --button-color: var(--button-secondary-color, #5c534b);
  --button-hover-bg: var(--button-secondary-hover-bg, #f8f6f3);
  --button-hover-border: var(--button-secondary-hover-border, 1px solid #d9d3cc);
  --button-hover-color: var(--button-secondary-hover-color, #5c534b);
  --button-active-bg: var(--button-secondary-active-bg, #f0ebe6);
  font-weight: 500;
}

.button--ghost,
.hs-button--ghost,
button.button--ghost,
input[type=submit].button--ghost {
  --button-bg: var(--button-ghost-bg, var(--button-secondary-bg, #fff));
  --button-border: var(--button-ghost-border, var(--button-secondary-border, 1px solid #e8e5e1));
  --button-color: var(--button-ghost-color, var(--button-secondary-color, #5c534b));
  --button-hover-bg: var(--button-ghost-hover-bg, var(--button-secondary-hover-bg, #f8f6f3));
  --button-hover-border: var(--button-ghost-hover-border, var(--button-secondary-hover-border, 1px solid #d9d3cc));
  --button-hover-color: var(--button-ghost-hover-color, var(--button-secondary-hover-color, #5c534b));
  --button-active-bg: var(--button-ghost-active-bg, var(--button-secondary-active-bg, #f0ebe6));
}

.button--dark-gray,
.hs-button--dark-gray,
button.button--dark-gray {
  --button-bg: #3d3631;
  --button-border: 2px solid rgba(255, 255, 255, 0.12);
  --button-color: #fff;
  --button-hover-bg: #2e2824;
  --button-hover-border: 2px solid rgba(255, 255, 255, 0.12);
  --button-hover-color: #fff;
  --button-active-bg: #231f1c;
}

button svg,
.button svg,
.hs-button svg,
button img,
.button img,
.hs-button img {
  flex: 0 0 auto;
  height: var(--button-icon-size, 20px);
  width: var(--button-icon-size, 20px);
}

button svg,
.button svg,
.hs-button svg {
  fill: currentColor;
  stroke: currentColor;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: var(--button-disabled-bg, #d0d0d0);
  border-color: var(--button-disabled-bg, #d0d0d0);
  box-shadow: none;
  color: var(--button-disabled-color, #e6e6e6);
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 420px) {
  button,
  .button,
  .hs-button {
    white-space: normal;
  }
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: 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;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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

/* 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 {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  transition: all 0.15s linear;
  white-space: nowrap;
}

@media (max-width: 420px) {
  form input[type=submit],
  form .hs-button {
    white-space: normal;
    width: 100%;
  }
}

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

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

/* Header */

.header {
  background-color: transparent;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header__container {
  align-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  gap: 12px;
  height: 72px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0;
  position: relative;
  transition:
    background 0.2s ease,
    border-radius 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
  z-index: 110;
}

.header--scrolled .header__container {
  background: linear-gradient(180deg, #fff 0%, #f4f2f0 100%);
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05);
  padding: 0 0.75rem 0 1.5rem;
}

.header--scrolled {
  animation: header-slide-in 0.2s ease both;
  position: fixed;
  top: 16px;
  transition: transform 0.3s ease;
}

@keyframes header-slide-in {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header__logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}

.header__logo img {
  display: block;
  height: 26px;
  width: auto;
}

.header__brand-navigation {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 24px;
  justify-content: space-between;
  min-width: 0;
}

.header__navigation {
  align-items: center;
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
}

.header__navigation-list {
  align-items: center;
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__navigation-link {
  align-items: center;
  border-radius: 8px;
  color: #5c534b;
  display: inline-flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 16px;
  font-weight: 600;
  gap: 4px;
  line-height: 24px;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.header__navigation-link:hover,
.header__navigation-link:focus {
  background: rgba(61, 54, 49, 0.06);
  border-radius: 9999px;
  color: #5c534b;
  text-decoration: none;
}

.header__navigation-icon {
  display: block;
  height: 16px;
  width: 16px;
}

.header__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.header__button {
  --button-gap: 4px;
  --button-line-height: 20px;
  --button-min-height: 44px;
  --button-padding: 12px 20px;
  --button-size: 14px;
  height: var(--button-min-height);
}

.header__button--primary {
  --button-bg: #162c57;
  --button-border: 2px solid rgba(255, 255, 255, 0.12);
  --button-color: #fff;
  font-weight: 500;
}

.header__button--demo {
  --button-active-bg: #f0ebe6;
  --button-bg: #fff;
  --button-border: 1px solid #e8e5e1;
  --button-color: #5c534b;
  --button-hover-bg: #f8f6f3;
  --button-hover-border: 1px solid #d9d3cc;
  --button-hover-color: #5c534b;
  font-weight: 500;
}

.header__button--login {
  --button-active-bg: transparent;
  --button-bg: transparent;
  --button-border: 0 solid transparent;
  --button-hover-bg: rgba(61, 54, 49, 0.06);
  --button-hover-border: 0 solid transparent;
  --button-hover-color: #3d3631;
  box-shadow: none;
  color: #3d3631;
  font-weight: 600;
  margin-left: -6px;
}

.header__login-icon {
  display: block;
  height: 20px;
  width: 20px;
}

.header__mobile-menu-button {
  align-items: center;
  appearance: none;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: none;
  cursor: pointer;
  display: none;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  max-height: 40px;
  max-width: 40px;
  min-height: 40px;
  min-width: 40px;
  overflow: hidden;
  padding: 8px;
  position: relative;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  width: 40px;
}

.header__mobile-login {
  --button-active-bg: transparent;
  --button-bg: transparent;
  --button-border: 0 solid transparent;
  --button-hover-bg: rgba(61, 54, 49, 0.06);
  --button-hover-border: 0 solid transparent;
  --button-hover-color: #3d3631;
  --button-min-height: 40px;
  --button-padding: 8px 10px;
  --button-size: 14px;
  box-shadow: none;
  color: #3d3631;
  display: none;
  flex: 0 0 auto;
  font-weight: 500;
}

.header__mobile-menu-button:hover,
.header__mobile-menu-button:focus {
  background: #fff;
  border: 0;
}

.header__mobile-menu-button:focus-visible {
  outline: 2px solid #84caff;
  outline-offset: 2px;
}

.header__mobile-menu-button:active {
  background: #fff;
  border: 0;
  transform: none;
}

.header__mobile-menu-icon {
  display: block;
  height: 24px;
  width: 24px;
}

.header__mobile-menu-icon--close {
  display: none;
  position: relative;
}

.header__mobile-menu-icon--close::before,
.header__mobile-menu-icon--close::after {
  background: #3d3631;
  border-radius: 9999px;
  content: "";
  height: 2px;
  left: 3px;
  position: absolute;
  top: 11px;
  width: 18px;
}

.header__mobile-menu-icon--close::before {
  transform: rotate(45deg);
}

.header__mobile-menu-icon--close::after {
  transform: rotate(-45deg);
}

.header__mobile-menu-button[aria-expanded="true"] .header__mobile-menu-icon--open {
  display: none;
}

.header__mobile-menu-button[aria-expanded="true"] .header__mobile-menu-icon--close {
  display: block;
}

.header__mobile-panel {
  background:
    linear-gradient(
      180deg,
      #d2dff3 0%,
      #d6e2f4 18%,
      #dce6f5 38%,
      #e6edf7 58%,
      #f3f6fa 76%,
      #fbfcfd 88%,
      #fff 100%
    ),
    #fff;
  border: 0;
  border-radius: 0;
  bottom: 0;
  box-shadow: none;
  display: none;
  left: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: auto;
  padding: 104px 16px 32px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
}

.header__mobile-panel:not([hidden]) {
  animation: header-mobile-panel-in 0.2s ease both;
}

@keyframes header-mobile-panel-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__mobile-panel-top {
  height: 1px;
}

.header__mobile-navigation,
.header__mobile-actions {
  display: flex;
  flex-direction: column;
}

.header__mobile-navigation {
  padding-bottom: 0;
}

.header__mobile-navigation-link {
  align-items: center;
  border-radius: 12px;
  color: #3d3631;
  display: flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 24px;
  padding: 14px 12px;
  text-decoration: none;
  text-align: center;
}

.header__mobile-navigation-link:hover,
.header__mobile-navigation-link:focus {
  background: rgba(61, 54, 49, 0.06);
  color: #3d3631;
  text-decoration: none;
}

.header__mobile-actions {
  gap: 10px;
  padding-top: 12px;
}

.header__mobile-button {
  --button-min-height: 44px;
  --button-padding: 10px 16px;
  --button-size: 14px;
  width: 100%;
}

.header__mobile-button--primary {
  --button-bg: #162c57;
  --button-border: 2px solid rgba(255, 255, 255, 0.12);
  --button-color: #fff;
}

.header__mobile-button--login {
  --button-bg: #fff;
  --button-border: 1px solid #e8e5e1;
  --button-color: #5c534b;
  --button-hover-bg: #f8f6f3;
  --button-hover-border: 1px solid #d9d3cc;
  --button-hover-color: #5c534b;
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  background-color: #fff;
  height: auto;
  left: 0;
  overflow: visible;
  padding: 8px 12px;
  top: 0;
  width: auto;
  z-index: 10;
}

@media (max-width: 1504px) {
  .header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .header__container {
    max-width: none;
  }
}

@media (max-width: 1023px) {
  .header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header__container {
    height: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .header__brand-navigation {
    gap: 16px;
    flex: 0 1 auto;
  }

  .header__logo img {
    height: 24px;
  }

  .header__navigation {
    display: none;
  }

  .header__actions {
    display: none;
  }

  .header__mobile-login {
    display: inline-flex;
    margin-left: auto;
  }

  .header--scrolled {
    top: 8px;
  }

  .header--scrolled .header__container {
    padding: 0 14px;
  }

  .header__mobile-menu-button {
    display: inline-flex;
  }

  .header__mobile-panel:not([hidden]) {
    display: block;
  }

  .header--scrolled .header__mobile-panel {
    top: 0;
  }
}

@media (max-width: 420px) {
  .header__mobile-panel {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__mobile-login {
    --button-padding: 8px;
  }
}
/* ── Pabliq Footer ─────────────────────────────────────────────────────── */

.pabliq-footer {
  background: linear-gradient(180deg, #fcfbfa 0%, #e8e5e1 100%);
  border-top: 1px solid #f4f2f0;
  overflow: hidden;
  padding: 64px 0 48px;
  position: relative;
}

.pabliq-footer__background-mark {
  display: block;
  height: auto;
  left: calc(50% + 212px);
  max-width: none;
  pointer-events: none;
  position: absolute;
  top: -25px;
  width: 535px;
  z-index: 0;
}

.pabliq-footer__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 24px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.pabliq-footer__content {
  align-items: flex-start;
  display: flex;
  gap: 64px;
}

.pabliq-footer__brand {
  display: flex;
  flex: 0 0 400px;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
}

.pabliq-footer__logo-link {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.pabliq-footer__logo-link img {
  display: block;
  height: auto;
  width: 127px;
}

.pabliq-footer__supporting-text {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  max-width: 360px;
}

.pabliq-footer__nav {
  align-items: flex-start;
  display: flex;
  gap: 64px;
}

.pabliq-footer__nav-column {
  display: flex;
  flex: 0 0 160px;
  flex-direction: column;
  gap: 16px;
  min-width: 96px;
}

.pabliq-footer__nav-column--primary {
  padding-top: 0;
}

.pabliq-footer__nav-heading {
  color: #9b9186;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  margin: 0;
}

.pabliq-footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pabliq-footer__nav-links a {
  color: #756a5f;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: normal;
}

.pabliq-footer__nav-links a:hover,
.pabliq-footer__nav-links a:focus {
  color: #3d3631;
  text-decoration: none;
}

.pabliq-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 4px;
  padding-top: 32px;
}

.pabliq-footer__copyright {
  color: #756a5f;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  white-space: nowrap;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .pabliq-footer__content {
    flex-wrap: wrap;
  }

  .pabliq-footer__brand {
    flex-basis: 320px;
  }
}

@media (max-width: 767px) {
  .pabliq-footer {
    padding: 48px 0 40px;
  }

  .pabliq-footer__background-mark {
    bottom: 0;
    left: auto;
    opacity: 0.55;
    right: -80px;
    top: auto;
    width: 100%;
  }

  .pabliq-footer__container {
    gap: 40px;
  }

  .pabliq-footer__content {
    flex-direction: column;
    gap: 40px;
  }

  .pabliq-footer__brand {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }

  .pabliq-footer__nav {
    flex-wrap: wrap;
    gap: 32px;
    width: 100%;
  }

  .pabliq-footer__nav-column {
    flex: 1 1 160px;
  }

  .pabliq-footer__copyright {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .pabliq-footer__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pabliq-footer__nav {
    flex-direction: column;
  }

  .pabliq-footer__nav-column {
    flex-basis: auto;
    width: 100%;
  }
}

/* Legacy footer styles (kept for backwards compat) */

.footer__language-switcher {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.footer__language-link {
  align-items: center;
  border: 1px solid #e8e5e1;
  border-radius: 9999px;
  color: #3d3631;
  display: inline-flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  height: 34px;
  justify-content: center;
  line-height: 20px;
  min-width: 46px;
  padding: 0 12px;
  text-decoration: none;
}

.footer__language-link:hover,
.footer__language-link:focus {
  background-color: #f4f2f0;
  color: #3d3631;
  text-decoration: none;
}

.footer__language-link--active {
  background-color: #162c57;
  border-color: #162c57;
  color: #fff;
}

.footer__language-link--active:hover,
.footer__language-link--active:focus {
  background-color: #162c57;
  color: #fff;
}

.footer .lang_switcher_class:empty,
.footer .hs-language-switcher:empty {
  display: none;
}
/* 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%;
}

/* Three.js hero background */

.pabliq-three-hero {
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  position: relative;
}

.dnd-section.pabliq-three-hero {
  background:
    linear-gradient(
      180deg,
      #d2dff3 0%,
      #d6e2f4 18%,
      #dce6f5 38%,
      #e6edf7 58%,
      #f3f6fa 76%,
      #fbfcfd 88%,
      #fff 100%
    ),
    #fff !important;
}

.pabliq-three-hero > .row-fluid {
  align-items: center;
  justify-content: center;
  min-height: 680px;
  position: relative;
  z-index: 2;
}

.pabliq-three-hero .hs_cos_wrapper_type_rich_text {
  display: block;
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.pabliq-three-hero .hs_cos_wrapper_type_rich_text h1 {
  color: #3d3631;
  font-size: clamp(2.25rem, 5vw, var(--h1-size, 60px));
  font-weight: var(--h1-weight, 500);
  letter-spacing: var(--h1-letter-spacing, -0.02em);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

.pabliq-three-hero .hs_cos_wrapper_type_rich_text h1 br {
  display: none;
}

.pabliq-three-hero .hs_cos_wrapper_type_rich_text p:not(.pabliq-three-hero__cta-row) {
  color: var(--hero-description-color, #5c534b);
  font-size: var(--hero-description-size, 24px);
  font-weight: var(--hero-description-weight, 500);
  letter-spacing: var(--hero-description-letter-spacing, 0);
  line-height: var(--hero-description-line-height, 32px);
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  word-break: break-word;
}

.pabliq-three-hero .hs_cos_wrapper_type_rich_text .pabliq-three-hero__cta-row,
.pabliq-three-hero__cta-row {
  margin-top: 1.75rem;
}

.pabliq-three-hero__cta {
  min-width: 128px;
}

.pabliq-three-hero__customer-logos {
  align-items: center;
  bottom: 1.5rem;
  display: flex;
  gap: clamp(2rem, 9.7vw, 159px);
  justify-content: center;
  left: 50%;
  max-width: min(calc(100vw - 3rem), 1441px);
  opacity: 0.5;
  position: absolute;
  transform: translateX(-50%);
  width: max-content;
  z-index: 3;
}

.pabliq-three-hero__customer-logos img {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-height: none;
  max-width: none;
  object-fit: contain;
}

.pabliq-three-hero__three-frame {
  height: min(823px, 115vw);
  left: 50%;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  top: -48px;
  transform: translateX(-50%);
  width: min(826px, 115vw);
  z-index: 1;
}

.pabliq-three-hero__three-frame canvas {
  display: block;
  height: 100% !important;
  width: 100% !important;
}

@media (max-width: 1392px) {
  .pabliq-three-hero__customer-logos {
    gap: clamp(2rem, 8.8vw, 159px);
  }
}

@media (max-width: 1316px) {
  .pabliq-three-hero__customer-logos {
    flex-wrap: wrap;
    gap: 1.75rem 3rem;
    max-width: calc(100vw - 3rem);
  }
}

/* Learn about title */

.pabliq-learn-about-title {
  background: #fff;
  padding-bottom: 3rem !important;
}

.pabliq-learn-about-title > .row-fluid {
  align-items: center;
  justify-content: center;
}

.pabliq-learn-about-title .dnd-column {
  padding-left: 0;
  padding-right: 0;
}

.pabliq-learn-about-title .hs_cos_wrapper_type_rich_text {
  display: block;
}

.pabliq-learn-about-title h2 {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: var(--display-md-size, 36px);
  font-weight: var(--display-md-weight, 500);
  letter-spacing: var(--display-md-letter-spacing, -0.02em);
  line-height: var(--display-md-line-height, 44px);
  margin: 0;
  max-width: 780px;
  word-break: break-word;
}

.pabliq-learn-about-title h2 span {
  color: #756a5f;
}

/* Learn about cards */

.pabliq-learn-about-cards {
  background: #fff;
  padding-top: 0 !important;
}

.pabliq-learn-about-cards .dnd-column,
.pabliq-pricing .dnd-column {
  padding-left: 0;
  padding-right: 0;
}

.pabliq-learn-about-cards > .row-fluid {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

.pabliq-learn-about-cards__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.pabliq-learn-card {
  background: #f4f2f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
  min-height: 413px;
  overflow: hidden;
  padding: 40px;
}

.pabliq-learn-card--wide {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 682px) minmax(0, 1fr);
  justify-content: initial;
  min-height: 413px;
  position: relative;
}

.pabliq-learn-card__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pabliq-learn-card h3 {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: var(--display-sm-size, 30px);
  font-weight: var(--display-sm-weight, 500);
  letter-spacing: 0;
  line-height: var(--display-sm-line-height, 38px);
  margin: 0;
}

.pabliq-learn-card p {
  color: #5c534b;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: var(--text-lg-size, 18px);
  font-weight: var(--text-lg-weight, 500);
  letter-spacing: 0;
  line-height: var(--text-lg-line-height, 28px);
  margin: 0;
}

/* Card visual placeholders */

.pabliq-card-visual {
  align-items: center;
  align-self: center;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  margin: auto auto 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Analysis card (Lottie) */

.pabliq-card-visual--analysis {
  aspect-ratio: 460 / 220;
  border-radius: 12px;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  width: 460px;
}

/* Watch card (Lottie) */

.pabliq-card-visual--watch {
  aspect-ratio: 460 / 220;
  background: #9aa7dc;
  border-radius: 12px;
  height: auto;
  max-width: 100%;
  overflow: hidden;
  width: 460px;
}

.pabliq-card-visual__lottie {
  height: 100%;
  width: 100%;
}

.pabliq-card-visual--analysis .pabliq-card-visual__lottie {
  transform: scale(1.18);
  transform-origin: 58% 58%;
}

.pabliq-card-visual--watch .pabliq-card-visual__lottie {
  transform: scale(1.28);
  transform-origin: 50% 52%;
}

/* Expert card (Adam photo) */

.pabliq-card-visual--expert {
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  min-height: 352px;
  padding: 0;
  width: min(100%, 460px);
}

.pabliq-card-visual__expert-card {
  width: 100%;
}

.pabliq-card-visual__adam {
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1023px) {
  .pabliq-learn-about-cards__grid,
  .pabliq-learn-card--wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pabliq-three-hero {
    min-height: 620px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 112px !important;
  }

  .pabliq-three-hero > .row-fluid {
    min-height: 0;
  }

  .pabliq-three-hero .hs_cos_wrapper_type_rich_text {
    max-width: 100%;
  }

  .pabliq-three-hero .hs_cos_wrapper_type_rich_text h1 {
    font-size: 38px;
    letter-spacing: 0;
    line-height: 46px;
    margin-bottom: 1rem;
  }

  .pabliq-three-hero .hs_cos_wrapper_type_rich_text p:not(.pabliq-three-hero__cta-row) {
    font-size: 18px;
    line-height: 27px;
  }

  .pabliq-three-hero__three-frame {
    height: min(560px, 140vw);
    top: 44px;
    width: min(560px, 140vw);
  }

  .pabliq-three-hero__customer-logos {
    bottom: auto;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
    left: auto;
    margin: 32px auto 0;
    max-width: calc(100vw - 2rem);
    position: relative;
    transform: none;
    width: 100%;
  }

  .pabliq-three-hero__customer-logos img {
    max-height: 44px;
    max-width: 28vw;
  }

  .pabliq-learn-about-title h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .pabliq-learn-card {
    gap: 32px;
    min-height: 0;
    padding: 28px;
  }

  .pabliq-learn-card h3 {
    font-size: 26px;
    line-height: 34px;
  }

  .pabliq-card-visual--expert {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .pabliq-three-hero {
    min-height: 600px;
    padding-top: 100px !important;
  }

  .pabliq-three-hero .hs_cos_wrapper_type_rich_text h1 {
    font-size: 32px;
    line-height: 39px;
  }

  .pabliq-three-hero .hs_cos_wrapper_type_rich_text p:not(.pabliq-three-hero__cta-row) {
    font-size: 16px;
    line-height: 24px;
  }

  .pabliq-three-hero__cta {
    width: 100%;
  }

  .pabliq-learn-card {
    padding: 24px 20px;
  }
}
/* FAQ */

.faq-section {
  background-color: transparent;
}

.faq-content {
  color: #3d3631;
  width: 100%;
}

.faq-content__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.faq-content__heading {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 60px;
  margin: 0;
  max-width: 742px;
}

.faq-content__questions {
  border-top: 1px solid #e8e5e1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.faq-content__item {
  border-bottom: 1px solid #e8e5e1;
  overflow: hidden;
}

.faq-content__question {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 24px;
  font-weight: 500;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: 0;
  line-height: 32px;
  margin: 0;
  min-height: 72px;
  padding: 20px 0;
  text-align: left;
  width: 100%;
}

.faq-content__question::-webkit-details-marker {
  display: none;
}

.faq-content__question:focus-visible {
  outline: 2px solid #84caff;
  outline-offset: 4px;
}

.faq-content__question-text {
  min-width: 0;
}

.faq-content__icon {
  flex: 0 0 auto;
  height: 24px;
  transition: transform 220ms ease;
  width: 24px;
}

.faq-content__item[open]:not(.faq-content__item--closing) .faq-content__icon {
  transform: rotate(45deg);
}

.faq-content__answer {
  color: #5c534b;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  max-width: 760px;
  padding: 0 48px 20px 0;
}

@media (prefers-reduced-motion: reduce) {
  .faq-content__icon {
    transition: none;
  }
}

.faq-content__answer p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

@media (max-width: 1504px) {
  .faq-content__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 767px) {
  .faq-content__inner {
    gap: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-content__heading {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 42px;
  }

  .faq-content__question {
    font-size: 18px;
    line-height: 26px;
    min-height: 64px;
    padding: 16px 0;
  }

  .faq-content__answer {
    padding-bottom: 16px;
    padding-right: 40px;
  }
}
/* CTA banner */

.dnd-section.pabliq-cta-section {
  background-color: transparent;
  padding: 0 !important;
}

.dnd-section.pabliq-cta-section > .row-fluid {
  max-width: none !important;
  width: 100% !important;
}

.pabliq-cta-section .row-fluid .span12,
.pabliq-cta-section .dnd-column,
.pabliq-cta-section .dnd-row,
.pabliq-cta-section .row-fluid-wrapper,
.pabliq-cta-section .hs_cos_wrapper_type_rich_text {
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
  width: 100% !important;
}

.pabliq-cta-banner {
  --pabliq-cta-art-edge: max(0px, calc((100vw - 1440px) / 2));

  align-items: center;
  background-image: linear-gradient(
    180deg,
    #d2dff3 23.156%,
    #d8e3f4 37.892%,
    #dfe8f5 52.627%,
    #e5ecf7 68.415%,
    #ecf1f8 83.151%,
    rgba(242, 245, 249, 0) 97.886%
  );
  border: 1px solid #f4f2f0;
  border-bottom: 0;
  display: flex;
  justify-content: center;
  min-height: 464px;
  overflow: hidden;
  padding: 64px;
  position: relative;
  width: 100%;
}

.pabliq-cta-banner__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  max-width: 814px;
  min-height: 336px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.pabliq-cta-banner__heading {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 60px;
  margin: 0;
}

.pabliq-cta-banner__form-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 814px;
  width: 100%;
}

.pabliq-cta-banner__text {
  color: #5c534b;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  max-width: 814px;
}

.pabliq-cta-banner__actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.pabliq-cta-banner__button {
  --button-bg: #fff;
  --button-border: 1px solid #e8e5e1;
  --button-color: #5c534b;
  --button-hover-bg: #f8f6f3;
  --button-hover-border: 1px solid #d9d3cc;
  --button-hover-color: #5c534b;
  font-weight: 500;
  min-height: 44px;
}

.pabliq-cta-banner__button--primary {
  --button-bg: #162c57;
  --button-border: 1px solid rgba(255, 255, 255, 0.12);
  --button-color: #fff;
  --button-hover-bg: #102347;
  --button-hover-border: 1px solid rgba(255, 255, 255, 0.12);
  --button-hover-color: #fff;
  --button-active-bg: #0c1f40;
  --button-padding: 10px 18px;

  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.05),
    inset 0 0 0 1px rgba(10, 13, 18, 0.18),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.pabliq-cta-banner__button--primary:hover,
.pabliq-cta-banner__button--primary:focus {
  box-shadow: 0 1px 2px rgba(10, 13, 18, 0.08),
    inset 0 0 0 1px rgba(10, 13, 18, 0.2),
    inset 0 -2px 0 rgba(10, 13, 18, 0.05);
}

.pabliq-cta-banner__illustration,
.pabliq-cta-banner__ornament {
  display: block;
  pointer-events: none;
  position: absolute;
}

.pabliq-cta-banner__illustration {
  z-index: 1;
}

.pabliq-cta-banner__ornament {
  z-index: 0;
}

.pabliq-cta-banner__illustration--left {
  height: auto;
  left: calc(var(--pabliq-cta-art-edge) + 15px);
  top: 80px;
  width: 203px;
}

.pabliq-cta-banner__illustration--right {
  height: auto;
  right: calc(var(--pabliq-cta-art-edge) + 5px);
  top: 96px;
  width: 231px;
}

.pabliq-cta-banner__ornament {
  height: 126px;
  right: calc(var(--pabliq-cta-art-edge) + 136px);
  top: 107px;
  transform: rotate(-90deg);
  width: 126px;
}

@media (max-width: 1200px) {
  .pabliq-cta-banner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .pabliq-cta-banner__content {
    max-width: 680px;
  }

  .pabliq-cta-banner__illustration--left {
    left: 32px;
    opacity: 0.45;
  }

  .pabliq-cta-banner__illustration--right {
    opacity: 0.45;
    right: 32px;
  }

  .pabliq-cta-banner__ornament {
    opacity: 0.45;
    right: 168px;
  }
}

@media (max-width: 767px) {
  .pabliq-cta-banner {
    min-height: 0;
    padding: 56px 24px;
  }

  .pabliq-cta-banner__content {
    min-height: 0;
  }

  .pabliq-cta-banner__heading {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 42px;
  }

  .pabliq-cta-banner__text {
    font-size: 17px;
    line-height: 26px;
  }

  .pabliq-cta-banner__actions {
    width: 100%;
  }

  .pabliq-cta-banner__button {
    flex: 1 1 220px;
  }

  .pabliq-cta-banner__illustration,
  .pabliq-cta-banner__ornament {
    display: none;
  }
}

@media (max-width: 420px) {
  .pabliq-cta-banner {
    padding: 48px 20px;
  }

  .pabliq-cta-banner__heading {
    font-size: 32px;
    line-height: 39px;
  }

  .pabliq-cta-banner__button {
    flex-basis: 100%;
  }
}
/* Pabliq Pricing Section */

.pabliq-pricing {
  background-color: transparent;
}

.pabliq-pricing__inner {
  color: #3d3631;
  display: block;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.pabliq-pricing__header {
  margin-bottom: 48px;
  text-align: center;
  width: 100%;
}

.pabliq-pricing__heading {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 60px;
  margin: 0 0 16px;
  text-align: center;
  width: 100%;
}

.pabliq-pricing__subheading {
  color: #5c534b;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* Grid — subgrid so all cards share the same row heights */

.pabliq-pricing__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr; /* top | subdesc | button | features */
}

/* Card base */

.pabliq-pricing-card {
  background-color: #fff;
  border: 1px solid #e8e5e1;
  border-radius: 16px;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  padding: 40px 32px;
}

/* Trial card: gradient background + blue border */

.pabliq-pricing-card--trial {
  background: linear-gradient(180deg, #fcfbfa 0%, #e8e5e1 100%);
  border: 2px solid #a8bde9;
}

/* Row 1: top section */

.pabliq-pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Rows 2–4 wrapped in bottom; uses subgrid to inherit rows */

.pabliq-pricing-card__bottom {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  padding-top: 48px;
}

/* Row 2: subdesc */

.pabliq-pricing-card__subdesc {
  align-self: end;
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
}

/* Row 3: button */

.pabliq-pricing-card__btn {
  align-self: start;
  display: flex;
  margin-bottom: 24px;
  width: 100%;
}

/* Brand row: logo + tier name + optional badge */

.pabliq-pricing-card__brand-row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pabliq-pricing-card__brand {
  align-items: center;
  display: flex;
  gap: 6px;
}

.pabliq-pricing-card__logo {
  display: block;
  flex-shrink: 0;
  height: 24px;
  width: auto;
}

.pabliq-pricing-card__tier-name {
  color: #0f1d3a;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  white-space: nowrap;
}

/* Badge */

.pabliq-pricing-card__badge {
  background-color: #e2e9f8;
  border: 1px solid #a8bde9;
  border-radius: 6px;
  color: #244992;
  display: inline-block;
  flex-shrink: 0;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}

/* Titles */

.pabliq-pricing-card__title {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin: 0;
}

.pabliq-pricing-card__topdesc {
  color: #5c534b;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

/* Features section */

.pabliq-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pabliq-pricing-card__features-label {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}

.pabliq-pricing-card__features-note {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.pabliq-pricing-card__features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pabliq-pricing-card__features-list li {
  align-items: flex-start;
  color: #3d3631;
  display: flex;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: 14px;
  font-weight: 400;
  gap: 8px;
  line-height: 20px;
}

.pabliq-pricing-card__features-list li img {
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

/* Responsive */

@media (max-width: 1504px) {
  .pabliq-pricing__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 1024px) {
  .pabliq-pricing__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pabliq-pricing-card--trial {
    order: -1;
  }

  .pabliq-pricing-card {
    display: flex;
    flex-direction: column;
  }

  .pabliq-pricing-card__bottom {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding-top: 32px;
  }

  .pabliq-pricing-card__subdesc {
    align-self: auto;
  }

  .pabliq-pricing-card__btn {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .pabliq-pricing__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pabliq-pricing__heading {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 42px;
  }

  .pabliq-pricing__subheading {
    font-size: 18px;
    line-height: 26px;
  }

  .pabliq-pricing-card {
    padding: 32px 24px;
  }

  .pabliq-pricing-card__brand-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .pabliq-pricing-card__title {
    font-size: 22px;
  }

  .pabliq-pricing-card__topdesc {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 420px) {
  .pabliq-pricing__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pabliq-pricing-card {
    border-radius: 12px;
    padding: 28px 20px;
  }

  .pabliq-pricing-card__btn {
    justify-content: center;
  }

  .pabliq-pricing-card__tier-name {
    font-size: 21px;
    line-height: 28px;
    white-space: normal;
  }
}
/* Legal pages */

.body-container--legal-page {
  background: #fff;
}

.pabliq-legal-hero {
  background:
    linear-gradient(
      180deg,
      #d2dff3 0%,
      #d6e2f4 18%,
      #dce6f5 38%,
      #e6edf7 58%,
      #f3f6fa 76%,
      #fbfcfd 88%,
      #fff 100%
    ),
    #fff !important;
  min-height: 320px;
  padding-bottom: 88px !important;
  padding-top: 160px !important;
}

.pabliq-legal-hero > .row-fluid,
.pabliq-legal-content > .row-fluid {
  max-width: 760px !important;
}

.pabliq-legal-hero .dnd-column,
.pabliq-legal-content .dnd-column {
  padding-left: 0;
  padding-right: 0;
}

.pabliq-legal-hero .hs_cos_wrapper_type_rich_text {
  display: block;
  max-width: 760px;
}

.pabliq-legal-hero h1 {
  color: #3d3631;
  font-family: var(--font-family, "Google Sans", Arial, sans-serif);
  font-size: clamp(2.25rem, 5vw, var(--h1-size, 60px));
  font-weight: var(--h1-weight, 500);
  letter-spacing: var(--h1-letter-spacing, -0.02em);
  line-height: 1.15;
  margin: 0;
}

.pabliq-legal-content {
  background: #fff;
  padding-bottom: 120px !important;
  padding-top: 56px !important;
}

.pabliq-legal-content .hs_cos_wrapper_type_rich_text {
  color: #5c534b;
  display: block;
  font-size: 18px;
  line-height: 28px;
  max-width: 760px;
}

.pabliq-legal-content h2,
.pabliq-legal-content h3,
.pabliq-legal-content h4 {
  color: #3d3631;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.pabliq-legal-content h2 {
  font-size: 30px;
  line-height: 38px;
  margin-top: 2.5rem;
}

.pabliq-legal-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin-top: 2rem;
}

.pabliq-legal-content p,
.pabliq-legal-content li {
  font-size: 18px;
  line-height: 28px;
}

.pabliq-legal-content p:last-child,
.pabliq-legal-content ul:last-child,
.pabliq-legal-content ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .pabliq-legal-hero,
  .pabliq-legal-content {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 767px) {
  .pabliq-legal-hero {
    min-height: 260px;
    padding-bottom: 64px !important;
    padding-top: 128px !important;
  }

  .pabliq-legal-hero h1 {
    font-size: 38px;
    letter-spacing: 0;
    line-height: 46px;
  }

  .pabliq-legal-content {
    padding-bottom: 88px !important;
    padding-top: 40px !important;
  }
}

@media (max-width: 420px) {
  .pabliq-legal-hero,
  .pabliq-legal-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .pabliq-legal-hero h1 {
    font-size: 32px;
    line-height: 39px;
  }
}
.pabliq-book-demo-section > .row-fluid {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
}

.pabliq-book-demo-section .dnd-column {
  padding: 0;
}

.pabliq-book-demo-section__intro h1 {
  margin: 0;
}

.pabliq-book-demo-section form,
.pabliq-book-demo-section .submitted-message {
  background-color: transparent;
}

.body-container--book-demo form input[type="text"],
.body-container--book-demo form input[type="search"],
.body-container--book-demo form input[type="email"],
.body-container--book-demo form input[type="password"],
.body-container--book-demo form input[type="tel"],
.body-container--book-demo form input[type="number"],
.body-container--book-demo form input[type="file"],
.body-container--book-demo form select,
.body-container--book-demo form textarea {
  border-color: #F4F2F0;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 14px;
}

.body-container--book-demo form label,
.body-container--book-demo form legend {
  font-size: 16px;
  line-height: 24px;
}

.body-container--book-demo .legal-consent-container,
.body-container--book-demo .legal-consent-container p,
.body-container--book-demo .legal-consent-container span {
  font-size: 14px;
  line-height: 20px;
}

.pabliq-book-demo-sidebar {
  border: 1px solid #F4F2F0;
  border-radius: 10px;
  padding: 32px;
}

.pabliq-book-demo-sidebar h2 {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 24px;
}

.pabliq-book-demo-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pabliq-book-demo-sidebar li {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding-left: 22px;
  position: relative;
}

.pabliq-book-demo-sidebar li + li {
  margin-top: 16px;
}

.pabliq-book-demo-sidebar li::before {
  background-color: #162C57;
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 9px;
  width: 6px;
}

@media (max-width: 767px) {
  .pabliq-book-demo-sidebar {
    margin-top: 32px;
    padding: 24px;
  }
}
/* Contact page layout */
.pabliq-contact-section > .row-fluid {
  border: 1px solid #F4F2F0;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  padding: 40px 56px;
}

.pabliq-contact-section .dnd-column {
  padding: 0;
}

.pabliq-contact-section__intro h1 {
  margin: 0;
}

.pabliq-contact-section__intro p {
  font-size: 16px;
  line-height: 24px;
  margin: 56px 0 0;
}

.pabliq-contact-section form,
.pabliq-contact-section .submitted-message {
  background-color: transparent;
}

.body-container--contact .dnd-section > .row-fluid {
  border: 1px solid #F4F2F0;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  padding: 40px 56px;
}

.body-container--contact .dnd-section .dnd-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.body-container--contact .dnd-section form,
.body-container--contact .dnd-section .submitted-message {
  background-color: transparent;
}

.body-container--contact .dnd-section h1 + p {
  font-size: 16px;
  line-height: 24px;
}

.body-container--contact .dnd-section a,
.pabliq-contact-section a {
  color: #162C57;
}

.body-container--contact .dnd-section input[type="text"],
.body-container--contact .dnd-section input[type="search"],
.body-container--contact .dnd-section input[type="email"],
.body-container--contact .dnd-section input[type="password"],
.body-container--contact .dnd-section input[type="tel"],
.body-container--contact .dnd-section input[type="number"],
.body-container--contact .dnd-section input[type="file"],
.body-container--contact .dnd-section select,
.body-container--contact .dnd-section textarea,
.pabliq-contact-section input[type="text"],
.pabliq-contact-section input[type="search"],
.pabliq-contact-section input[type="email"],
.pabliq-contact-section input[type="password"],
.pabliq-contact-section input[type="tel"],
.pabliq-contact-section input[type="number"],
.pabliq-contact-section input[type="file"],
.pabliq-contact-section select,
.pabliq-contact-section textarea {
  border-color: #F4F2F0;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 14px;
}

.body-container--contact .dnd-section form label,
.body-container--contact .dnd-section form legend,
.pabliq-contact-section form label,
.pabliq-contact-section form legend {
  font-size: 16px;
  line-height: 24px;
}

.body-container--contact .legal-consent-container,
.body-container--contact .legal-consent-container p,
.body-container--contact .legal-consent-container span,
.pabliq-contact-section .legal-consent-container,
.pabliq-contact-section .legal-consent-container p,
.pabliq-contact-section .legal-consent-container span {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .pabliq-contact-section > .row-fluid {
    padding: 28px 20px;
  }

  .pabliq-contact-section__intro p {
    margin-top: 32px;
  }

  .body-container--contact .dnd-section > .row-fluid {
    padding: 28px 20px;
  }
}

.body-container:not(.body-container--home) h1 {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0;
}

.body-container--contact .dnd-section > .row-fluid {
  border: 1px solid #F4F2F0;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
  padding: 40px 56px;
}

.body-container--contact .dnd-section .dnd-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.body-container--contact .dnd-section form,
.body-container--contact .dnd-section .submitted-message {
  background-color: transparent;
}

.body-container--contact .dnd-section h1 + p {
  font-size: 16px;
  line-height: 24px;
}

.body-container--contact .dnd-section a {
  color: #162C57;
}

.body-container--contact .dnd-section input[type="text"],
.body-container--contact .dnd-section input[type="search"],
.body-container--contact .dnd-section input[type="email"],
.body-container--contact .dnd-section input[type="password"],
.body-container--contact .dnd-section input[type="tel"],
.body-container--contact .dnd-section input[type="number"],
.body-container--contact .dnd-section input[type="file"],
.body-container--contact .dnd-section select,
.body-container--contact .dnd-section textarea {
  border-color: #F4F2F0;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  padding: 10px 14px;
}

.body-container--contact .dnd-section form label,
.body-container--contact .dnd-section form legend {
  font-size: 16px;
  line-height: 24px;
}

.body-container--contact .legal-consent-container,
.body-container--contact .legal-consent-container p,
.body-container--contact .legal-consent-container span {
  font-size: 14px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .body-container--contact .dnd-section > .row-fluid {
    padding: 28px 20px;
  }
}

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