/*--------------------------------------------------------------
TABLE OF CONTENT
----------------------------------------------------------------
1.0 VARIABLE
|  1.1 COLOR
|  1.2 TYPOGRAPHY
|  1.3 LAYOUT
2.0 FOUNDATION
3.0 TYPOGRAPHY
4.0 IMAGE
5.0 LAYOUT
6.0 COMPONENT
|  6.1 CTA
|  6.2 BUTTON
|  6.3 TOGGLE
|  6.4 CARD
|  6.5 LIST
7.0 SECTION
|  7.1 HEADER
|  7.2 HERO
|  7.3 CUSTOMER
|  7.4 FEATURE
|  7.5 PRICING
|  7.6 TESTIMONIAL
|  7.7 CLOSE
|  7.8 FOOTER
8.0 MEDIA
|  8.1 768PX
|  8.2 1024PX
|  8.3 1200PX
|  8.4 Mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 VARIABLE
--------------------------------------------------------------*/

:root {

  /*------------------------------------------------------------
  |
  | 1.1 COLOR
  |
  ------------------------------------------------------------*/

  --ui-color-brand: #353535;

  /* COLOR PALETTE */

  --ui-color-n-000: #fff;
  --ui-color-n-050: #fffcf4;
  --ui-color-n-100: #f7eedb;
  --ui-color-n-300: #aeaeae;
  --ui-color-n-500: #353535;
  --ui-color-n-700: #282828;
  --ui-color-n-900: #1a1a1a;

  /* BACKGROUND COLOR */
  
  --ui-color-background-primary  : var(--ui-color-n-000);
  --ui-color-background-secondary: var(--ui-color-n-050);
  --ui-color-background-tertiary : var(--ui-color-n-100);

  /* BORDER COLOR */

  --ui-color-border: var(--ui-color-n-100);

  /* TYPOGRAPHY COLOR */

  --ui-color-typography-heading: var(--ui-color-n-500);
  --ui-color-typography-body   : var(--ui-color-n-900);
  --ui-color-typography-note   : var(--ui-color-n-300);
  --ui-color-typography-button : var(--ui-color-n-000);

  /*------------------------------------------------------------
  |
  | 1.2 TYPOGRAPHY
  |
  ------------------------------------------------------------*/

  --ui-typography-typeface: "Inter", sans-serif;

  /* FONT SIZE */

  --ui-typography-h1: 1.9375rem;
  --ui-typography-h2: 1.5625rem;
  --ui-typography-h2: 1.5625rem;
  --ui-typography-h3: 1.25rem;
  --ui-typography-p : 1rem;
  --ui-typography-s : .8125rem;

  /* LEADING */

  --ui-typography-h1-leading: 1.2;
  --ui-typography-h2-leading: 1.2;
  --ui-typography-p-leading : 1.5;

  /* MARGIN */

  --ui-typography-margin-heading: .75rem;
  --ui-typography-margin-body   : 1.125rem;

  /*------------------------------------------------------------
  |
  | 1.3 LAYOUT
  |
  ------------------------------------------------------------*/
  
  --ui-layout-container: 1.25rem;
  --ui-layout-grid     : 3.625rem;
  --ui-layout-gutter   : 1rem;

  /* GAP */
  
  --ui-gap-header     : 1rem;
  --ui-gap-cta        : .75rem;
  --ui-gap-hero       : 2rem;
  --ui-gap-customer   : 2rem;
  --ui-gap-feature    : 2rem;
  --ui-gap-card       : 1.25rem;
  --ui-gap-pricing    : 2rem;
  --ui-gap-testimonial: 3rem;

  /* BORDER RADIUS */
  
  --ui-radius-avatar: 5rem;
  --ui-radius-button: 1em;
  --ui-radius-card  : .5rem;

}

/*--------------------------------------------------------------
2.0 FOUNDATION
--------------------------------------------------------------*/

html { box-sizing: border-box; }

*,
*:before,
*:after { box-sizing: inherit; }

body {
  background-color: var(--ui-color-background-primary);
  color: var(--ui-color-typography-body);
  font-family: var(--ui-typography-typeface);
  font-feature-settings: "liga", "kern";
  font-size: var(--ui-typography-p);
  font-weight: 400;
  line-height: var(--ui-typography-p-leading);
  margin: 0 auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
3.0 TYPOGRAPHY
--------------------------------------------------------------*/

a {
  color: var(--ui-color-brand);
  text-decoration-color: var(--ui-color-typography-note);
}

h1,
h2,
p,
ul { margin-top: 0; }

h1,
h2 {
  color: var(--ui-color-typography-heading);
  margin-bottom: var(--ui-typography-margin-heading);
}

h1 {
  font-size: var(--ui-typography-h1);
  line-height: var(--ui-typography-h1-leading);
}

h2 {
  font-size: var(--ui-typography-h2);
  line-height: var(--ui-typography-h2-leading);
}

p,
ul { margin-bottom: var(--ui-typography-margin-body); }

p:last-child,
ul:last-child { margin-bottom: 0; }

ul { padding-left: 0;
     list-style-position: outside;
     margin-left: 1.25rem; }

strong { font-weight: 700; }

small { font-size: var(--ui-typography-s); }

.ui-text-note {
  color: var(--ui-color-typography-note);
  line-height: 1;
}

.h1-highlight {
display: inline;
font-family: "Kalam", sans-serif;
font-weight: 700;
padding: 0 .2em;
line-height: 1.1;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
background-position: 0 0.6em;
background-size: 100% 0.55em;
background-repeat: no-repeat;
border-radius: 0.05em;
}

.h1-underline {
  position: relative;      /* establishes positioning context */
  display: inline-block;   /* lets underline size match text width */
  font-weight: 700;
  line-height: 1.1;
}

/* Create the gradient underline */
.h1-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3em;          /* space between text and line */
  width: 100%;
  height: 6px;             /* thickness */
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  border-radius: 2px;
}


