/* Self-hosted brand fonts (subset to Latin, WOFF2). Sources: "Document fonts" folder (Grifo L by R-Typography, Gotham by Hoefler&Co). */
@font-face { font-family: "Grifo L"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/GrifoL-Regular.woff2") format("woff2"); }
@font-face { font-family: "Grifo L"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/GrifoL-Bold.woff2") format("woff2"); }
@font-face { font-family: "Gotham"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/Gotham-Book.woff2") format("woff2"); }
@font-face { font-family: "Gotham"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/Gotham-Medium.woff2") format("woff2"); }
@font-face { font-family: "Gotham"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/Gotham-Bold.woff2") format("woff2"); }

/* =========================================================
   Intracon Consulting landing — design tokens from Figma
   (file W8HBIzQ7LAVF3TxCbzexqv, frame "landing-Consulting_Orange")
   Layout reference width: 1920px. --u = 1vw capped at 19.2px so
   proportional values reach their Figma size at >=1920px.
   ========================================================= */
:root {
  --navy: #0B172E;        /* "Elegant" */
  --orange: #FF7F50;      /* "Intracon Orange" */
  --pale: #FCF4ED;        /* "Pale" */
  --plus: #9BB9FA;        /* "Plus" */
  --red: #DF2935;         /* "Bold" (states) */
  --grey: #BDBDBD;        /* rules / dividers (Figma) */
  --grey-text: #8A8A8A;   /* inactive list text: Figma uses #BDBDBD (1.9:1 on white); 3.45:1 keeps AA for large text */
  --white: #FFFFFF;
  --peach: #FFBFA8;       /* orange @ 50% over white (SEND button) */

  --font-serif: "Grifo L", Georgia, "Times New Roman", serif;
  --font-sans: "Gotham", "Helvetica Neue", Arial, sans-serif;

  --u: min(1vw, 19.2px);

  /* type scale (Figma px @1920 -> fluid) */
  --fs-display: clamp(2.25rem, 4.1667vw, 5rem);      /* H3/H4 80 */
  --fs-sub: clamp(1.5rem, 2.6042vw, 3.125rem);       /* H5/H6 50 */
  --fs-lead: clamp(1.125rem, 1.6667vw, 2rem);        /* Pre Title 32 */
  --fs-body: clamp(1rem, 1.1458vw, 1.375rem);        /* Body 22 */
  --fs-small: clamp(0.8125rem, 0.8333vw, 1rem);      /* Small 16 */
  --fs-nav: clamp(0.8125rem, 1.1458vw, 1.375rem);
  --fs-btn: clamp(1rem, 1.3542vw, 1.625rem);         /* 26 */
  --fs-stat: clamp(3rem, 7.8125vw, 9.375rem);        /* H2 150 */
  --fs-giant: clamp(6rem, 18.2vw, 21.875rem);        /* H0 400 in Figma; 350 so "FAQs" fits its half column */

  --gutter: clamp(1.25rem, 4.1667vw, 5rem);          /* 80 */
  --container: 1760px;
  --header-h: clamp(64px, 5.52vw, 106px);
  --btn-text: var(--white);                          /* white on orange: 2.6:1, pending AA decision */
  --focus: 0 0 0 3px var(--white), 0 0 0 6px var(--navy);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto !important; } .carousel__track { scroll-behavior: auto !important; } *, *::before, *::after { transition: none !important; animation: none !important; } }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
main[tabindex="-1"]:focus, section[tabindex="-1"]:focus, div[tabindex="-1"]:not(.form-card):focus { outline: none; box-shadow: none; }
html, body { overflow-x: clip; }
body { margin: 0; background: var(--navy); color: var(--white); font-family: var(--font-sans); font-size: var(--fs-body); line-height: 1.2; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, blockquote { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: none; box-shadow: var(--focus); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 1000; background: var(--orange); color: var(--navy); padding: .75rem 1rem; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section--white { background: var(--white); color: var(--navy); }
.text-orange { color: var(--orange); }

/* ---------- typography ---------- */
.h-display { font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-display); line-height: 0.95; letter-spacing: -0.005em; }
.h-display--regular { font-weight: 400; }
.h-sub { font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-sub); line-height: 1.2; }
.lead { font-size: var(--fs-lead); line-height: 1.19; }
.lead p + p { margin-top: 1em; }
.pretitle { font-size: var(--fs-lead); line-height: 1.19; text-transform: uppercase; letter-spacing: 0.01em; }
mark.hl { background: linear-gradient(transparent 45%, rgba(255,127,80,.5) 45%); color: inherit; padding-inline: .04em; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: clamp(.75rem, 1.04vw, 1.25rem) clamp(1.25rem, 2.08vw, 2.5rem); font-family: var(--font-sans); font-weight: 500; font-size: var(--fs-btn); line-height: 1; text-decoration: none; text-transform: capitalize; text-align: center; border: 2px solid transparent; transition: background-color .2s, color .2s, border-color .2s, transform .15s; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange); color: var(--btn-text); border-color: var(--orange); }
.btn--primary:hover { background: #f26a3c; border-color: #f26a3c; }
.btn--dark { background: var(--navy); color: var(--white); border-color: var(--navy); font-weight: 500; }
.btn--dark:hover { background: #1c2b4a; }
.btn--outline-light { background: var(--orange); color: var(--btn-text); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--send { width: 100%; background: var(--peach); color: var(--navy); border-color: var(--navy); font-weight: 700; text-transform: uppercase; padding-block: clamp(.9rem, 1.35vw, 1.6rem); }
.btn--send:hover:not([disabled]) { background: var(--orange); }
.btn--send[disabled] { cursor: not-allowed; opacity: .7; }
.btn--underline { padding: .35em 0 .3em; font-weight: 700; border: 0; border-bottom: 5px solid currentColor; }
.btn--underline:hover { color: var(--orange); }
.btn--upper { text-transform: uppercase; }

/* ---------- header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(11, 23, 46, .5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background-color .25s; }
.site-header.is-scrolled { background: rgba(11, 23, 46, .96); }
.site-header__inner { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 3rem); min-height: var(--header-h); padding: 0 var(--gutter); max-width: calc(var(--container) + 2 * var(--gutter)); margin-inline: auto; }
.site-header__logo img { width: clamp(30px, 2.55vw, 49px); height: auto; }
.site-nav { flex: 1; display: flex; justify-content: center; }
.site-nav__list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 2.5vw, 3rem); }
.site-nav__link { font-size: var(--fs-nav); text-transform: uppercase; text-decoration: none; white-space: nowrap; padding: .5em 0; border-bottom: 2px solid transparent; transition: border-color .2s; }
.site-nav__link:hover, .site-nav__link[aria-current] { border-bottom-color: var(--orange); }
.site-nav__link--keepcase { text-transform: none; }
.site-nav__cta-mobile { display: none; }
.site-header__cta { white-space: nowrap; }
.nav-toggle { display: none; position: relative; width: 44px; height: 44px; margin-left: auto; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { position: absolute; left: 8px; width: 28px; height: 3px; background: var(--white); transition: transform .25s, opacity .25s; content: ""; }
.nav-toggle__bar { top: 20px; }
.nav-toggle__bar::before { top: -9px; left: 0; }
.nav-toggle__bar::after { top: 9px; left: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .site-header__cta { display: none; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,.15); padding: 1rem var(--gutter) 1.5rem; }
  .site-nav.is-open { display: block; }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .site-nav__link { display: block; font-size: 1rem; padding: .75rem 0; }
  .site-nav__cta-mobile { display: block; margin-top: 1rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(560px, 56.25vw, 1080px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(11, 23, 46, .5); }
.hero__inner { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 8rem)); padding-bottom: clamp(3rem, 8vw, 10rem); }
.hero h1 { max-width: 13.5em; }
.hero__subhead { max-width: 32em; margin-top: clamp(1.25rem, 3.1vw, 3.75rem); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.25rem, 2.2vw, 2.65rem); margin-top: clamp(2rem, 5.7vw, 6.9rem); }

/* ---------- trust bar ---------- */
.trust { padding-top: clamp(3rem, 6.45vw, 7.75rem); padding-bottom: clamp(3rem, 7.5vw, 9rem); }
.trust__logos { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.5rem, 5.4vw, 6.5rem); padding-left: clamp(0px, 1.1vw, 21px); }
.trust__title { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-display); line-height: 1; }
.logo-list { display: flex; align-items: center; gap: clamp(1.5rem, 3.75vw, 4.5rem); }
.logo-list__item { display: flex; align-items: center; }
.logo-list__item + .logo-list__item { border-left: 1px solid var(--plus); padding-left: clamp(1.5rem, 3.75vw, 4.5rem); }
.logo-list__item img { width: auto; height: clamp(44px, 6.98vw, 134px); }
.stats { display: flex; justify-content: center; align-items: stretch; border: 1px solid var(--pale); margin-top: clamp(2.5rem, 9.7vw, 11.6rem); padding: clamp(1.5rem, 3.33vw, 4rem); gap: clamp(1rem, 3.33vw, 4rem); }
.stat { flex: 0 1 auto; min-width: 0; }
.stat + .stat { border-left: 1px solid var(--plus); padding-left: clamp(1rem, 3.33vw, 4rem); }
@media (min-width: 1500px) { .stat__label { white-space: nowrap; } }
.stat__value { font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-stat); line-height: .8; white-space: nowrap; }
.stat__suffix { font-weight: 400; }
.stat__unit { font-size: .53em; }
.stat__label { margin-top: clamp(.6rem, 1.25vw, 1.5rem); font-weight: 700; }
@media (max-width: 900px) { .stats { display: grid; grid-template-columns: 1fr 1fr; row-gap: 2rem; } .stat + .stat { border-left: 0; padding-left: 0; } .stat:nth-child(even) { border-left: 1px solid var(--plus); padding-left: 1rem; } }
@media (max-width: 520px) { .stats { grid-template-columns: 1fr; } .stat:nth-child(even) { border-left: 0; padding-left: 0; } .stat { text-align: center; } }

/* ---------- value proposition ---------- */
.value { position: relative; padding-top: clamp(1rem, 1vw, 1.5rem); }
.value__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: stretch; }
.value__left { display: flex; flex-direction: column; justify-content: space-between; }
.value__left .h-sub { max-width: 17em; }
.value__img { width: min(100%, 905px); margin-top: auto; padding-top: clamp(1rem, 2vw, 2.5rem); align-self: flex-start; }
.value__right { padding-top: clamp(0px, .5vw, .5rem); padding-bottom: calc(clamp(90px, 12.45vw, 239px) + 2rem); }
.bullets { display: flex; flex-direction: column; gap: clamp(1.5rem, 3.8vw, 4.5rem); }
.bullets__item { display: flex; gap: clamp(1rem, 1.7vw, 2rem); align-items: flex-start; font-size: var(--fs-lead); line-height: 1.19; }
.bullets__dot { flex: none; width: clamp(28px, 3.02vw, 58px); height: clamp(28px, 3.02vw, 58px); border-radius: 50%; background: var(--orange); }
.value__closing { margin-top: clamp(1.5rem, 3.8vw, 4.5rem); padding-right: clamp(0px, 4.6vw, 5.5rem); font-size: var(--fs-lead); line-height: 1.19; }
.value__band { position: absolute; left: 0; right: 0; bottom: 0; height: clamp(90px, 12.45vw, 239px); background: var(--orange); }
@media (max-width: 900px) { .value__grid { grid-template-columns: 1fr; } .value__img { margin-top: 1.5rem; width: min(100%, 520px); } .value__right { padding-bottom: calc(clamp(90px, 12.45vw, 239px) + 2rem); } }

/* ---------- section: what this looks like in practice ---------- */
.practice { padding-top: clamp(3rem, 6.25vw, 7.5rem); padding-bottom: clamp(3rem, 5vw, 6rem); }
.practice__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.practice__text .lead { max-width: 21em; margin-top: clamp(1.25rem, 3.1vw, 3.75rem); }
.practice__illustration { width: min(100%, 663px); margin-top: clamp(-5.5rem, -4.5vw, -2rem); justify-self: start; }
@media (max-width: 900px) { .practice__head { grid-template-columns: 1fr; } .practice__illustration { width: min(70%, 420px); margin-top: 1rem; } }

/* ---------- accordion (list + panel) ---------- */
.acc { margin-top: clamp(2rem, 3.6vw, 4.4rem); --acc-line: var(--grey); }
.acc__item { display: contents; }
.acc__heading { grid-column: 1; margin: 0; border-bottom: 1px solid rgba(189, 189, 189, .7); }
.acc__item:last-child .acc__heading { border-bottom: 0; }
.acc__trigger { display: flex; align-items: center; gap: clamp(1rem, 2.8vw, 3.4rem); width: 100%; padding: clamp(1rem, 1.45vw, 1.75rem) 0; text-align: left; color: var(--grey-text); transition: color .2s; }
.acc__trigger:hover { color: var(--navy); }
.acc__num { flex: none; display: inline-flex; align-items: center; justify-content: center; width: clamp(48px, 4.17vw, 80px); height: clamp(48px, 4.17vw, 80px); border-radius: 50%; background: var(--grey-text); color: var(--white); font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.75rem, 4.17vw, 5rem); line-height: 1; transition: background-color .2s; }
.acc__title { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-sub); line-height: 1.1; }
.acc__item.is-open .acc__trigger { color: var(--navy); }
.acc__item.is-open .acc__num { background: var(--navy); }
.acc__panel { grid-column: 2; grid-row: 1 / span var(--acc-rows); color: var(--navy); }
.acc__panel[hidden] { display: none; }
.acc__headline { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-sub); line-height: 1.05; }
.acc__body { margin-top: clamp(1rem, 2.1vw, 2.5rem); font-size: var(--fs-lead); line-height: 1.19; }
.acc__body p + p { margin-top: 1em; }
.acc__impact { margin-top: 1em; font-size: var(--fs-lead); line-height: 1.19; font-weight: 700; }
.acc__cta { margin-top: clamp(1.5rem, 2.6vw, 3.1rem); }
@media (min-width: 901px) {
  .acc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: clamp(2rem, 4vw, 5rem); }
  .acc__panel { padding-top: clamp(.5rem, 1.3vw, 1.6rem); }
}
@media (max-width: 900px) {
  .acc__item { display: block; }
  .acc__panel { padding: .5rem 0 1.75rem; }
}

