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




/* 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 {
  background-color: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--secondary-font);
  font-size: var(--text-default);
  font-weight: var(--font-weight-regular, 400);
  line-height: var(--line-height-default);
  overflow-wrap: break-word;
}

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



/* Anchors */

a {
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
}

/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0!important;
}

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

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





:root {
  /* ==========================================================================
     Fluentic Fluid Typography Scale (Base: 1rem = 16px)
     Reference desktop values are reached at 1920px and scale down smoothly
     to mobile values at 320px.
     ========================================================================== */

  /* Display: 48px -> 84px */
  --text-display: clamp(3rem, 2.25vw + 2.55rem, 5.25rem);

  /* Headings: responsive mobile minimum -> reference desktop maximum */
  --text-h1: clamp(2.5rem, 2.25vw + 2.05rem, 4.75rem);       /* 40px -> 76px */
  --text-h2: clamp(2.25rem, 1.5vw + 1.95rem, 3.75rem);       /* 36px -> 60px */
  --text-h3: clamp(1.875rem, 0.875vw + 1.7rem, 2.75rem);     /* 30px -> 44px */
  --text-h4: clamp(1.625rem, 0.375vw + 1.55rem, 2rem);       /* 26px -> 32px */
  --text-h5: clamp(1.375rem, 0.125vw + 1.35rem, 1.5rem);     /* 22px -> 24px */
  --text-h6: clamp(1.125rem, 0.125vw + 1.1rem, 1.25rem);     /* 18px -> 20px */

  /* Paragraphs */
  --text-default: 1rem;                                      /* 16px */
  --text-small: 0.875rem;                                    /* 14px */
  --text-medium: clamp(1rem, 0.125vw + 0.975rem, 1.125rem);  /* 16px -> 18px */
  --text-large: clamp(1.125rem, 0.125vw + 1.1rem, 1.25rem);  /* 18px -> 20px */
  --text-xsmall: 0.75rem;                                    /* 12px */

  /* Buttons */
  --text-button-large: clamp(1.125rem, 0.125vw + 1.1rem, 1.25rem);
  --text-button-default: clamp(1rem, 0.125vw + 0.975rem, 1.125rem);
  --text-button-small: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);

  /* Line heights from the Fluentic reference */
  --line-height-display: 1.2;
  --line-height-h1: 1.07;
  --line-height-h2: 1.1;
  --line-height-h3: 1.18;
  --line-height-h4: 1.25;
  --line-height-h5: 1.33;
  --line-height-h6: 1.2;
  --line-height-default: 1.62;
  --line-height-small: 1.14;
  --line-height-medium: 1.5;
  --line-height-large: 1.5;
  --line-height-button: 1;

  /* Existing project aliases */
  --text-body: var(--text-medium);
  --text-body-2: var(--text-default);
  --text-p: var(--text-default);
}

/* Update your classes as well */