.h2-services {
  position: relative;      /* establishes positioning context */
  display: inline-block;   /* lets underline size match text width */
  font-weight: 700;
  line-height: 1.1;
  padding-bottom:1.5rem;
}


.h2-contact .h1-underline {
  background-position: 0 0.62em;  /* vertical placement */
  background-size: 100% 0.58em;   /* thickness */
}


.ui-text-intro-highlight {
display: inline;
font-family: "Kalam", sans-serif;
font-weight: 700;
padding: 0 .2em;
line-height: 1.1;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
background-position: 0 0.6em;
background-size: 100% 0.55em;
background-repeat: no-repeat;
border-radius: 0.05em;
}


/* “No jargon / No endless meetings / No condescending consultants” row */
.ui-text-promises {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding-top: 1.25rem;
  margin: 1.5rem auto 1rem;
  font-family: "Kalam", sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.ui-text-promises li {
  display: inline-block;
}

/* Mobile: stack vertically and shrink a bit */
@media (max-width: 768px) {
  .ui-text-promises {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    margin: 1.25rem auto 0.75rem;
    padding-top: 0.5rem;
  }

  .ui-text-promises li {
    max-width: 18rem;
  }
}
/*--------------------------------------------------------------
4.0 IMAGE
--------------------------------------------------------------*/

img,
svg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/*--------------------------------------------------------------
5.0 LAYOUT
--------------------------------------------------------------*/

.ui-layout-container {
  padding-left: var(--ui-layout-container);
  padding-right: var(--ui-layout-container);
}

.ui-layout-flex,
.ui-layout-grid {
  align-items: center;
  justify-content: center;
}

.ui-layout-flex { display: flex; }

.ui-layout-grid { display: grid; }

/*--------------------------------------------------------------
6.0 COMPONENT
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 6.1 CTA
|
--------------------------------------------------------------*/

.ui-component-cta {
  flex-direction: column;
  row-gap: var(--ui-gap-cta);
}

/*--------------------------------------------------------------
|
| 6.2 BUTTON
|
--------------------------------------------------------------*/

.ui-component-button {
  border: .0625rem solid var(--ui-color-brand);
  border-radius: var(--ui-radius-button);
  display: block;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.ui-component-button-primary {
  background-color: var(--ui-color-brand);
  color: var(--ui-color-typography-button);
}

.ui-component-button-secondary {
  background-color: var(--ui-color-background-primary);
  color: var(--ui-color-brand);
}

.ui-component-button-big,
.ui-component-button-normal { padding: .75rem 1rem .875rem; }

.ui-component-button-big { width: 100%; }

.ui-component-button-normal { width: fit-content; }

/* === Animated gold swipe for primary button === */
.ui-component-button-primary {
  position: relative;
  overflow: hidden; /* keeps gradient inside */
  z-index: 0;
  transition: color 0.3s ease; /* smooth text color change */
}

/* Gradient overlay (hidden at first) */
.ui-component-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1; /* behind text */
  border-radius: inherit; /* match button shape */
}

/* Hover state: swipe in gold gradient */
.ui-component-button-primary:hover::before {
  transform: scaleX(1);
}

/* Text color changes for contrast */
.ui-component-button-primary:hover {
  color: var(--ui-color-n-900); /* dark text on gold */
}

/* Optional: keep gold background if 'active' */
.ui-component-button-primary.active::before,
.ui-component-button-primary:active::before {
  transform: scaleX(1);
}
.ui-component-button-primary.active,
.ui-component-button-primary:active {
  color: var(--ui-color-n-900);
}

.ui-component-button-cta {
  border: .0625rem solid var(--ui-color-brand);
  border-radius: var(--ui-radius-button);
  display: inline;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.ui-component-button-primary-cta {
  background-color: var(--ui-color-brand);
  color: var(--ui-color-typography-button);
}


/*--------------------------------------------------------------
|
| 6.3 TOGGLE
|
--------------------------------------------------------------*/

input[name="toggle"] { display: none; }

.ui-component-toggle {
  background-color: var(--ui-color-background-tertiary);
  border-radius: var(--ui-radius-button);
  color: var(--ui-color-typography-note);
  font-size: var(--ui-typography-s);
  font-weight: 700;
  line-height: 1;
  margin: var(--ui-gap-pricing) auto .5rem;
  padding: .25rem;
  width: max-content;
}

.ui-component-toggle--label {
  border-radius: var(--ui-radius-button);
  cursor: pointer;
  padding: .5rem .625rem;
}

#ui-component-toggle__monthly:checked ~
div label[for=ui-component-toggle__monthly],
#ui-component-toggle__yearly:checked ~
div label[for=ui-component-toggle__yearly] {
  background-color: var(--ui-color-background-primary);
  color: var(--ui-color-typography-body);
}

/*--------------------------------------------------------------
|
| 6.4 CARD
|
--------------------------------------------------------------*/

.ui-component-card {
  border: .0625rem solid var(--ui-color-border);
  border-radius: var(--ui-radius-card);
  overflow: hidden;
  width: 100%;
}

/*--------------------------------------------------------------
|
| 6.5 LIST
|
--------------------------------------------------------------*/

.ui-component-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ui-component-list--item {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; /* ← consistent horizontal space */
}

.ui-component-list--item:last-child {
  margin-bottom: 0;     /* 👈 remove extra space after the last item */
}


/*--------------------------------------------------------------
7.0 SECTION
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 7.1 HEADER
|
--------------------------------------------------------------*/

.ui-section-header {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  margin-top: 0;
}

.ui-section-header__layout { 
justify-content: space-between;
  align-items: center; /* keeps everything vertically centered */
  padding-bottom: 0.75rem; /* ðŸ‘ˆ adds breathing room above the sticky shadow */
}

/* LOGO */

.ui-section-header--logo { z-index: 1; }

/* HAMBURGER */

#ui-section-header--menu-id { display: none; }

.ui-section-header--menu-icon {
  cursor: pointer;
  display: block;
  height: 1.125rem;
  padding-bottom: .25rem;
  padding-top: .25rem;
  position: relative;
  width: 1.125rem;
  z-index: 1;
}

.ui-section-header--menu-icon::before,
.ui-section-header--menu-icon::after {
  background: var(--ui-color-brand);
  content: "";
  height: .125rem;
  left: 0;
  position: absolute;
  transition: all 250ms cubic-bezier(.785, .135, .15, .86);
  width: 1.125rem;
}

.ui-section-header--menu-icon::before { top: .3125rem; }

.ui-section-header--menu-icon::after { top: .6875rem; }

#ui-section-header--menu-id:checked ~
.ui-section-header--menu-icon::before {
  transform: translateY(3px) rotate(135deg);
}

#ui-section-header--menu-id:checked ~
.ui-section-header--menu-icon::after {
  transform: translateY(-3px) rotate(45deg);
}

/* MENU */

.ui-section-header--nav {
  background-color: var(--ui-color-background-primary);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
  flex-direction: column;
  gap: var(--ui-gap-header);
  left: 0;
  opacity: 0;
  padding: 7.375rem var(--ui-layout-container) 5rem;
  position: absolute;
  right: 0;
  top: -1rem;
  transition: all 250ms cubic-bezier(.785, .135, .15, .86);
  visibility: hidden;
}

#ui-section-header--menu-id:checked ~
.ui-section-header--nav {
  opacity: 1;
  top: 0;
  visibility: visible;
}

.ui-section-header--nav-link {
  font-size: var(--ui-typography-h3);
  padding: .5rem;
  text-decoration: none;
  color: var(--ui-color-typography-heading);
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 1.1;
}

/* Create the underline */
.ui-section-header--nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5em;
  width: 100%;
  height: 6px; /* thickness of underline */
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  border-radius: 2px;
  transform: scaleX(0);           /* start hidden */
  transform-origin: left center;  /* swipe from left to right */
  transition: transform 0.3s ease;
}

/* Hover: swipe the underline in */
.ui-section-header--nav-link:hover::after {
  transform: scaleX(1);
}

/* Active or selected: keep it underlined */
.ui-section-header--nav-link:focus::after,
.ui-section-header--nav-link:active::after,
.ui-section-header--nav-link.active::after {
  transform: scaleX(1);
}

/* Make header sticky */
.ui-section-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ui-color-background-primary);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Add subtle shadow when scrolled */
.ui-section-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: var(--ui-color-background-primary); /* keep consistent tone */
}