/* ---------- testimonials carousel ---------- */
.testimonials { padding-top: clamp(3.5rem, 9.8vw, 11.75rem); padding-bottom: clamp(3.5rem, 10vw, 12rem); }
.testimonials .h-display { padding-left: clamp(0px, 8.75vw, 168px); }
.carousel { position: relative; margin-top: clamp(2rem, 6.1vw, 7.3rem); padding-inline: clamp(0px, 8.75vw, 168px); }
.carousel__track { display: flex; gap: clamp(1.5rem, 2.5vw, 3rem); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding: clamp(1.5rem, 2.5vw, 3rem) 0 0; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel[data-per-view="1"] .tcard { flex: 0 0 100%; }
.carousel[data-per-view="2"] .tcard { flex: 0 0 calc((100% - clamp(1.5rem, 2.5vw, 3rem)) / 2); }
.carousel[data-single="true"] .tcard { flex-basis: 100%; }
.tcard { position: relative; scroll-snap-align: start; display: flex; flex-direction: column; border: 2px solid var(--orange); background: var(--navy); }
.tcard__quote { position: absolute; top: clamp(-2.75rem, -2.4vw, -1.5rem); left: clamp(-1.5rem, -1.5vw, -.75rem); width: clamp(56px, 5.5vw, 106px); height: auto; }
.tcard__body { padding: clamp(2rem, 4.3vw, 5.1rem) clamp(1.5rem, 3.75vw, 4.5rem) clamp(2rem, 3.75vw, 4.5rem); display: flex; flex-direction: column; gap: clamp(1.5rem, 2.8vw, 3.4rem); }
.tcard__author { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.4rem); }
.tcard__photo { flex: none; width: clamp(72px, 6.9vw, 133px); height: clamp(72px, 6.9vw, 133px); border-radius: 50%; object-fit: cover; }
.tcard__name { font-weight: 700; font-size: var(--fs-lead); }
.tcard__role { margin-top: .5em; font-size: var(--fs-body); }
.tcard__text { font-weight: 700; font-size: var(--fs-lead); line-height: 1.19; }
.tcard__footer { margin-top: auto; padding: clamp(1.25rem, 1.66vw, 2rem); background: var(--orange); display: flex; justify-content: center; }
.carousel__btn { position: absolute; top: 50%; z-index: 2; width: clamp(48px, 3.75vw, 72px); height: clamp(48px, 3.75vw, 72px); transform: translateY(-50%); border-radius: 50%; transition: transform .15s, opacity .2s; }
.carousel__btn svg { width: 100%; height: 100%; }
.carousel__btn:hover { transform: translateY(-50%) scale(1.06); }
.carousel__btn[aria-disabled="true"] { opacity: .35; cursor: default; transform: translateY(-50%); }
.carousel__btn--prev { left: clamp(0px, 6.9vw, 132px); }
.carousel__btn--next { right: clamp(0px, 6.9vw, 132px); }
.carousel[data-single="true"] .carousel__btn, .carousel[data-fits="true"] .carousel__btn { display: none; }
@media (min-width: 1024px) { .carousel[data-single="true"] .tcard__body { flex-direction: row; align-items: flex-start; gap: clamp(2rem, 3vw, 3.5rem); } .carousel[data-single="true"] .tcard__author { flex: 0 0 38%; } }
@media (max-width: 900px) { .testimonials .h-display { padding-left: 0; } .carousel { padding-inline: 0; } .carousel__btn--prev { left: -8px; } .carousel__btn--next { right: -8px; } }