/* --- Global Heading Styles --- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--primary-font);
  color: var(--text-primary);
  font-weight: var(--font-weight-medium, 500);
  margin: 0;
  letter-spacing: 0;
}


h1 { font-size: var(--text-h1); line-height: var(--line-height-h1); }
h2 { font-size: var(--text-h2); line-height: var(--line-height-h2); }
h3 { font-size: var(--text-h3); line-height: var(--line-height-h3); }
h4 { font-size: var(--text-h4); line-height: var(--line-height-h4); }
h5 { font-size: var(--text-h5); line-height: var(--line-height-h5); }
h6 { font-size: var(--text-h6); line-height: var(--line-height-h6); }



.body {
  color: var(--text-secondary);
  font-size: var(--text-body);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-regular, 400);
  line-height: var(--line-height-medium);
  margin-top: 0;
}

.body-highlight {
  color: var(--text-primary);
  font-weight: var(--font-weight-semibold, 600);
  font-family: var(--secondary-font);
  font-size: var(--text-body);
  line-height: var(--line-height-medium);
}

.body-2 {
  color: var(--text-secondary);
  font-size: var(--text-body-2);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-regular, 400);
  line-height: var(--line-height-default);
  margin-top: 0;
}

.body-2-highlight {
  color: var(--text-primary);
  font-size: var(--text-body-2);
  font-family: var(--secondary-font);
  font-weight: var(--font-weight-semibold, 600);
  line-height: var(--line-height-default);
}

/* General Sans weight utilities used by the Webflow reference. */
.font-light { font-weight: var(--font-weight-light, 300); }
.font-regular { font-weight: var(--font-weight-regular, 400); }
.font-medium { font-weight: var(--font-weight-medium, 500); }
.font-semibold { font-weight: var(--font-weight-semibold, 600); }
.font-bold { font-weight: var(--font-weight-bold, 700); }
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Fluentic's primary typeface from the Webflow reference. */
@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.prod.website-files.com/6977d6f2fb8c2461d31d41d2/697ec41fe8b9f6763ed90274_GeneralSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.prod.website-files.com/6977d6f2fb8c2461d31d41d2/697ec41fbb887c700ce2fa27_GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.prod.website-files.com/6977d6f2fb8c2461d31d41d2/697ec41fc251f37c18860de1_GeneralSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.prod.website-files.com/6977d6f2fb8c2461d31d41d2/697ec41ffbb6776af76878c8_GeneralSans-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('https://cdn.prod.website-files.com/6977d6f2fb8c2461d31d41d2/697ec41f7cb029a3970f4408_GeneralSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Legacy project fonts remain available during the migration. */
@font-face {
  font-family: 'Inter Display';
  src: url('https://26291308.fs1.hubspotusercontent-eu1.net/hubfs/26291308/Inter%20Display%20Font/InterDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Franklin Gothic Book';
  src: url('https://145627525.fs1.hubspotusercontent-eu1.net/hubfs/145627525/Re-board%20web%20content/FRABK.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



:root {
  /* Global Colors */
  --primary-color: #80AAFD;

  /* Background Colors */
  --bg-star: #FCAC84;
  --page-bg: #F8F7F8;
  --bg-primary: #FFFFFF;
  --bg-accent-1: #FFF7E5;
  --bg-accent-2: #F0EAF6;
  --bg-accent-3: #EDECEF;
  --dark-bg: #1B0C27;

  /* Text Colors */
  --text-primary: #1B0C27;
  --text-secondary: #5D6C7B;
  --text-tertiary: #758696;
  --text-light-primary: #FFFFFF;
  --text-light-secondary: #F6F5F4;

  /* Fluentic Accent Colors */
  --accent-blue: #80AAFD;
  --accent-purple: #D37BFF;
  --accent-pink: #FF82E1;
  --accent-orange: #FCAC84;
  --accent-red: #F82A2D;
  --accent-red-bright: #FF464F;
  --gradient-light: #F0E9F7;
  --gradient-middle: #D588FC;
  --gradient-hot: #FF49D4;

  /* Gradients */
  --gradient-brand: linear-gradient(120deg, var(--gradient-light), var(--gradient-middle) 61%, var(--gradient-hot));
  --gradient-icon: linear-gradient(var(--bg-primary), var(--bg-accent-2));
  --gradient-1: var(--gradient-brand);
  --gradient-2: ;
  --gradient-3: ;
  --gradient-4: ;

  /* Global Fonts */
  --primary-font: 'General Sans', sans-serif;
  --primary-font-color: #1B0C27;

  --secondary-font: 'General Sans', sans-serif;
  --secondary-font-color: #5D6C7B;

  --tertiary-font: 'Geist Mono', monospace;
  --tertiary-font-color: #758696;

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* General Styles */
  --global-border-width: 1px;
  --global-border-color: #E9E9E9;
  --global-border-radius: 8px;

  /* Primary Button */
  --btn-primary-font: 'General Sans', sans-serif;
  --btn-primary-font-size: 18px;
  --btn-primary-text-color: #FFFFFF;
  --btn-primary-bg-color: #1B0C27;
  --btn-primary-border-radius: 8px;

  /* Secondary Button */
  --btn-secondary-font: 'General Sans', sans-serif;
  --btn-secondary-font-size: 18px;
  --btn-secondary-text-color: #1B0C27;
  --btn-secondary-bg-color: #FFFFFF;
  --btn-secondary-border-radius: 8px;

  /* Container */
  --container-max-width: 1920px;

  /* Compatibility aliases used by older Fluentic modules/templates. */
  --primary-bg: var(--bg-primary);
  --secondary-bg: var(--page-bg);
  --card-bg: var(--bg-primary);
  --primary-dark-text-color: var(--text-primary);
  --secondary-dark-text-color: var(--text-secondary);
  --tertiary-dark-text-color: var(--text-tertiary);
  --light-text-color: var(--text-light-primary);
  --border-width: var(--global-border-width);
  --border-color: var(--global-border-color);
  --border-radius: var(--global-border-radius);
  --blue-background: var(--accent-blue);
  --blue-text: var(--text-primary);
}




/* Eyebrow badge (.eyebrow-custom, .eyebrow-icon, .eyebrow-content,
   .eyebrow-text) is styled in css/elements/_buttons.css, which loads after
   this file and was the block actually winning the cascade — this file
   used to carry a second, conflicting definition (including a blinking
   cursor the live site doesn't have). Keep the eyebrow's canonical styles
   in _buttons.css only; don't reintroduce a copy here. */



/****** Other Utility Classes CSS START *********/
/***********************************************/

.border {
  border: var(--border-width) solid var(--border-color);
}

.primary-bg {
  background-color: var(--primary-bg);
}

.secondary-bg {
  background-color: var(--secondary-bg);
}

.dark-bg {
  background-color: var(--dark-bg);
}

.rounded {
  border-radius: var(--border-radius);
}



/****** Other Utility Classes CSS END *********/
/*********************************************/


/* Padding 80 */
.p-80  { padding: clamp(1rem, 4vw + 0.2rem, 5rem); }
.pt-80 { padding-top: clamp(1rem, 4vw + 0.2rem, 5rem); }
.pr-80 { padding-right: clamp(1rem, 4vw + 0.2rem, 5rem); }
.pb-80 { padding-bottom: clamp(1rem, 4vw + 0.2rem, 5rem); }
.pl-80 { padding-left: clamp(1rem, 4vw + 0.2rem, 5rem); }
.px-80 { padding-inline: clamp(1rem, 4vw + 0.2rem, 5rem); }
.py-80 { padding-block: clamp(1rem, 4vw + 0.2rem, 5rem); }


/* Margin 72 (36px to 72px) */
.m-72  { margin: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.mt-72 { margin-top: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.mr-72 { margin-right: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.mb-72 { margin-bottom: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.ml-72 { margin-left: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.mx-72 { margin-inline: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.my-72 { margin-block: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }

.p-72  { padding: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.pt-72 { padding-top: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.pr-72 { padding-right: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.pb-72 { padding-bottom: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.pl-72 { padding-left: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.px-72 { padding-inline: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }
.py-72 { padding-block: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }

.gap-72  { gap: clamp(2.25rem, 2.25vw + 1.8rem, 4.5rem); }



/* Padding */
.p-40 { padding: clamp(24px, 2vw, 40px); }
.pt-40 { padding-top: clamp(24px, 2vw, 40px); }
.pr-40 { padding-right: clamp(24px, 2vw, 40px); }
.pb-40 { padding-bottom: clamp(24px, 2vw, 40px); }
.pl-40 { padding-left: clamp(24px, 2vw, 40px); }
.px-40 { padding-inline: clamp(24px, 2vw, 40px); }
.py-40 { padding-block: clamp(24px, 2vw, 40px); }


/* Margin 80 */
.m-80  { margin: clamp(1rem, 4vw + 0.2rem, 5rem); }
.mt-80 { margin-top: clamp(1rem, 4vw + 0.2rem, 5rem); }
.mr-80 { margin-right: clamp(1rem, 4vw + 0.2rem, 5rem); }
.mb-80 { margin-bottom: clamp(1rem, 4vw + 0.2rem, 5rem); }
.ml-80 { margin-left: clamp(1rem, 4vw + 0.2rem, 5rem); }
.mx-80 { margin-inline: clamp(1rem, 4vw + 0.2rem, 5rem); }
.my-80 { margin-block: clamp(1rem, 4vw + 0.2rem, 5rem); }

/* Gap 80 */
.gap-80   { gap: clamp(1rem, 4vw + 0.2rem, 5rem); }
.gap-x-80 { column-gap: clamp(1rem, 4vw + 0.2rem, 5rem); }
.gap-y-80 { row-gap: clamp(1rem, 4vw + 0.2rem, 5rem); }

/* Margin */
.m-40 { margin: clamp(24px, 2vw, 40px); }
.mt-40 { margin-top: clamp(24px, 2vw, 40px); }
.mr-40 { margin-right: clamp(24px, 2vw, 40px); }
.mb-40 { margin-bottom: clamp(24px, 2vw, 40px); }
.ml-40 { margin-left: clamp(24px, 2vw, 40px); }
.mx-40 { margin-inline: clamp(24px, 2vw, 40px); }
.my-40 { margin-block: clamp(24px, 2vw, 40px); }

.p-36 { padding: clamp(22px, 1.8vw, 36px); }
.pt-36 { padding-top: clamp(22px, 1.8vw, 36px); }
.pr-36 { padding-right: clamp(22px, 1.8vw, 36px); }
.pb-36 { padding-bottom: clamp(22px, 1.8vw, 36px); }
.pl-36 { padding-left: clamp(22px, 1.8vw, 36px); }
.px-36 { padding-inline: clamp(22px, 1.8vw, 36px); }
.py-36 { padding-block: clamp(22px, 1.8vw, 36px); }

/* Margin */
.m-36 { margin: clamp(22px, 1.8vw, 36px); }
.mt-36 { margin-top: clamp(22px, 1.8vw, 36px); }
.mr-36 { margin-right: clamp(22px, 1.8vw, 36px); }
.mb-36 { margin-bottom: clamp(22px, 1.8vw, 36px); }
.ml-36 { margin-left: clamp(22px, 1.8vw, 36px); }
.mx-36 { margin-inline: clamp(22px, 1.8vw, 36px); }
.my-36 { margin-block: clamp(22px, 1.8vw, 36px); }

/* Padding */
.p-32 { padding: clamp(20px, 1.6vw, 32px); }
.pt-32 { padding-top: clamp(20px, 1.6vw, 32px); }
.pr-32 { padding-right: clamp(20px, 1.6vw, 32px); }
.pb-32 { padding-bottom: clamp(20px, 1.6vw, 32px); }
.pl-32 { padding-left: clamp(20px, 1.6vw, 32px); }
.px-32 { padding-inline: clamp(20px, 1.6vw, 32px); }
.py-32 { padding-block: clamp(20px, 1.6vw, 32px); }

/* Margin */
.m-32 { margin: clamp(20px, 1.6vw, 32px); }
.mt-32 { margin-top: clamp(20px, 1.6vw, 32px); }
.mr-32 { margin-right: clamp(20px, 1.6vw, 32px); }
.mb-32 { margin-bottom: clamp(20px, 1.6vw, 32px); }
.ml-32 { margin-left: clamp(20px, 1.6vw, 32px); }
.mx-32 { margin-inline: clamp(20px, 1.6vw, 32px); }
.my-32 { margin-block: clamp(20px, 1.6vw, 32px); }

/* Padding */
.p-24 { padding: clamp(16px, 1.2vw, 24px); }
.pt-24 { padding-top: clamp(16px, 1.2vw, 24px); }
.pr-24 { padding-right: clamp(16px, 1.2vw, 24px); }
.pb-24 { padding-bottom: clamp(16px, 1.2vw, 24px); }
.pl-24 { padding-left: clamp(16px, 1.2vw, 24px); }
.px-24 { padding-inline: clamp(16px, 1.2vw, 24px); }
.py-24 { padding-block: clamp(16px, 1.2vw, 24px); }

/* Margin */
.m-24 { margin: clamp(16px, 1.2vw, 24px); }
.mt-24 { margin-top: clamp(16px, 1.2vw, 24px); }
.mr-24 { margin-right: clamp(16px, 1.2vw, 24px); }
.mb-24 { margin-bottom: clamp(16px, 1.2vw, 24px); }
.ml-24 { margin-left: clamp(16px, 1.2vw, 24px); }
.mx-24 { margin-inline: clamp(16px, 1.2vw, 24px); }
.my-24 { margin-block: clamp(16px, 1.2vw, 24px); }



.p-20 { padding: clamp(12px, 1vw, 20px); }
.pt-20 { padding-top: clamp(12px, 1vw, 20px); }
.pr-20 { padding-right: clamp(12px, 1vw, 20px); }
.pb-20 { padding-bottom: clamp(12px, 1vw, 20px); }
.pl-20 { padding-left: clamp(12px, 1vw, 20px); }
.px-20 { padding-left: clamp(12px, 1vw, 20px); padding-right: clamp(12px, 1vw, 20px); }
.py-20 { padding-top: clamp(12px, 1vw, 20px); padding-bottom: clamp(12px, 1vw, 20px); }


.m-20 { margin: clamp(12px, 1vw, 20px); }
.mt-20 { margin-top: clamp(12px, 1vw, 20px); }
.mr-20 { margin-right: clamp(12px, 1vw, 20px); }
.mb-20 { margin-bottom: clamp(12px, 1vw, 20px); }
.ml-20 { margin-left: clamp(12px, 1vw, 20px); }
.mx-20 { margin-left: clamp(12px, 1vw, 20px); margin-right: clamp(12px, 1vw, 20px); }
.my-20 { margin-top: clamp(12px, 1vw, 20px); margin-bottom: clamp(12px, 1vw, 20px); }

/* Padding */
.p-16 { padding: clamp(12px, 0.8vw, 16px); }
.pt-16 { padding-top: clamp(12px, 0.8vw, 16px); }
.pr-16 { padding-right: clamp(12px, 0.8vw, 16px); }
.pb-16 { padding-bottom: clamp(12px, 0.8vw, 16px); }
.pl-16 { padding-left: clamp(12px, 0.8vw, 16px); }
.px-16 { padding-inline: clamp(12px, 0.8vw, 16px); }
.py-16 { padding-block: clamp(12px, 0.8vw, 16px); }

/* Margin */
.m-16 { margin: clamp(12px, 0.8vw, 16px); }
.mt-16 { margin-top: clamp(12px, 0.8vw, 16px); }
.mr-16 { margin-right: clamp(12px, 0.8vw, 16px); }
.mb-16 { margin-bottom: clamp(12px, 0.8vw, 16px); }
.ml-16 { margin-left: clamp(12px, 0.8vw, 16px); }
.mx-16 { margin-inline: clamp(12px, 0.8vw, 16px); }
.my-16 { margin-block: clamp(12px, 0.8vw, 16px); }

.p-10 { padding: clamp(6px, 0.5vw, 10px); }
.pt-10 { padding-top: clamp(6px, 0.5vw, 10px); }
.pr-10 { padding-right: clamp(6px, 0.5vw, 10px); }
.pb-10 { padding-bottom: clamp(6px, 0.5vw, 10px); }
.pl-10 { padding-left: clamp(6px, 0.5vw, 10px); }
.px-10 { padding-left: clamp(6px, 0.5vw, 10px); padding-right: clamp(6px, 0.5vw, 10px); }
.py-10 { padding-top: clamp(6px, 0.5vw, 10px); padding-bottom: clamp(6px, 0.5vw, 10px); }

.m-10 { margin: clamp(6px, 0.5vw, 10px); }
.mt-10 { margin-top: clamp(6px, 0.5vw, 10px); }
.mr-10 { margin-right: clamp(6px, 0.5vw, 10px); }
.mb-10 { margin-bottom: clamp(6px, 0.5vw, 10px); }
.ml-10 { margin-left: clamp(6px, 0.5vw, 10px); }
.mx-10 { margin-left: clamp(6px, 0.5vw, 10px); margin-right: clamp(6px, 0.5vw, 10px); }
.my-10 { margin-top: clamp(6px, 0.5vw, 10px); margin-bottom: clamp(6px, 0.5vw, 10px); }

/* Gap 48 (36px to 48px) */
.gap-48   { gap: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.gap-x-48 { column-gap: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.gap-y-48 { row-gap: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }


/* Padding 48 */
.p-48  { padding: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.pt-48 { padding-top: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.pr-48 { padding-right: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.pb-48 { padding-bottom: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.pl-48 { padding-left: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.px-48 { padding-inline: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.py-48 { padding-block: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }

/* Margin 48 */
.m-48  { margin: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.mt-48 { margin-top: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.mr-48 { margin-right: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.mb-48 { margin-bottom: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.ml-48 { margin-left: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.mx-48 { margin-inline: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }
.my-48 { margin-block: clamp(2.25rem, 0.75vw + 2.1rem, 3rem); }

/* Gap 40 (24px to 40px) */
.gap-40 { gap: clamp(24px, 2vw, 40px); }
.gap-x-40 { column-gap: clamp(24px, 2vw, 40px); }
.gap-y-40 { row-gap: clamp(24px, 2vw, 40px); }



/* Gap 32 (20px to 32px) */
.gap-32 { gap: clamp(20px, 1.6vw, 32px); }
.gap-x-32 { column-gap: clamp(20px, 1.6vw, 32px); }
.gap-y-32 { row-gap: clamp(20px, 1.6vw, 32px); }


/* Gap 24 (16px to 24px) */
.gap-24 { gap: clamp(16px, 1.2vw, 24px); }
.gap-x-24 { column-gap: clamp(16px, 1.2vw, 24px); }
.gap-y-24 { row-gap: clamp(16px, 1.2vw, 24px); }

/* Gap 16 (12px to 16px) */
.gap-16 { gap: clamp(12px, 0.8vw, 16px); }
.gap-x-16 { column-gap: clamp(12px, 0.8vw, 16px); }
.gap-y-16 { row-gap: clamp(12px, 0.8vw, 16px); }



.gap-30 { gap: clamp(16px, 1.5vw, 30px); }
.gap-x-30 { row-gap: clamp(16px, 1.5vw, 30px); }
.gap-y-30 { column-gap: clamp(16px, 1.5vw, 30px); }


.gap-36   { gap: clamp(1rem, 1.25vw + 0.75rem, 2.25rem); }
.gap-x-36 { column-gap: clamp(1rem, 1.25vw + 0.75rem, 2.25rem); }
.gap-y-36 { row-gap: clamp(1rem, 1.25vw + 0.75rem, 2.25rem); }



.gap-20 { gap: clamp(12px, 1vw, 20px); }
.gap-x-20 { row-gap: clamp(12px, 1vw, 20px); }
.gap-y-20 { column-gap: clamp(12px, 1vw, 20px); }

.gap-10 { gap: clamp(6px, 0.5vw, 10px); }
.gap-x-10 { row-gap: clamp(6px, 0.5vw, 10px); }
.gap-y-10 { column-gap: clamp(6px, 0.5vw, 10px); }


/*************   */
.clamp-1{
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis;
}

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines */
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}
/******  *********/



/* global container for moduels */

.section{
  width:100%;
  padding: 5em 0;
}

.container{
  max-width:var(--container-max-width);
  width:90%;
  margin:0 auto;
}



/* Mobile css */
@media(max-width:768px){
  .section{
    padding:3em 0;
  }
}


/* This commit is test to check the auto deploy */
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;
}

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




/****** Fluentic animated buttons START *********/

/* Shared Webflow button component. */
.button-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 52px;
  padding: 12px 32px;
  overflow: hidden;
  color: var(--btn-primary-text-color, #FFFFFF);
  font-family: var(--btn-primary-font, 'General Sans', sans-serif);
  font-size: var(--btn-primary-font-size, 18px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: var(--btn-primary-bg-color, #1B0C27);
  border: 1px solid var(--btn-primary-bg-color, #1B0C27);
  border-radius: var(--btn-primary-border-radius, 8px);
  cursor: pointer;
  transition: background-color 550ms ease, border-color 550ms ease,
    color 550ms ease, transform 550ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--btn-primary-text-color, #FFFFFF);
  background-color: var(--btn-primary-bg-color, #1B0C27);
  border-color: var(--btn-primary-bg-color, #1B0C27);
  text-decoration: none;
}

/* The fixed-height viewport clips the two vertically stacked text labels. */
.button-primary .button-text-wrap {
  position: relative;
  height: 1.5em;
  overflow: hidden;
}

.button-primary .button-text {
  transform: translate3d(0, 0, 0);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 500ms ease;
}

.button-primary .button-text.hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.button-primary:hover .button-text:not(.hover),
.button-primary:focus-visible .button-text:not(.hover) {
  opacity: 0;
  transform: translate3d(0, -100%, 0);
}

.button-primary:hover .button-text.hover,
.button-primary:focus-visible .button-text.hover {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Webflow's v2 component variant: light surface, dark label and subtle border. */
.button-primary[data-wf--button-primary--variant='v2'] {
  color: var(--btn-secondary-text-color, #1B0C27);
  background-color: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: var(--btn-secondary-border-radius, 8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button-primary[data-wf--button-primary--variant='v2']:hover,
.button-primary[data-wf--button-primary--variant='v2']:focus-visible {
  color: var(--btn-secondary-text-color, #1B0C27);
  background-color: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-primary:focus-visible {
  outline: 3px solid var(--accent-blue, #80AAFD);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .button-primary,
  .button-primary .button-text {
    transition: none;
  }

  .button-primary:hover,
  .button-primary:focus-visible {
    transform: none;
  }

  .button-primary:hover .button-text:not(.hover),
  .button-primary:focus-visible .button-text:not(.hover) {
    opacity: 1;
    transform: none;
  }

  .button-primary .button-text.hover {
    display: none;
  }
}

/****** Fluentic animated buttons END *********/


/****** Fluentic eyebrow badge START *********/

/* Shared eyebrow treatment used by the hero and other marketing modules. */
.eyebrow-custom {
  display: inline-flex;
  box-sizing: border-box;
  min-height: 36px;
  padding: 7px 14px;
  align-items: center;
  gap: 9px;
  color: var(--eyebrow-text-color, var(--text-primary, #1B0C27));
  font-family: var(--secondary-font, 'General Sans', sans-serif);
  font-size: var(--eyebrow-font-size, 14px);
  font-weight: 500;
  line-height: 1.4;
  background: var(--eyebrow-bg-color, rgba(255, 255, 255, 0.72));
  border: 1px solid var(--eyebrow-border-color, rgba(27, 12, 39, 0.1));
  border-radius: var(--eyebrow-border-radius, 999px);
  box-shadow: 0 2px 5px #00000012, 0 8px 8px #0000000f, 0 19px 11px #0000000a, 0 33px 13px #00000003, 0 52px 15px #0000;
  backdrop-filter: blur(10px);
  margin-bottom: var(--eyebrow-spacing, 12px);
}

/* Scroll reveal: js/main.js adds .eyebrow-anim on load (so no-JS visitors
   never see a hidden badge) and .is-visible when the badge enters the
   viewport — it then rises 20px into place. */
.eyebrow-custom.eyebrow-anim {
  opacity: 0;
  transform: translateY(20px);
}

.eyebrow-custom.eyebrow-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-custom.eyebrow-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow-icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  object-fit: contain;
}

.eyebrow-content {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.eyebrow-text {
  margin: 0; 
  color: inherit;
  font: inherit;
  letter-spacing: 0.01em;
}

/****** Fluentic eyebrow badge END *********/
/* ════════════════════════════════
   HubSpot form overrides
   Works for legacy + multi-step
   Mapped to New Global Variables
════════════════════════════════ */

/* Field spacing */
.fh-form-wrap .hs-form .hs-form-field {
  margin-bottom: 20px;
}

.form-columns-1 .hs-input {
  width: 100%;
}

/* Hide labels for standard input fields, show for radio/checkbox groups */
.fh-form-wrap .hs-form .hs-fieldtype-text > label,
.fh-form-wrap .hs-form .hs-fieldtype-email > label,
.fh-form-wrap .hs-form .hs-fieldtype-phone > label,
.fh-form-wrap .hs-form .hs-fieldtype-number > label,
.fh-form-wrap .hs-form .hs-fieldtype-select > label,
.fh-form-wrap .hs-form .hs-fieldtype-textarea > label {
  display: block;
}

.hs-fieldtype-textarea{
  margin-bottom: 20px;
}

.fh-form-wrap .hs-form .hs-fieldtype-radio > label,
.fh-form-wrap .hs-form .hs-fieldtype-checkbox > label {
  display: block;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, 0.5625vw + 0.8875rem, 1.5625rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}

/* Text / email / phone / number inputs */
.fh-form-wrap .hs-form input.hs-input:not([type="checkbox"]):not([type="radio"]),
.fh-form-wrap .hs-form select.hs-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background: var(--bg-primary);
  border:none;
  border-radius: 14px;
  font-family: var(--secondary-font);
  font-size: .875rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
  padding:19px;
 font-size:14px;
}

/* Select arrow */
.fh-form-wrap .hs-form select.hs-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
  width: 100% !important;
}

/* Textarea */
.fh-form-wrap .hs-form textarea.hs-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  box-sizing: border-box;
  min-height: 92px;
  padding: 19px;
  background: var(--bg-primary);
  border:none;
  border-radius: 14px;
  font-family: var(--secondary-font);
  font-size: 14px;
  color: var(--text-primary);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 0px;
}

/* Focus state */
.fh-form-wrap .hs-form input.hs-input:focus,
.fh-form-wrap .hs-form select.hs-input:focus,
.fh-form-wrap .hs-form textarea.hs-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* Placeholder text */
.fh-form-wrap .hs-form input::placeholder,
.fh-form-wrap .hs-form textarea::placeholder {
  color: var(--text-secondary);
}

/* ── Radio buttons ── */
.fh-form-wrap .hs-form .inputs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fh-form-wrap .hs-form .hs-form-radio,
.fh-form-wrap .hs-form .hs-form-radio-display {
  margin-bottom: 12px;
}

.fh-form-wrap .hs-form .hs-form-radio label,
.fh-form-wrap .hs-form .hs-form-radio-display label {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, 0.5625vw + 0.8875rem, 1.5625rem);
  color: var(--text-primary);
  line-height: 1.4;
}

.fh-form-wrap .hs-form input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 20px !important;
  height: 20px;
  border: var(--global-border-width) solid var(--global-border-color);
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fh-form-wrap .hs-form input[type="radio"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: inset 0 0 0 3px #ffffff;
}

/* ── GDPR / Consent section ── */
.fh-form-wrap .hs-form .legal-consent-container {
  margin-top: 12px;
}

.fh-form-wrap .hs-form .legal-consent-container .hs-richtext {
  font-family: var(--secondary-font);
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.fh-form-wrap .hs-form .legal-consent-container .hs-richtext p {
  margin: 0;
}

.fh-form-wrap .hs-form .legal-consent-container .hs-form-booleancheckbox {
  margin-bottom: 0;
}

.fh-form-wrap .hs-form .legal-consent-container .hs-form-booleancheckbox label {
  display: flex !important;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Custom checkbox */
.fh-form-wrap .hs-form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: var(--global-border-width) solid var(--global-border-color);
  border-radius: 4px;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.fh-form-wrap .hs-form input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ── Submit / Next / Prev buttons ── */
/* ── Submit / Next / Prev buttons (Legacy) ── */
.fh-form-wrap .hs-form .hs-button {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  
  /* Set the solid hover color on the base button */
  background: var(--primary-color);
  color: var(--btn-primary-text-color);
  
  border: none;
  border-radius: var(--btn-primary-border-radius);
  padding: 14px 36px;
  font-family: var(--btn-primary-font);
  font-size: var(--btn-primary-font-size);
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 14px 0 #00061742;
  
  /* Setup for the gradient overlay */
  position: relative;
  z-index: 1;
  overflow: hidden; 
  
  transition: background 0.3s cubic-bezier(.39, .575, .565, 1);
}


.fh-form-wrap .hs-form .hs-button:hover {
  color: var(--text-light-primary);
  background:var(--dark-bg);
}


/* ── Submit Buttons (Multi-step) ── */
[data-hsfc-id=Renderer] .hsfc-Button {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  
  /* Set the solid hover color on the base button */
  background-color: var(--text-primary) !important;
  background-image: none !important; /* Overrides any default HubSpot inline gradients */
  color: var(--btn-primary-text-color) !important;
  
  border: none !important;
  border-radius: var(--btn-primary-border-radius) !important;
  padding: 14px 36px !important;
  font-family: var(--btn-primary-font) !important;
  font-size: var(--btn-primary-font-size) !important;
  cursor: pointer !important;
  width: 100% !important;
  box-shadow: 0 6px 14px 0 #00061742 !important;
  
  /* Setup for the gradient overlay */
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  
  transition: color 0.3s cubic-bezier(.39, .575, .565, 1) !important;
}

/* The gradient sits on top of the solid background */
[data-hsfc-id=Renderer] .hsfc-Button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: radial-gradient(circle farthest-corner at 200% 10%, #51a2ff, #0552fc) !important;
  z-index: -1 !important; /* Keeps it behind the text */
  transition: opacity 0.3s cubic-bezier(.39, .575, .565, 1) !important;
}

/* Fade out the gradient to reveal the solid background color */
[data-hsfc-id=Renderer] .hsfc-Button:hover::before {
  opacity: 0 !important;
}

[data-hsfc-id=Renderer] .hsfc-Button:hover {
  color: var(--text-light-primary) !important;
}

/* ── Error messages ── */
.fh-form-wrap .hs-form .hs-error-msgs {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.fh-form-wrap .hs-form .hs-error-msg,
.fh-form-wrap .hs-form label.hs-error-msg {
  font-family: var(--secondary-font);
  font-size: 12px;
  color: #EF6B51;
  display: block;
}

/* ── Multi-step: progress bar ── */
.fh-form-wrap .hs-form .hs-progress-bar {
  height: 4px;
  background: var(--global-border-color);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.fh-form-wrap .hs-form .hs-progress-bar .hs-progress-bar-fill {
  height: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: width 0.4s ease;
}


/* ════════════════════════════════
   Multi Step Overrides
   ════════════════════════════════ */

/* ── Individual Radio Option Rows ── */
.fh-form-wrap .hsfc-FieldLabel {
  display: flex !important;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--secondary-font);
  font-size: clamp(1rem, 0.5625vw + 0.8875rem, 1.5625rem);
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

/* ── Custom Radio Buttons ── */
.fh-form-wrap input[type="radio"].hsfc-RadioInput {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 20px !important;
  height: 20px;
  border: var(--global-border-width) solid var(--global-border-color);
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
 padding:0 !important;
}

[data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options label {
  margin-bottom: 12px;
}

.hsfc-RadioInput:checked:after {
  background-color: var(--primary-color) !important;
}

[data-hsfc-id=Renderer] .hsfc-NavigationRow {
 margin-top:0px !important;
}

/* ── Text Input ── */
[data-hsfc-id=Renderer] .hsfc-TextInput {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 16px !important;
  background: var(--bg-primary) !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--secondary-font) !important;
  font-size: .875rem !important;
  color: var(--text-primary) !important;
  resize: vertical !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

[data-hsfc-id=Renderer] .hsfc-TextInput:focus{
 box-shadow:none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextInput:active {
 box-shadow:none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextInput:focus-visible{
outline:none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextInput:hover {
 box-shadow: none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextareaInput:focus {
 box-shadow:none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextareaInput:active {
box-shadow:none !important;
}

[data-hsfc-id=Renderer] .hsfc-TextareaInput:hover{
 box-shadow:none !important;
}

[data-hsfc-id=Renderer] .hsfc-DropdownOptions__List__ListItem {
  background: var(--bg-primary) !important;
}

[data-hsfc-id=Renderer] .hsfc-DropdownOptions__Search {
  background: var(--bg-primary) !important;
}

[data-hsfc-id=Renderer] .hsfc-TextareaInput {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  box-sizing: border-box;
  padding: 14px 16px;
  background: var(--bg-primary) !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: var(--secondary-font) !important;
  font-size: .875rem !important;
  color: var(--text-primary) !important;
  resize: vertical !important;
  min-height: 90px !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}

.hsfc-NavigationRow__Buttons:has(>*:only-child) {
  justify-content: flex-start !important;
}

/* ── Submit Buttons ── */
[data-hsfc-id=Renderer] .hsfc-Button {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  background: var(--primary-color) !important;
  color: var(--btn-primary-text-color) !important;
  border: none !important;
  border-radius: var(--btn-primary-border-radius) !important;
  padding: 14px 36px !important;
  font-family: var(--btn-primary-font) !important;
  font-size: var(--btn-primary-font-size) !important;
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease !important; 
  margin-top: 8px !important;
  width: 100% !important;
  box-shadow: 0 6px 14px 0 #00061742 !important;
  transition: border-color .3s cubic-bezier(.39, .575, .565, 1), box-shadow .3s cubic-bezier(.39, .575, .565, 1), color .3s cubic-bezier(.39, .575, .565, 1);
}

[data-hsfc-id=Renderer] .hsfc-Button:hover {
  background: var(--text-primary) !important;
  color: var(--text-light-primary) !important;
}

/* ── Labels & Text ── */
[data-hsfc-id=Renderer] .hsfc-FieldLabel {
  display: block !important;
  font-family: var(--primary-font) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  line-height: 1.2 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}

[data-hsfc-id=Renderer] .hsfc-RichText p {
  display: block;
  font-family: var(--primary-font) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 16px !important;
}
[data-hsfc-id=Renderer] .hsfc-Button:not([disabled]):hover {
  transform: translateY(0px) !important;
}

[data-hsfc-id=Renderer] .hsfc-RadioFieldGroup__Options label {
  gap: 12px !important;
}

/* ── Phone Inputs ── */
.hsfc-PhoneInput {
  gap: 0px !important;
}

.hsfc-PhoneInput .hsfc-TextInput {
  border-top-left-radius: 0px !important;
  border-top-right-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
  border-bottom-left-radius: 0px !important;
}

[data-hsfc-id=Renderer] .hsfc-PhoneInput:not(.hsfc-PhoneInput--rtl) .hsfc-PhoneInput__FlagAndCaret {
  border: none !important;
  border-right: 0px !important; 
  border-top-left-radius: 14px !important;
  border-bottom-left-radius: 14px !important;
  background: var(--bg-primary);
}

/* ════════════════════════════════
   Generic Inputs & Overrides
   ════════════════════════════════ */

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


.form-columns-2{
 display:flex;
 gap: 10px;
}

form label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--primary-font);
  color: var(--text-primary);
  line-height: 1.2;
  margin-top: 0;
  font-size:1rem;
  font-weight:600;
  margin-bottom:16px;
}

.form-title {
  margin-bottom: 0;
}

form legend {
  font-size: 0.875rem;
}

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

@media (max-width: 400px), (min-device-width: 320px) and (max-device-width: 480px) {
  .fh-form-wrap .hs-form input.hs-input:not([type="checkbox"]):not([type="radio"]),
  .fh-form-wrap .hs-form select.hs-input {
    width: 100% !important;
  }
}

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

/* 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: var(--bg-primary); /* Adjusted from #FFF to fit themes dynamically */
}

.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: var(--bg-primary);
}

/* 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: 10px !important;
  border-radius: var(--global-border-radius);
  font-family: var(--secondary-font);
  font-size: clamp(1rem, 0.5625vw + 0.8875rem, 1.5625rem);
  color: var(--text-secondary);
}

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

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

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

/* Submit button fallback */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}

/* Search Input module integration */
.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: var(--bg-primary);
}

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

.body-container-wrapper .hs-search-field__suggestions li a {
  color: var(--text-primary);
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   Fluentic Contact Us form
   Scoped so existing theme forms retain their current treatment.
═══════════════════════════════════════════════════════════════ */
.fh-form-wrap.fluentic-contact-form .hs-form,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] {
  color: var(--text-primary);
  font-family: var(--secondary-font);
}

.fh-form-wrap.fluentic-contact-form .hs-form fieldset {
  max-width: none !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .form-columns-1,
.fh-form-wrap.fluentic-contact-form .hs-form .form-columns-2 {
  margin: 0 !important;
  max-width: none !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .form-columns-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fh-form-wrap.fluentic-contact-form .hs-form .form-columns-2 .hs-form-field {
  float: none !important;
  width: 100% !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-form-field {
  margin-bottom: 16px;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-form-field > label,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-FieldLabel {
  color: var(--text-primary) !important;
  display: block !important;
  font-family: var(--secondary-font) !important;
  font-size: 1rem !important;
  font-weight: var(--font-weight-regular, 400) !important;
  line-height: 1.4 !important;
  margin: 0 0 12px !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form input.hs-input:not([type='checkbox']):not([type='radio']):not([type='file']),
.fh-form-wrap.fluentic-contact-form .hs-form select.hs-input,
.fh-form-wrap.fluentic-contact-form .hs-form textarea.hs-input,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextInput,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextareaInput {
  background-color: var(--bg-primary) !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: var(--text-primary) !important;
  font-family: var(--secondary-font) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  min-height: 50px !important;
  outline: none !important;
  padding: 12px !important;
  transition: border-color 200ms ease, box-shadow 200ms ease !important;
  width: 100% !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form select.hs-input {
  background-position: right 12px center;
  padding-right: 40px !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form textarea.hs-input,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextareaInput {
  min-height: 144px !important;
  resize: vertical !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form input.hs-input:focus,
.fh-form-wrap.fluentic-contact-form .hs-form select.hs-input:focus,
.fh-form-wrap.fluentic-contact-form .hs-form textarea.hs-input:focus,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextInput:focus,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextareaInput:focus {
  border-color: color-mix(in srgb, var(--text-primary) 35%, transparent) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-purple) 16%, transparent) !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form input::placeholder,
.fh-form-wrap.fluentic-contact-form .hs-form textarea::placeholder,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] input::placeholder,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] textarea::placeholder {
  color: color-mix(in srgb, var(--text-primary) 55%, transparent) !important;
  opacity: 1;
}

.fh-form-wrap.fluentic-contact-form .hs-form .actions,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-NavigationRow {
  margin: 16px 0 0 !important;
  padding: 0 !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-button,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-Button {
  -webkit-appearance: none !important;
  appearance: none !important;
  background: var(--text-primary) !important;
  border: 1px solid var(--text-primary) !important;
  border-radius: var(--btn-primary-border-radius, 8px) !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  color: var(--text-light-primary) !important;
  cursor: pointer !important;
  font-family: var(--btn-primary-font, var(--secondary-font)) !important;
  font-size: var(--btn-primary-font-size, 1rem) !important;
  font-weight: var(--font-weight-medium, 500) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  min-height: 52px !important;
  padding: 12px 32px !important;
  transition: background-color 550ms ease, border-color 550ms ease,
    color 550ms ease, transform 550ms ease !important;
  width: 100% !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-button:hover,
.fh-form-wrap.fluentic-contact-form .hs-form .hs-button:focus-visible,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-Button:hover,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-Button:focus-visible {
  background: var(--btn-primary-bg-color, #1B0C27) !important;
  border-color: var(--btn-primary-bg-color, #1B0C27) !important;
  color: var(--btn-primary-text-color, #FFFFFF) !important;
  text-decoration: none !important;
  transform: none !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-button:focus-visible,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-Button:focus-visible {
  outline: 3px solid var(--accent-blue) !important;
  outline-offset: 3px !important;
}

.fh-form-wrap.fluentic-contact-form .hs-form .legal-consent-container,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-LegalConsent {
  color: var(--text-secondary);
  font-family: var(--secondary-font);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.fh-form-wrap.fluentic-contact-form .hs-form .hs-error-msg,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-ErrorAlert,
.fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-FieldError {
  color: var(--accent-red, #F82A2D) !important;
  font-size: 0.75rem !important;
}

.fh-form-wrap.fluentic-contact-form .submitted-message {
  background-color: var(--bg-primary);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 24px;
}

@media (max-width: 767px) {
  .fh-form-wrap.fluentic-contact-form .hs-form .form-columns-2 {
    grid-template-columns: 1fr;
  }

  .fh-form-wrap.fluentic-contact-form .hs-form textarea.hs-input,
  .fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextareaInput {
    min-height: 120px !important;
  }
}

@media (max-width: 479px) {
  .fh-form-wrap.fluentic-contact-form .hs-form textarea.hs-input,
  .fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-TextareaInput {
    min-height: 100px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fh-form-wrap.fluentic-contact-form .hs-form .hs-button,
  .fh-form-wrap.fluentic-contact-form [data-hsfc-id='Renderer'] .hsfc-Button {
    transition: none !important;
  }
}


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




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