/*--------------------------------------------------------------
|
| 7.2 HERO
|
--------------------------------------------------------------*/

.ui-section-hero {
  padding-bottom: 2.5rem; /* reduced from 5rem */
  padding-top: 4rem;
  text-align: center;
}

.ui-section-hero__layout { row-gap: var(--ui-gap-hero); }

/*--------------------------------------------------------------
|
| 7.3 CUSTOMER
|
--------------------------------------------------------------*/

.ui-section-customer__layout {
  flex-direction: column;
  row-gap: var(--ui-gap-customer);
}

.ui-section-customer--logo {
  display: block;
  max-height: 1.75rem;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.ui-section-customer {
  padding-bottom: 4.5rem; /* adds some breathing room below the carousel */
}

.ui-section-customer--logo-str { height: 1.75rem; }
  
.ui-section-customer--logo-bhn { height: 1.375rem; }

/*--------------------------------------------------------------
|
| 7.4 FEATURE
|
--------------------------------------------------------------*/

.ui-section-feature {
  background-color: var(--ui-color-background-secondary);
  padding-bottom: 5rem;
  padding-top: 3.5rem;
}

.ui-section-feature__layout { row-gap: var(--ui-gap-feature); }

.ui-section-feature__layout:first-of-type div {
  grid-row-start: 1;
}


/* consistent spacing between all feature blocks */
.ui-section-feature__layout + .ui-section-feature__layout {
  margin-top: 5rem;
}

/* spacing below the H1 and before the first feature grid */
.ui-section-feature h1 {
  margin-bottom: 3rem;
}

/* Prevent sticky header from covering anchor targets */
.ui-section-feature {
  scroll-margin-top: 6rem; /* adjust for your header height */
}

/*--------------------------------------------------------------
|
| 7.5 PRICING
|
--------------------------------------------------------------*/

.ui-section-approach {
  background-color: var(--ui-color-background-primary);
  padding-top: 3.5rem;  /* same as .ui-section-feature */
  padding-bottom: 5rem;
  text-align: left;
  scroll-margin-top: 6rem;
}

.ui-section-approach h1 {
  margin-bottom: 3rem; /* same as features */
}

.ui-section-approach .ui-section-intro {
  margin-bottom: 3rem; /* same breathing room as features section */
}

.ui-about-section-intro {
  margin-bottom: 1.5rem; /* same breathing room as features section */
}

.ui-section-approach__layout {
  justify-content: initial;
  margin-bottom: var(--ui-gap-pricing);
  margin-top: var(--ui-gap-pricing);
  row-gap: var(--ui-gap-card);
}

/* CARD */

.ui-component-card--pricing {
  background-color: var(--ui-color-background-primary);
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: left;
}

.ui-component-card--pricing-price {
  line-height: 1;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}

.ui-component-card--pricing-amount {
  font-size: var(--ui-typography-h1);
  font-weight: 700;
}

/* AMOUNT */

.ui-component-card--pricing-amount-1::before { content: "$5"; }

#ui-component-toggle__yearly:checked ~ div
.ui-component-card--pricing-amount-1::before { content: "$3"; }

.ui-component-card--pricing-amount-2::before { content: "$15"; }

#ui-component-toggle__yearly:checked ~ div
.ui-component-card--pricing-amount-2::before { content: "$13"; }

.ui-component-card--pricing-amount-3::before { content: "$25"; }

#ui-component-toggle__yearly:checked ~ div
.ui-component-card--pricing-amount-3::before { content: "$23"; }

/* LIST */

.ui-component-list--pricing {
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
}

/*--------------------------------------------------------------
|
| 7.6 TESTIMONIAL
|
--------------------------------------------------------------*/

.ui-section-testimonial {
  padding-bottom: 5rem;
  padding-top: 5rem;
  text-align: center;
}

.ui-section-testimonial__layout {
  row-gap: var(--ui-gap-testimonial);
}

.ui-section-testimonial--avatar {
  border-radius: var(--ui-radius-avatar);
  height: 5rem;
  width: 5rem;
}

.ui-section-testimonial--quote {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.ui-section-testimonial--author { line-height: 1.25; }


/*--------------------------------------------------------------
|
| 7.65 ABOUT
|
--------------------------------------------------------------*/

.ui-section-about {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 3.5rem;
}

.ui-section-about__layout { row-gap: var(--ui-gap-feature); }

.ui-section-about__layout:first-of-type div {
  grid-row-start: 1;
}


/* consistent spacing between all feature blocks */
.ui-section-about__layout + .ui-section-about__layout {
  margin-top: 5rem;
}

/* spacing below the H1 and before the first feature grid */
.ui-section-about h1 {
  margin-bottom: 3rem;
}

/* Prevent sticky header from covering anchor targets */
.ui-section-about {
  scroll-margin-top: 6rem; /* adjust for your header height */
}


/*--------------------------------------------------------------
|
| 7.7 CLOSE
|
--------------------------------------------------------------*/

.ui-section-close {
  background-color: var(--ui-color-background-primary);
  padding-bottom: 5rem;
  padding-top: 5rem;
  text-align: center;
}



/*--------------------------------------------------------------
|
| 7.8 FOOTER
|
--------------------------------------------------------------*/

.ui-section-footer {
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.ui-section-footer__layout {
  column-gap: var(--ui-layout-gutter);
}

.ui-section-footer--copyright {
  margin-bottom: 0;
  margin-right: auto;
}

/*--------------------------------------------------------------
8.0 MEDIA
--------------------------------------------------------------*/

/*--------------------------------------------------------------
|
| 8.1 768PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 48rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/
  
  :root {

    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/

    /* FONT SIZE */

    --ui-typography-h1: 2.1875rem;
    --ui-typography-h2: 1.75rem;
    --ui-typography-p : 1.125rem;
    --ui-typography-s : .875rem;

    /* MARGIN */

    --ui-typography-margin-body: 1.25rem;

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-container: 4.25rem;
    --ui-layout-gutter   : 1.5rem;

    /* GAP */

    --ui-gap-header: 1.5rem;
    --ui-gap-card  : 1.5rem;

  }

  /*------------------------------------------------------------
  IMAGE
  ------------------------------------------------------------*/

  .ui-image-half-left {
    border:5px solid #bf9b30;
    border-radius:1em;
  }

  .ui-image-half-right {
    border:5px solid #bf9b30;
    border-radius:1em;
  }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/

  .ui-layout-container,
  .ui-layout-column-center {
    margin-left: auto;
    margin-right: auto;
  }

  .ui-layout-grid-2,
  .ui-layout-grid-3 {
    column-gap: var(--ui-layout-gutter);
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .ui-layout-grid-3 div:nth-of-type(3) {
    left: calc(50% + (var(--ui-layout-gutter) / 2));
    position: relative;
  }

  .ui-layout-column-4 {
    width: calc((var(--ui-layout-grid) * 4) +
           (var(--ui-layout-gutter) * 3));
  }

  /*------------------------------------------------------------
  COMPONENT
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | LIST
  |
  ------------------------------------------------------------*/

  .ui-component-list--item {
    background-size: 1.25rem;
    padding-left: 0;
  }

  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/

  .ui-section-header {
    padding-bottom: 0;
    padding-top: 1.25rem;
  }

  /* ICON */

  .ui-section-header--menu-icon { display: none; }

  /* NAV */

  .ui-section-header--nav {
    background-color: transparent;
    box-shadow: none;
    flex-direction: row;
    opacity: 1;
    padding: 0;
    position: static;
    visibility: visible;
  }
  
  .ui-section-header--nav-link {
    font-size: var(--ui-typography-p);
    padding: 0;
  }

  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/

  .ui-section-hero { text-align: left; }

  .ui-section-hero .ui-component-cta { align-items: start; }

  /*------------------------------------------------------------
  |
  | CUSTOMER
  |
  ------------------------------------------------------------*/

  .ui-section-customer__layout {
    column-gap: var(--ui-gap-customer);
    flex-direction: row;
  }
  
  .ui-section-customer--logo {
    margin-left: 0;
    margin-right: 0;
  }

  /*------------------------------------------------------------
  |
  | FEATURE
  |
  ------------------------------------------------------------*/

  .ui-section-feature__layout:first-of-type div {
    grid-row-start: initial;
  }

  /*------------------------------------------------------------
  |
  | PRICING
  |
  ------------------------------------------------------------*/

  .ui-component-card--pricing { padding: 2rem 2rem 2.25rem; }

  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/

  .ui-section-footer {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  
}

/*--------------------------------------------------------------
|
| 8.2 1024PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 64rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/

  :root {

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-container: 0;
  
  }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  
  .ui-layout-container { width: 60rem; }

  .ui-layout-grid-3 { grid-template-columns: repeat(3, 1fr); }

  .ui-layout-grid-3 div:nth-of-type(3) { position: static; }

  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/

  .ui-section-hero .ui-component-cta {
    align-items: center;
    column-gap: var(--ui-gap-cta);
    flex-direction: row;
    justify-content: start;
  }

}

/*--------------------------------------------------------------
|
| 8.3 1200PX
|
--------------------------------------------------------------*/

@media screen and (min-width: 75rem) {

  /*------------------------------------------------------------
  VARIABLE
  ------------------------------------------------------------*/

  :root {

    /*----------------------------------------------------------
    |
    | TYPOGRAPHY
    |
    ----------------------------------------------------------*/

    /* FONT SIZE */

    --ui-typography-h1: 2.75rem;
    --ui-typography-h2: 2.1875rem;
    --ui-typography-h3: 1.75rem;
    --ui-typography-h4: 1.4375rem;

    /* MARGIN */

    --ui-typography-margin-heading: 1rem;
    --ui-typography-margin-body   : 1.75rem;

    /*----------------------------------------------------------
    |
    | LAYOUT
    |
    ----------------------------------------------------------*/

    --ui-layout-grid  : 4rem;
    --ui-layout-gutter: 2rem;

    /* GAP */

    --ui-gap-header  : 2rem;
    --ui-gap-customer: 4rem;
    --ui-gap-card    : 2rem;
    --ui-gap-pricing : 3rem;
    
  }

  /*------------------------------------------------------------
  TYPOGRAPHY
  ------------------------------------------------------------*/

  .ui-text-intro { font-size: var(--ui-typography-h4); }
  .ui-about-text-intro { font-size: var(--ui-typography-h4); padding-bottom:1em; }
  .ui-section-intro { font-size: var(--ui-typography-h3); padding-bottom:1em; }
  .ui-section-about-intro { font-size: var(--ui-typography-h3); }
  .ui-section-approach-intro { font-size: var(--ui-typography-h3); }
  .ui-section-approach-close { font-size: var(--ui-typography-CTA-h2); }

  /*------------------------------------------------------------
  LAYOUT
  ------------------------------------------------------------*/
  
  .ui-layout-container { width: 70rem; }

  /*------------------------------------------------------------
  COMPONENT
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | BUTTON
  |
  ------------------------------------------------------------*/

  .ui-component-button-big,
  .ui-component-button-normal {
    padding-bottom: 1.125rem;
    padding-top: 1rem;
  }

  /*------------------------------------------------------------
  SECTION
  ------------------------------------------------------------*/

  /*------------------------------------------------------------
  |
  | HEADER
  |
  ------------------------------------------------------------*/

  .ui-section-header { padding-top: 2rem; }

  /*------------------------------------------------------------
  |
  | HERO
  |
  ------------------------------------------------------------*/

 .ui-section-hero {
    padding-bottom: 4rem; /* reduced from 7.5rem */
    padding-top: 4rem;
  }

  /*------------------------------------------------------------
  |
  | CUSTOMER
  |
  ------------------------------------------------------------*/

  .ui-section-customer--logo { height: 2rem; }
  
  .ui-section-customer--logo-str { height: 2.25rem; }
  
  .ui-section-customer--logo-bhn { height: 1.75rem; }

  /*------------------------------------------------------------
  |
  | FEATURE
  |
  ------------------------------------------------------------*/

  .ui-section-feature {
    padding-bottom: 7.5rem;
    padding-top: 5rem;
  }

.ui-section-feature__layout + .ui-section-feature__layout {
  margin-top: 7.5rem;
}

  /* LIST */

  .ui-component-list-feature {
    display:block;
    text-align: left;
    margin-left: 0;
    padding-left:0;
    list-style:none;
  }

  /*------------------------------------------------------------
  |
  | APPROACH
  |
  ------------------------------------------------------------*/

  .ui-section-approach {
    padding-bottom: 7.5rem;
    padding-top: 5rem;
  }

.ui-section-approach__layout + .ui-section-approach__layout {
  margin-top: 7.5rem;
}


  .ui-component-card--approach { padding: 3rem; }

  /*------------------------------------------------------------
  |
  | TESTIMONIAL
  |
  ------------------------------------------------------------*/

  .ui-section-testimonial {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }

  /*------------------------------------------------------------
  |
  | CLOSE
  |
  ------------------------------------------------------------*/

  .ui-section-close {
    padding-bottom: 7.5rem;
    padding-top: 7.5rem;
  }
  
  /*------------------------------------------------------------
  |
  | FOOTER
  |
  ------------------------------------------------------------*/

  .ui-section-footer {
    padding-bottom: 3rem;
    padding-top: 3rem;
  }

}



/*--------------------------------------------------------------
|
| 8.4 === MOBILE TWEAKS (below 768px)
|
--------------------------------------------------------------*/

@media screen and (max-width: 47.99rem) {

  .p-tools {
    font-size: 1rem;
    background-size: 90% 0.4em;
    padding-right: 1rem;
  }

  .logo-track img {
    height: 28px;
    max-height: 28px;
  }

  .logo-track {
    gap: 1rem;
  }

  .logo-scroller {
    padding: 0.5rem 0;
  }
}



  /*------------------------------------------------------------
  |
  | CUSTOM RULES
  |
  ------------------------------------------------------------*/
/* === Logo Carousel === */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 2rem 0;
}

.logo-track {
  display: flex;
  width: calc(250px * 10); /* adjust based on number of logos */
  animation: scroll 60s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused; /* pause on hover */
}

.logo-track img {
  height: 2rem;
  width: auto;
  margin: 0 2rem;
  opacity: 0.8;
  transition: opacity 0.5s ease;
  flex-shrink: 0; /* keeps logos from shrinking */
}

.logo-track img:hover {
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-track img {
    height: 1.5rem;
    margin: 0 1.5rem;
  }
}

/* === Layout for label + carousel side by side === */
.logo-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.p-tools {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--ui-color-typography-heading);
  margin: 0;
  margin-right: 1.25rem; /* 👈 use margin instead of padding */
}

.p-tools::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 100%;
  height: 6px;
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  border-radius: 2px;
}