/* ---------- quick form band ---------- */
.quickform { position: relative; padding-top: clamp(2rem, 5.5vw, 6.5rem); }
.quickform__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 600px) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: end; padding-left: clamp(var(--gutter), 14.8vw, 285px); }
.quickform__photo { width: min(100%, 944px); justify-self: end; }
.quickform__band { position: absolute; left: 0; right: 0; bottom: 0; height: clamp(220px, 32vw, 614px); background: var(--plus); }
.form-card { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.form-card--quick { padding: clamp(1.5rem, 2.1vw, 2.5rem) clamp(1.25rem, 2vw, 2.4rem) clamp(1.5rem, 2.1vw, 2.5rem); margin-bottom: clamp(-6.3rem, -5.2vw, -3rem); }
.form-card--quick .h-display { padding-right: .5em; }
@media (max-width: 1200px) { .quickform__grid { padding-left: var(--gutter); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .form-card--quick { max-width: 600px; } }
@media (max-width: 900px) { .quickform__band { height: 52vw; } .quickform__grid { grid-template-columns: 1fr; padding-left: var(--gutter); } .quickform__photo { width: min(100%, 520px); justify-self: center; } .form-card--quick { max-width: 600px; margin-bottom: 0; } }

/* ---------- forms (preview + HubSpot skin) ---------- */
.form { display: flex; flex-direction: column; gap: 0; margin-top: clamp(1.5rem, 3vw, 3.75rem); }
.form__field { display: flex; flex-direction: column; padding: clamp(.6rem, .9vw, 1.1rem) 0 0; border-bottom: 1px solid rgba(11, 23, 46, .5); }
.form__field label { font-weight: 700; font-size: var(--fs-body); color: rgba(11, 23, 46, .6); padding-bottom: clamp(.6rem, .9vw, 1.1rem); }
.form__field input, .form__field textarea, .hs-intracon .hs-input { width: 100%; border: 0; background: transparent; font: inherit; font-size: var(--fs-body); color: var(--navy); padding: 0 0 .5rem; }
.form__field--textarea { border-bottom: 0; }
.form__field--textarea textarea, .hs-intracon textarea.hs-input { margin-top: .5rem; min-height: clamp(120px, 12.2vw, 235px); background: rgba(252, 244, 237, .5); resize: vertical; padding: .75rem; }
.form__consent { display: flex; align-items: center; gap: clamp(.75rem, 1vw, 1.25rem); margin-top: clamp(1.25rem, 1.5vw, 1.75rem); font-size: var(--fs-small); }
.form__consent input { width: clamp(24px, 2.08vw, 40px); height: clamp(24px, 2.08vw, 40px); margin: 0; accent-color: var(--navy); flex: none; }
.form__consent a { font-weight: 500; }
.form .btn--send { margin-top: clamp(1.5rem, 2.6vw, 3.1rem); }
.form__note { margin-top: 1rem; font-size: var(--fs-small); color: var(--red); }
.form__note code { font-family: ui-monospace, Menlo, monospace; font-size: .95em; }
.hs-slot .hs-form-frame { margin-top: clamp(1.5rem, 3vw, 3.75rem); }
.hs-intracon { margin-top: clamp(1.5rem, 3vw, 3.75rem); }
.hs-intracon fieldset { max-width: none !important; border: 0; padding: 0; margin: 0; }
.hs-intracon .hs-form-field { padding: clamp(.6rem, .9vw, 1.1rem) 0 0; border-bottom: 1px solid rgba(11, 23, 46, .5); margin-bottom: 0; }
.hs-intracon .hs-form-field > label { display: block; font-weight: 700; font-size: var(--fs-body); color: rgba(11, 23, 46, .6); padding-bottom: clamp(.6rem, .9vw, 1.1rem); }
.hs-intracon .hs-form-field.hs-fieldtype-textarea { border-bottom: 0; }
.hs-intracon .input { margin: 0 !important; }
.hs-intracon .hs-error-msgs { list-style: none; padding: 0; margin: .25rem 0 .5rem; color: var(--red); font-size: var(--fs-small); }
.hs-intracon .hs-form-booleancheckbox-display { display: flex; align-items: center; gap: clamp(.75rem, 1vw, 1.25rem); font-size: var(--fs-small); }
.hs-intracon .hs-form-booleancheckbox-display input { width: clamp(24px, 2.08vw, 40px); height: clamp(24px, 2.08vw, 40px); margin: 0; accent-color: var(--navy); }
.hs-intracon .legal-consent-container { margin-top: clamp(1.25rem, 1.5vw, 1.75rem); font-size: var(--fs-small); }
.hs-intracon .legal-consent-container p { margin: .5rem 0 0; }
.hs-intracon .hs-submit { margin-top: clamp(1.5rem, 2.6vw, 3.1rem); }
.hs-intracon .hs-button { width: 100%; background: var(--peach); color: var(--navy); border: 2px solid var(--navy); font: inherit; font-weight: 700; font-size: var(--fs-btn); text-transform: uppercase; padding: clamp(.9rem, 1.35vw, 1.6rem) 1rem; cursor: pointer; transition: background-color .2s; }
.hs-intracon .hs-button:hover { background: var(--orange); }
.hs-intracon .submitted-message, .hs-slot__success { margin-top: clamp(1.5rem, 3vw, 3.75rem); padding: 1.5rem; border: 2px solid var(--orange); font-size: var(--fs-lead); }
.hs-intracon input[type="hidden"] { display: none; }

/* ---------- employee lifecycle ---------- */
.lifecycle { padding-top: clamp(4rem, 10vw, 12rem); padding-bottom: clamp(3rem, 6.5vw, 7.9rem); }
.lifecycle__head { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.lifecycle__head .h-display { max-width: 13em; }
.lifecycle__intro { max-width: 26em; }
.lifecycle .acc { margin-top: clamp(2.5rem, 5.4vw, 6.5rem); }
.lifecycle__cta { display: flex; justify-content: center; margin-top: clamp(2.5rem, 4.9vw, 5.9rem); }
@media (max-width: 900px) { .lifecycle__head { grid-template-columns: 1fr; } }

/* ---------- talent solutions ---------- */
.talent__hero { position: relative; isolation: isolate; padding: clamp(3rem, 8vw, 9.5rem) 0 clamp(6rem, 18vw, 22rem); overflow: hidden; }
.talent__bg { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.talent__hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(11,23,46,.2), rgba(11,23,46,.5)); }
.talent__hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(11, 23, 46, .4); }
.talent__intro { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.talent__intro .h-display { margin-top: clamp(.5rem, 1.3vw, 1.5rem); max-width: 11em; }
.talent__intro .lead { max-width: 27em; }
@media (max-width: 900px) { .talent__intro { grid-template-columns: 1fr; } .talent__hero { padding-bottom: clamp(4rem, 12vw, 8rem); } }

/* ---------- boxed text cards (2/3/4 columns with dividers) ---------- */
.cards { display: grid; gap: 0; }
.cards--2 { grid-template-columns: 1fr 1fr; padding: clamp(2rem, 3.33vw, 4rem) 0; margin-top: clamp(1rem, 2.9vw, 3.4rem); }
.cards--3 { grid-template-columns: repeat(3, 1fr); padding: clamp(2rem, 3.33vw, 4rem) 0; }
.cards--4 { grid-template-columns: repeat(4, 1fr); padding: clamp(2rem, 3.33vw, 4rem) 0; }
.card { padding-inline: clamp(1.25rem, 2.1vw, 2.5rem); }
.cards--2 .card { padding-inline: clamp(1.25rem, 4.2vw, 5rem); }
.card:first-child { padding-left: 0; }
.card:last-child { padding-right: 0; }
.card + .card { border-left: 1px solid var(--plus); }
.card__title { font-family: var(--font-sans); font-weight: 700; font-size: var(--fs-sub); line-height: 1.2; color: var(--pale); }
.card__title--sm { font-size: var(--fs-lead); line-height: 1.19; }
.card__body { margin-top: clamp(1.25rem, 2.1vw, 2.5rem); color: var(--pale); font-size: var(--fs-body); line-height: 1.18; }
.card__body p + p { margin-top: 1em; }
.card__text { margin-top: clamp(1rem, 2.1vw, 2.5rem); color: var(--pale); font-size: var(--fs-body); line-height: 1.18; }
@media (max-width: 900px) {
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; gap: 2rem; }
  .card { padding-inline: 0 !important; }
  .card + .card { border-left: 0; border-top: 1px solid var(--plus); padding-top: 2rem; }
}
@media (min-width: 901px) and (max-width: 1200px) { .cards--4 { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; } .cards--4 .card:nth-child(3) { border-left: 0; padding-left: 0; } .cards--4 .card:nth-child(2) { padding-right: 0; } }

/* ---------- how we work ---------- */
.how { padding-top: clamp(2rem, 7vw, 8.5rem); padding-bottom: clamp(3rem, 5.3vw, 6.3rem); }
.how__head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(2rem, 4vw, 5rem); align-items: center; }
.how__head .lead { max-width: 25em; margin-top: clamp(1rem, 1.7vw, 2rem); color: var(--pale); }
.how__icons { display: flex; }
.how__icons li + li { margin-left: clamp(-42px, -2.2vw, -24px); }
.how__icons img { width: clamp(88px, 11.2vw, 215px); height: auto; }
.how__steps { margin-top: clamp(1rem, 2.5vw, 3rem); }
@media (max-width: 900px) { .how__head { grid-template-columns: 1fr; } .how__icons { flex-wrap: wrap; } }