/* ensure the carousel doesn’t wrap or push down */
.logo-carousel {
  flex: 1;
}

/* === Responsive tweaks for logo carousel === */
@media (max-width: 1024px) {
  .logo-track img {
    height: 2rem;
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .logo-track img {
    height: 2.2rem;   /* make logos bigger */
    margin: 0 2rem;   /* and spaced further apart */
  }

  .logo-carousel {
    padding: 1.5rem 0;
  }

  .logo-track {
    animation: scroll 25s linear infinite; /* slightly faster */
  }
}

@media (max-width: 480px) {
  .logo-track img {
    height: 2.5rem;
    margin: 0 2.5rem;
  }

  .logo-track {
    animation: scroll 20s linear infinite; /* faster to compensate for fewer visible logos */
  }
}



.ui-approach-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;              /* centers list horizontally */
  display: flex;
  flex-direction: column;
  width: 85%;                     /* narrower layout */
}

/* Each list item */
.ui-approach-list li {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  min-height: 6rem;
}

/* No divider on first or last list item */
.ui-approach-list li:first-child {
  border-top: none;
}
.ui-approach-list li:last-child {
  border-bottom: none;
}

/* Emoji column */
.ui-approach-list .emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex: 0 0 4rem;
  line-height: 1;
}

/* Text column */
.ui-approach-list div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Headline text */
.ui-approach-list h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ui-color-typography-heading);
}

/* Body text */
.ui-approach-list p {
  margin: 0;
  font-size: 1.25rem;
  color: var(--ui-color-typography-body);
  line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .ui-approach-list {
    width: 90%;                  /* better mobile fit */
  }

  .ui-approach-list li {
    gap: 1rem;
    min-height: 5rem;
    padding: 1rem 0;
  }

  .ui-approach-list .emoji {
    flex: 0 0 3rem;
    font-size: 2rem;
  }

  .ui-approach-list h3 {
    font-size: 1.125rem;
  }
}


ui-section-approach-close {
    padding-top:1rem;
}



.h2-cta {
  font-family: "Kalam", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem; /* space between text and button */
  margin-top: 3rem;   /* was 2rem — gives more breathing room above */
  margin-bottom: 0rem; /* was 2rem — tightens space below before next section */
}

/* Highlight only on the text */
.ui-cta-highlight {
  display: inline;
  padding: 0 0.2em;
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
background-position: 0 0.3em;  /* was 0.75em — move highlight up */
  background-size: 100% 0.58em;
  background-repeat: no-repeat;
  border-radius: 0.05em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Kalam", sans-serif;
  font-weight: 700;
  color: var(--ui-color-typography-heading);
}

/* CTA Button */
.ui-component-button-cta {
  position: relative; /* required for ::before gradient */
  font-family: "Inter", sans-serif;
  background-color: #2f2f2f;
  color: white;
  border-radius: 2rem;
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  font-size: 1.125rem; /* larger for balance */
  text-decoration: none;
  transition: color 0.3s ease;
  overflow: hidden; /* ensure gradient stays inside rounded edges */
  z-index: 0;
}