/* ---------- why intracon ---------- */
.why { position: relative; isolation: isolate; padding: clamp(4rem, 12.2vw, 14.6rem) 0 clamp(3rem, 7vw, 8.5rem); overflow: hidden; }
.why__bg { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.why::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(11, 23, 46, .15); }
.why__text .h-display { max-width: 13em; }
.why__text .lead { max-width: 34em; margin-top: clamp(1.25rem, 1.3vw, 1.5rem); }
.why .cards--3 { margin-top: clamp(2rem, 6.2vw, 7.5rem); padding-right: clamp(0px, 20vw, 380px); }
@media (max-width: 900px) { .why .cards--3 { padding-right: 0; } }

/* ---------- FAQs ---------- */
.faqs { padding-top: clamp(4rem, 10.3vw, 12.4rem); padding-bottom: clamp(4rem, 14vw, 17rem); }
.faqs__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.faqs__giant { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-giant); line-height: .9; color: var(--orange); margin-left: -.04em; }
.faqs__head .h-display { margin-top: clamp(.5rem, 1vw, 1rem); font-size: clamp(1.75rem, 3.75vw, 4.5rem); }
.faq { display: flex; flex-direction: column; gap: clamp(.75rem, .94vw, 1.125rem); width: 100%; max-width: 900px; justify-self: end; }
.faq__item { border: 1px solid var(--white); background: var(--navy); color: var(--white); transition: background-color .25s, color .25s, border-color .25s; }
.faq__item.is-open { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.faq__heading { margin: 0; }
.faq__trigger { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%; padding: clamp(1.25rem, 2.3vw, 2.75rem) clamp(1.25rem, 2.3vw, 2.75rem); text-align: left; }
.faq__q { font-family: var(--font-serif); font-weight: 400; font-size: var(--fs-sub); line-height: 1; }
.faq__icon { position: relative; flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--white); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--navy); transform: translate(-50%, -50%); transition: transform .25s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__panel { padding: 0 clamp(1.25rem, 2.3vw, 2.75rem) clamp(1.5rem, 2.6vw, 3.1rem); font-size: var(--fs-body); line-height: 1.18; max-width: 46em; }
.faq__panel[hidden] { display: none; }
.faq__panel p + p { margin-top: .75em; }
@media (max-width: 900px) { .faqs__grid { grid-template-columns: 1fr; } .faq__icon { width: 36px; height: 36px; } .faq__icon::before, .faq__icon::after { width: 14px; } }

/* ---------- let's talk ---------- */
.letstalk { padding-bottom: clamp(4rem, 12vw, 14.5rem); }
.letstalk__wrap { position: relative; max-width: 1320px; margin-inline: auto; padding: clamp(1.5rem, 2.5vw, 3rem) clamp(1rem, 2.8vw, 3.4rem); }
.letstalk__deco { position: absolute; border: 5px solid rgba(255, 127, 80, .5); pointer-events: none; }
.letstalk__deco--a { top: 0; left: 0; right: clamp(1.5rem, 4.6vw, 5.5rem); bottom: clamp(1.5rem, 4.4vw, 5.25rem); }
.letstalk__deco--b { top: clamp(1.5rem, 4.5vw, 5.4rem); left: clamp(1.5rem, 4.7vw, 5.7rem); right: 0; bottom: 0; }
.form-card--contact { position: relative; padding: clamp(2rem, 3.6vw, 4.3rem) clamp(1.5rem, 4.2vw, 5rem) clamp(2.5rem, 4.2vw, 5rem); }
.letstalk__title { display: flex; align-items: flex-start; gap: .1em; font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-stat); line-height: .85; }
.letstalk__plane { width: clamp(32px, 3.4vw, 65px); height: auto; margin-top: -.15em; }
.form-card--contact .lead { margin-top: clamp(1rem, 1.5vw, 1.75rem); max-width: 30em; }
.form-card--contact .form { margin-top: clamp(1.5rem, 2.6vw, 3.1rem); }
.form-card--contact .form__field--textarea textarea { min-height: clamp(120px, 8.3vw, 160px); }
.form-card--contact .form__consent { padding-left: clamp(0px, 1vw, 1.25rem); }
.form-card--contact .form .btn--send { margin-top: clamp(2rem, 3.5vw, 4.25rem); }
@media (max-width: 700px) { .letstalk__deco { display: none; } .letstalk__wrap { padding: 0; } }