/* Gradient swipe effect */
.ui-component-button-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.ui-component-button-cta:hover::before {
  transform: scaleX(1);
}

.ui-component-button-cta:hover {
  color: #2f2f2f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .h2-cta {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 3rem auto 4rem;
  }

  .ui-component-button-cta {
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
  }
}


@media (max-width: 768px) {
  .ui-cta-highlight {
    background-position: 0 0.25em !important;
    background-size: 100% 0.45em !important;
  }
}


/* -------------------------------
   CASE STUDIES GRID
-------------------------------- */

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

/* Make the entire card a link */
.case-study-card {
  display: block;
  text-decoration: none;
  color: inherit;

  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Ensure text behaves like normal, not a hyperlink */
.case-study-card h3,
.case-study-card p {
  text-decoration: none !important;
}

.case-thumb {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.case-hero {
  width: 80%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.case-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ui-color-typography-heading);
}

.case-blurb {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ui-color-typography-body);
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .case-study-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2rem;
  }

  .case-study-card {
    padding: 1.25rem;
  }

  .case-title {
    font-size: 1.1rem;
  }

  .case-blurb {
    font-size: 0.98rem;
  }
}



/*--------------------------------------------------------------
| FULL-WIDTH CONTACT FORM WITH INFO PANEL (ETX STYLE)
--------------------------------------------------------------*/

.ui-section-contact-form.full-width {
  width: 100%;
  padding: 2.5rem 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}

.ui-section-contact-form .contact-content {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.ui-section-contact-form .contact-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--ui-color-typography-heading);
}

.ui-section-contact-form .contact-info p {
  line-height: 1.6;
  color: var(--ui-color-typography-body);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.ui-section-contact-form .contact-info a {
  color: var(--ui-color-brand);
  text-decoration: none;
  font-weight: 600;
}

.ui-section-contact-form .contact-info a:hover {
  text-decoration: underline;
}

/* CERTIFICATION LOGOS */
.ui-section-contact-form .contact-logos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ui-section-contact-form .contact-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ui-section-contact-form .contact-logos img:hover {
  opacity: 1;
}

/* FORM SIDE */
.ui-section-contact-form .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ui-color-typography-heading);
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--ui-color-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  resize: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ui-color-brand);
  box-shadow: 0 0 0 2px rgba(191, 155, 48, 0.2);
}

/* BUTTON STYLE */
.ui-section-contact-form .ui-component-button-primary {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2rem;
  color: var(--ui-color-typography-button);
  background-color: var(--ui-color-brand);
  z-index: 0;
  transition: color 0.3s ease;
  align-self: flex-end;
margin-top: 1rem; /* optional, gives a little breathing room above */
}

.ui-section-contact-form .ui-component-button-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #bf9b30 0%, #ffdc73 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
  z-index: -1;
  border-radius: inherit;
}

.ui-section-contact-form .ui-component-button-primary:hover::before {
  transform: scaleX(1);
}

.ui-section-contact-form .ui-component-button-primary:hover {
  color: var(--ui-color-n-900);
}

/*--------------------------------------------------------------
| RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 900px) {
  .ui-section-contact-form .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ui-section-contact-form .contact-info {
    text-align: center;
  }

  .ui-section-contact-form .contact-logos {
    justify-content: center;
  }

  .ui-section-contact-form .contact-form form {
    width: 100%;
  }
}



#contact {
  scroll-margin-top: 12rem; /* adjust based on your sticky header height */
}





/* ----------------------------- */
/*  MOBILE FIXES – OUR TOOLKIT   */
/* ----------------------------- */