/* ---------- footer ---------- */
.site-footer { background: var(--orange); color: var(--navy); padding-top: clamp(4rem, 8.4vw, 10rem); padding-bottom: clamp(3rem, 8.4vw, 10rem); }
.site-footer__rule { height: 1px; background: var(--navy); }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: clamp(2rem, 4vw, 5rem) clamp(2rem, 4vw, 5rem); padding-top: clamp(2.5rem, 6.3vw, 7.6rem); align-items: start; }
.site-footer__brand { display: flex; flex-direction: column; justify-content: space-between; gap: clamp(2rem, 13vw, 16rem); }
.site-footer__logo { display: inline-block; width: fit-content; }
.site-footer__logo img { width: clamp(160px, 13.5vw, 260px); }
.site-footer__badge { width: clamp(100px, 7.3vw, 142px); }
.site-footer__label { font-weight: 700; margin-bottom: clamp(1rem, 1.7vw, 2rem); }
.site-footer__contact a { text-decoration: none; }
.site-footer__contact a[href^="mailto"] { text-decoration: underline; }
.site-footer__contact a:hover { text-decoration: underline; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: clamp(2.5rem, 4.5vw, 5.4rem); }
.site-footer__social { display: flex; gap: clamp(1rem, 2.1vw, 2.5rem); }
.site-footer__social a { display: block; border-radius: 50%; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr; } .site-footer__brand { gap: 2rem; } .site-footer__bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- use case + legal pages ---------- */
.usecase__hero, .legal__inner { padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 8rem)); }
.usecase__hero { padding-bottom: clamp(2rem, 5vw, 6rem); }
.usecase__hero .h-display { max-width: 14em; margin-top: 1rem; }
.usecase__body { padding-bottom: clamp(4rem, 10vw, 12rem); display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 6rem); max-width: 1100px; }
.usecase__block .lead { margin-top: 1rem; }
.usecase__cta { margin-top: 1rem; }
.legal__inner { padding-bottom: clamp(4rem, 10vw, 12rem); max-width: 1100px; }
.legal__inner .lead { margin-top: 2rem; }
.legal__inner code { font-family: ui-monospace, Menlo, monospace; font-size: .9em; }