@media (max-width: 768px) {

  /* Shrink the section title */
  .p-tools {
    font-size: 1.25rem !important;   /* smaller title */
    padding-bottom: 0.3rem;
  }

  /* Adjust underline size & spacing */
  .p-tools::after {
    height: 0.35rem !important;
    bottom: -0.15rem !important;
  }

  /* Reduce logo height & spacing */
  .logo-track img,
  .logo-track svg {
    height: 22px !important;      /* was ~32–40 */
    margin-right: 1rem !important; /* tighten spacing */
  }

  /* Tighten the scroller container */
  .logo-track {
    margin-top: 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}


/* ------------------------------------------ */
/*   MOBILE FIXES — FEATURE SECTION SPACING   */
/* ------------------------------------------ */

@media (max-width: 768px) {

  /* Reduce space at bottom of intro paragraph */
  .ui-section-intro {
    margin-bottom: 1rem !important;
  }

  /* Reduce space above AND below the h2 headers */
  .h2-services {
    margin-top: 1.5rem !important;   /* was bigger */
    margin-bottom: 0 !important;
    font-size: 1.6rem !important;    /* slightly smaller for mobile */
  }

  /* Reduce spacing under the description paragraph */
  .ui-text-intro {
    margin-bottom: 1.25rem !important;
    line-height: 1.45 !important;
  }

  /* ----------------------------- */
  /*   Fix oversized emoji bullets */
  /* ----------------------------- */

  .ui-component-list-feature .ui-component-list--item {
    font-size: 1rem !important;    /* text smaller */
    line-height: 1.25 !important;
    padding-left: 1rem !important; /* space for emoji */
  }

  .ui-component-list-feature .bullet {
    font-size: 1.5rem !important;    /* reduce emoji size */
    top: 0.25rem !important;         /* better vertical alignment */
    position: relative;
  }

}


/* FORCE all feature layouts into consistent mobile order */
@media (max-width: 768px) {
  
  /* Make sure the grid stacks vertically */
  .ui-section-feature__layout {
    display: flex;
    flex-direction: column !important;
  }

  /* Make images always appear first */
  .ui-section-feature__layout img {
    order: 1;
    margin-bottom: 1.5rem;
  }

  /* Make text content appear after the image */
  .ui-section-feature__layout > div {
    order: 2;
  }
}


@media (max-width: 768px) {

  /* Stack list items vertically (same class as HTML) */
  .ui-approach-list {
    width: 100%;
    margin: 1.5rem auto 0;
  }

  .ui-approach-list li {
    gap: 0.75rem;
    min-height: auto;
    padding: 1rem 0;
  }

  /* Emoji: smaller but still clear */
  .ui-approach-list .emoji {
    font-size: 2rem;
    flex: 0 0 2.5rem;
  }

  /* Headline and body text smaller on mobile */
  .ui-approach-list h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }

  .ui-approach-list p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  /* Reduce spacing above the list intro text */
  .ui-section-approach-intro {
    margin-bottom: 1.25rem !important;
  }
}


/* ------------------------------------------------------
   MOBILE FIXES: CTA ("Ready to cut the noise...")
-------------------------------------------------------*/
@media (max-width: 768px) {

  /* Shrink & tidy CTA heading */
  .h2-cta {
    font-size: 1.55rem !important;   /* was ~2.1rem */
    line-height: 1.25 !important;
    margin: 2.5rem auto 1rem !important; 
    text-align: center;
    max-width: 90%;
  }

  /* Fix the underline highlight alignment */
  .h2-cta {
    bottom: 0.35em !important;       /* drops it into the correct vertical spot */
    height: 0.55em !important;       /* less overpowering */
  }
  
  .ui-text-intro-highlight {
    background-position: 0 0.6em !important;  /* lift highlight */
    background-size: 100% 0.45em !important;   /* thinner */
  }

  /* Fix CTA button */
  .ui-component-button-cta {
    font-size: 1rem !important;      /* smaller */
    padding: 0.9rem 1.8rem !important;
    margin-top: 1.2rem !important;
  }

  /* Reduce the giant gap before next section */
  .cta-container,
  .h2-cta {
    margin-bottom: 1.5rem !important;
  }

  /* In case the parent wrapper is adding padding */
  #cta-section,
  .ui-section-cta {
    padding-bottom: 1rem !important;
  }
}


/* ---------------------------------------------------------
   CLEAN MOBILE FIXES FOR HIGHLIGHTS & TYPOGRAPHY
-----------------------------------------------------------*/
@media (max-width: 768px) {

  /* 2 — Fix CTA highlight multi-line & vertical height */
  .ui-cta-highlight {
    display: inline-block !important;
    background-position: 0 0.25em !important;
    background-size: 100% 0.45em !important;
    line-height: 1.15 !important;
  }

  /* 3 — Restore about-section hierarchy */
  .ui-section-about-intro {
    font-size: 1.25rem !important;
    font-weight: 700;
  }

  .ui-about-text-intro {
    font-size: 1.1rem !important;
    line-height: 1.45 !important;
  }
}



/* Fix spacing after CTA on mobile */
@media (max-width: 768px) {
  .h2-cta {
    margin-bottom: 5rem !important; /* increase space before next section */
  }
}