/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

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

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HTML elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

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

body {
  line-height: 1.6;
  overflow-wrap: break-word;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

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

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

/* Paragraphs */

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

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.2s ease;
  white-space: normal;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600;
  border-radius: 8px;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #8B8C8C;
  border-color: #8B8C8C;
  color: #ffffff;
  opacity: 0.7;
  cursor: not-allowed;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

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

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* ==========================================================================
   DATATECHS NAVIGATION
   Ported directly from Nav.jsx in the original React site.
   ========================================================================== */

/* Skip link */

.dt-nav__skip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.dt-nav__skip:focus {
  left: 0;
  top: 0;
  height: auto;
  width: auto;
  overflow: visible;
  z-index: 9999;
}

/* Nav shell — fixed so it always follows scroll */

.dt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e9;
  transition: background 0.3s, border-color 0.3s;
}

/* Push page content below the fixed nav */

.body-container-wrapper {
  padding-top: 68px;
}

/* Home page: hero extends full-bleed behind the transparent nav */

.body-container-wrapper:has(.dt-hero) {
  padding-top: 0;
}

/* Container: max-width centred, flex row */

.dt-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

/* ------------------------------------------------------------------
   LOGO
   ------------------------------------------------------------------ */

.dt-nav__logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 40px;
  max-height: 40px;
  overflow: hidden;
  line-height: 0;
}

/* Force the HubSpot logo module and all its wrapper divs/spans to stay small */

.dt-nav__logo-wrap * {
  height: 40px !important;
  max-height: 40px !important;
  line-height: 0 !important;
}

.dt-nav__logo-wrap img {
  height: 40px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
  object-fit: contain !important;
}

/* ------------------------------------------------------------------
   RIGHT-SIDE (nav + CTA)
   ------------------------------------------------------------------ */

.dt-nav__right {
  display: flex;
  align-items: stretch;
  height: 68px;
}

/* ------------------------------------------------------------------
   DESKTOP MENU
   ------------------------------------------------------------------ */

.dt-nav__menu {
  display: flex;
  align-items: stretch;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Plain link (no dropdown) */

.dt-nav a.dt-nav__link,
.dt-nav a.dt-nav__link:hover,
.dt-nav a.dt-nav__link:focus,
.dt-nav a.dt-nav__link:visited,
.dt-nav .dt-nav__item--open > a.dt-nav__link {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  transform: none !important;
}

.dt-nav a.dt-nav__link {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 4px 0;
  color: #161718;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
  transition: color 0.2s;
  cursor: pointer;
}

.dt-nav a.dt-nav__link:hover,
.dt-nav a.dt-nav__link:focus,
.dt-nav .dt-nav__item--open > a.dt-nav__link {
  color: #A4063E !important;
  text-decoration: none !important;
}

.dt-nav a.dt-nav__link.dt-nav__link--active {
  color: #A4063E !important;
  border-bottom-color: transparent !important;
  text-decoration: underline !important;
  text-decoration-color: #A4063E !important;
  text-underline-offset: 5px !important;
  text-decoration-thickness: 2px !important;
}

/* Dropdown parent item */

.dt-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Dropdown panel — hidden by default */

.dt-nav__dropdown {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e8e8e9;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 200;
  padding: 8px 0;
}

/* Show via JS --open class only (no CSS :hover — avoids sticky overlap between items) */

.dt-nav__item--open > .dt-nav__dropdown {
  display: block;
}

/* Section divider label inside dropdown (ASSESSMENTS, GUIDES etc.) */

.dt-nav__divider-label {
  padding: 10px 20px 4px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B8C8C;
  border-bottom: 1px solid #e8e8e9;
  margin-bottom: 2px;
}

/* Dropdown links */

.dt-nav__drop-item {
  display: block;
  padding: 8px 20px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #161718;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}

.dt-nav__drop-item:hover,
.dt-nav__drop-item:focus {
  background: #F4F4F5;
  color: #A4063E;
  text-decoration: none;
}

.dt-nav__drop-item--active {
  color: #A4063E;
  font-weight: 600;
}

/* "View all" footer row inside dropdown */

.dt-nav__drop-footer {
  border-top: 1px solid #e8e8e9;
  padding: 10px 20px;
}

.dt-nav__drop-viewall {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #A4063E;
  text-decoration: none;
  transition: color 0.2s;
}

.dt-nav__drop-viewall:hover,
.dt-nav__drop-viewall:focus {
  color: #87052f;
  text-decoration: none;
}

/* ------------------------------------------------------------------
   CTA BUTTON
   ------------------------------------------------------------------ */

.dt-nav__cta {
  display: flex;
  align-items: center;
  align-self: center;
  margin-left: 32px;
  padding: 10px 22px;
  background: #A4063E;
  color: #ffffff !important;
  border-radius: 6px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.dt-nav__cta:hover,
.dt-nav__cta:focus {
  background: #A4063E !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-style: normal !important;
  font-size: 13px !important;
  letter-spacing: 0.01em !important;
}

/* ------------------------------------------------------------------
   HAMBURGER (mobile only — hidden on desktop)
   ------------------------------------------------------------------ */

.dt-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}

.dt-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #161718;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ------------------------------------------------------------------
   MOBILE MENU (hidden on desktop)
   ------------------------------------------------------------------ */

.dt-nav__mobile {
  display: none;
}

/* ==========================================================================
   MOBILE — max 767px
   ========================================================================== */

@media (max-width: 767px) {

  .dt-nav__container {
    height: 60px;
    padding: 0 20px;
  }

  /* Hide desktop nav */

  .dt-nav__right {
    display: none;
  }

  /* Show hamburger */

  .dt-nav__hamburger {
    display: flex;
  }

  /* Mobile menu — full-width dropdown below header */

  .dt-nav__mobile {
    display: none;
    flex-direction: column;
    background: #ffffff;
    border-top: 1px solid #e8e8e9;
    padding: 8px 0 20px;
  }

  .dt-nav__mobile--open {
    display: flex;
  }

  .dt-nav__m-link {
    display: block;
    padding: 12px 24px;
    font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #161718;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f1;
  }

  .dt-nav__m-link:hover {
    color: #A4063E;
    background: #F4F4F5;
  }

  .dt-nav__m-group {
    background: #F4F4F5;
  }

  .dt-nav__m-sub {
    display: block;
    padding: 9px 24px 9px 40px;
    font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
    font-size: 13px;
    color: #5A5B5C;
    text-decoration: none;
    border-bottom: 1px solid #e8e8e9;
  }

  .dt-nav__m-sub:hover {
    color: #A4063E;
  }

  .dt-nav__m-cta {
    display: block;
    margin: 16px 24px 0;
    padding: 12px 24px;
    background: #A4063E;
    color: #ffffff !important;
    border-radius: 6px;
    font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
  }

}

/* ==========================================================================
   HERO NAV STATE — home page at top (transparent over hero, white links)
   JS adds .dt-nav--hero on the home page when scrollY < 40px, removes it on scroll
   ========================================================================== */

.dt-nav--hero {
  background: transparent;
  border-bottom-color: transparent;
}

.dt-nav--hero a.dt-nav__link {
  color: rgba(255, 255, 255, 0.75) !important;
}

.dt-nav--hero a.dt-nav__link:hover,
.dt-nav--hero a.dt-nav__link:focus,
.dt-nav--hero .dt-nav__item--open > a.dt-nav__link {
  color: #ffffff !important;
}

.dt-nav--hero a.dt-nav__link.dt-nav__link--active {
  color: #ffffff !important;
  border-bottom-color: transparent !important;
  text-decoration-color: #ffffff !important;
}

/* Alt (white) logo — hidden by default, shown only in hero state */

.dt-nav__logo-alt-wrap {
  display: none;
  line-height: 0;
}

.dt-nav__logo-alt {
  height: 40px !important;
  width: auto !important;
  display: block;
}

/* In hero state: hide every direct child of logo-wrap EXCEPT the alt, then show alt */

.dt-nav--hero .dt-nav__logo-wrap > :not(.dt-nav__logo-alt-wrap) {
  display: none !important;
}

.dt-nav--hero .dt-nav__logo-alt-wrap {
  display: block;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* ============================================================
   Datatechs — Page Section Styles
   All custom section CSS lives here so HubSpot can serve it
   properly (rich_text modules strip <style> tags at render time)
   ============================================================ */

/* ── Shared utilities ─────────────────────────────────────── */

.dt-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.dt-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #A4063E;
  border-radius: 2px;
  flex-shrink: 0;
}

.dt-eyebrow span {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A4063E;
}

.dt-eyebrow--dark::before {
  background: #D2839F;
}

.dt-eyebrow--dark span {
  color: #D2839F;
}

/* ── Hero ─────────────────────────────────────────────────── */

.dt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  background: #161718;
}

.dt-hero__deco-circles {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.055;
  pointer-events: none;
}

.dt-hero__glow {
  position: absolute;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164,6,62,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.dt-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.dt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.dt-hero__eyebrow-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #A4063E;
  border-radius: 2px;
}

.dt-hero__eyebrow span:last-child {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D2839F;
}

.dt-hero__headline {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 840px;
  margin: 0 0 28px;
}

.dt-hero__headline-accent {
  color: #D2839F;
}

.dt-hero__subtext {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 0 48px;
}

.dt-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.dt-btn--hero-primary {
  background: #A4063E;
  color: #ffffff !important;
  border: none;
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.dt-btn--hero-primary:hover {
  background: #87052f;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.dt-btn--hero-ghost {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.dt-btn--hero-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff !important;
}

.dt-hero__trust {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}

.dt-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dt-hero__trust-item span {
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  font-weight: 400;
}

@media (max-width: 767px) {
  .dt-hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  .dt-hero__deco-circles { display: none; }
  .dt-hero__trust { gap: 16px; }
  .dt-hero__trust-item { width: 100%; }
}

/* ── Services strip ───────────────────────────────────────── */

.dt-services {
  padding: 96px 40px;
  background: #F4F4F5;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-services__header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.dt-services__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #161718;
  max-width: 560px;
  margin: 0;
}

.dt-services__featured {
  max-width: 1200px;
  margin: 0 auto 16px;
  background: #161718;
  border-radius: 14px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.dt-services__featured-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #A4063E;
}

.dt-services__featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.dt-services__featured-title {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 26px);
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.25;
}

.dt-services__featured-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 0 24px;
}

.dt-services__featured-checks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.dt-services__check-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dt-services__check-item span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
}

.dt-services__featured-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  text-align: center;
}

.dt-services__featured-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.dt-services__cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dt-services__card {
  background: #ffffff;
  border: 1.5px solid #e8e8e9;
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
}

.dt-services__card:hover {
  background: #161718;
  border-color: #A4063E;
}

.dt-services__card-eyebrow {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A4063E;
  margin-bottom: 10px;
  transition: color 0.22s;
}

.dt-services__card:hover .dt-services__card-eyebrow { color: #D2839F; }

.dt-services__card-title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #161718;
  margin: 0 0 12px;
  transition: color 0.22s;
}

.dt-services__card:hover .dt-services__card-title { color: #ffffff; }

.dt-services__card-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0 0 20px;
  flex: 1;
  transition: color 0.22s;
}

.dt-services__card:hover .dt-services__card-body { color: rgba(255,255,255,0.5); }

.dt-services__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dt-services__card-list li {
  font-size: 13.5px;
  color: #161718;
  padding-left: 20px;
  position: relative;
  transition: color 0.22s;
}

.dt-services__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5l3 3 7-7' stroke='%23A4063E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.dt-services__card:hover .dt-services__card-list li { color: rgba(255,255,255,0.65); }

.dt-services__card-link {
  background: none;
  border: 1.5px solid #A4063E;
  color: #A4063E !important;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.22s;
  align-self: flex-start;
  margin-top: auto;
}

.dt-services__card-link:hover {
  background: #A4063E;
  color: #ffffff !important;
}

.dt-services__card:hover .dt-services__card-link {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .dt-services__featured-inner { grid-template-columns: 1fr; }
  .dt-services__featured-cta { text-align: left; }
}

@media (max-width: 767px) {
  .dt-services { padding: 64px 20px; }
  .dt-services__featured { padding: 32px 24px; }
  .dt-services__cards { grid-template-columns: 1fr; }
  .dt-services__featured-checks { flex-direction: column; gap: 10px; }
}

/* ── Audit highlights ─────────────────────────────────────── */

.dt-audits {
  padding: 96px 40px;
  background: #ffffff;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-audits__header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.dt-audits__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #161718;
  margin: 0 0 12px;
}

.dt-audits__subtext {
  font-size: 16px;
  line-height: 1.7;
  color: #8B8C8C;
  max-width: 600px;
  margin: 0;
}

.dt-audits__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.dt-audit-card {
  background: #ffffff;
  border: 1px solid #e8e8e9;
  border-top-width: 3px;
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.dt-audit-card--plum  { border-top-color: #A4063E; }
.dt-audit-card--teal  { border-top-color: #0d6b55; }
.dt-audit-card--purple { border-top-color: #5b3fa6; }

.dt-audit-card__eyebrow {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.dt-audit-card--plum  .dt-audit-card__eyebrow { color: #A4063E; }
.dt-audit-card--teal  .dt-audit-card__eyebrow { color: #0d6b55; }
.dt-audit-card--purple .dt-audit-card__eyebrow { color: #5b3fa6; }

.dt-audit-card__title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #161718;
  margin: 0 0 14px;
}

.dt-audit-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0 0 20px;
  flex: 1;
}

.dt-audit-card__link {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  padding: 0;
  transition: opacity 0.15s;
  display: inline-block;
}

.dt-audit-card--plum  .dt-audit-card__link { color: #A4063E; }
.dt-audit-card--teal  .dt-audit-card__link { color: #0d6b55; }
.dt-audit-card--purple .dt-audit-card__link { color: #5b3fa6; }

.dt-audit-card__link:hover { opacity: 0.7; }

@media (max-width: 767px) {
  .dt-audits { padding: 64px 20px; }
}

/* ── How we work ──────────────────────────────────────────── */

.dt-how {
  padding: 96px 40px;
  background: #161718;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-how__header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.dt-how__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  max-width: 480px;
  margin: 0;
}

.dt-how__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}

.dt-how__card {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid rgba(255,255,255,0.07);
  padding: 36px 32px;
  transition: all 0.2s;
}

.dt-how__card:hover {
  background: rgba(164,6,62,0.1);
  border-left-color: #A4063E;
}

.dt-how__number {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.dt-how__card:hover .dt-how__number { color: #A4063E; }

.dt-how__card-title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.dt-how__card-body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.48);
  margin: 0;
}

@media (max-width: 767px) {
  .dt-how { padding: 64px 20px; }
  .dt-how__grid { grid-template-columns: 1fr; gap: 0; }
}

/* ── Contact CTA ──────────────────────────────────────────── */

.dt-contact-wrap {
  padding: 96px 48px 140px 0;
  background: transparent;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.dt-contact-section {
  width: 100%;
  height: 100%;
}


.dt-contact__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #161718;
  margin: 0 0 20px;
}

.dt-contact__subtext {
  font-size: 15px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0 0 36px;
}

.dt-contact__trust {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.dt-contact__trust-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dt-contact__trust-title {
  font-weight: 600;
  font-size: 15px;
  color: #161718;
}

.dt-contact__trust-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: #8B8C8C;
  padding-left: 24px;
  margin: 0;
}

.dt-contact__email-line {
  font-size: 14px;
  color: #8B8C8C;
  margin: 0;
}

.dt-contact__email-line a {
  color: #A4063E;
  font-weight: 600;
  text-decoration: none;
}

.dt-contact__email-line a:hover { color: #87052f; }


@media (max-width: 900px) {
  .dt-contact-section { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  .dt-contact-wrap { padding: 64px 20px; }
}

/* ============================================================
   Inner page styles
   ============================================================ */

/* ── Inner page hero ──────────────────────────────────────── */

.dt-page-hero {
  background: #161718;
  padding: 88px 40px 80px;
  position: relative;
  overflow: hidden;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-page-hero--white {
  background: #ffffff;
}

.dt-page-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dt-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.dt-page-hero__eyebrow-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #D2839F;
  border-radius: 2px;
}

.dt-page-hero--white .dt-page-hero__eyebrow-line { background: #A4063E; }

.dt-page-hero__eyebrow-text {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D2839F;
}

.dt-page-hero--white .dt-page-hero__eyebrow-text { color: #A4063E; }

.dt-page-hero__headline {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 24px;
}

.dt-page-hero--white .dt-page-hero__headline { color: #161718; }

.dt-page-hero__subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0;
}

.dt-page-hero--white .dt-page-hero__subtitle { color: #8B8C8C; }

@media (max-width: 767px) {
  .dt-page-hero { padding: 72px 20px 56px; }
}

/* ── Stat strip (follows dark hero) ──────────────────────── */

.dt-stat-strip {
  background: #161718;
  padding: 0 40px 56px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-stat-strip__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dt-stat-strip__item {
  padding: 40px 36px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.dt-stat-strip__value {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
  margin: 0 0 6px;
}

.dt-stat-strip__label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

@media (max-width: 767px) {
  .dt-stat-strip { padding: 0 20px 40px; }
  .dt-stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Generic section wrapper ──────────────────────────────── */

.dt-section {
  padding: 96px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}
.dt-section--white  { background: #ffffff; }
.dt-section--mist   { background: #F4F4F5; }
.dt-section--dark   { background: #161718; }
.dt-section--compact { padding: 72px 40px; }

.dt-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dt-section__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.dt-section--white  .dt-section__headline,
.dt-section--mist   .dt-section__headline { color: #161718; }
.dt-section--dark   .dt-section__headline { color: #ffffff; }

.dt-section__headline--sm {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.dt-section--white  .dt-section__headline--sm,
.dt-section--mist   .dt-section__headline--sm { color: #161718; }
.dt-section--dark   .dt-section__headline--sm { color: #ffffff; }

.dt-section__subheading {
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 0 48px;
}
.dt-section--white  .dt-section__subheading,
.dt-section--mist   .dt-section__subheading { color: #8B8C8C; }
.dt-section--dark   .dt-section__subheading { color: rgba(255,255,255,0.55); }

.dt-section__body {
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 780px;
  margin: 0 0 24px;
}
.dt-section--white  .dt-section__body,
.dt-section--mist   .dt-section__body { color: #8B8C8C; }
.dt-section--dark   .dt-section__body { color: rgba(255,255,255,0.55); }

@media (max-width: 767px) {
  .dt-section { padding: 64px 20px; }
}

/* ── Layout grids ─────────────────────────────────────────── */

.dt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.dt-two-col--center { align-items: center; }
.dt-two-col--wide-gap { gap: 80px; }

.dt-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dt-four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 900px) {
  .dt-two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .dt-three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dt-three-col { grid-template-columns: 1fr; }
  .dt-four-col  { grid-template-columns: repeat(2, 1fr); }
}

/* ── Card components ──────────────────────────────────────── */

.dt-card {
  border-radius: 10px;
  padding: 28px 28px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}
.dt-card--bg-white  { background: #ffffff; }
.dt-card--bg-mist   { background: #F4F4F5; border: 1px solid #e8e8e9; }
.dt-card--bg-dark   { background: rgba(255,255,255,0.04); }
.dt-card--outline   { border: 1px solid #e8e8e9; }

.dt-card--accent-plum   { border-left: 3px solid #A4063E !important; }
.dt-card--accent-teal   { border-left: 3px solid #0d6b55 !important; }
.dt-card--accent-purple { border-left: 3px solid #5b3fa6 !important; }
.dt-card--top-plum      { border-top: 3px solid #A4063E; border-radius: 12px; }
.dt-card--top-teal      { border-top: 3px solid #0d6b55; border-radius: 12px; }
.dt-card--top-purple    { border-top: 3px solid #5b3fa6; border-radius: 12px; }
.dt-card--top-green     { border-top: 3px solid #0d6b55; border-radius: 12px; }

.dt-card__tag {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.dt-card--accent-plum   .dt-card__tag,
.dt-card--top-plum      .dt-card__tag { color: #A4063E; }
.dt-card--accent-teal   .dt-card__tag,
.dt-card--top-teal      .dt-card__tag,
.dt-card--top-green     .dt-card__tag { color: #0d6b55; }
.dt-card--accent-purple .dt-card__tag,
.dt-card--top-purple    .dt-card__tag { color: #5b3fa6; }

.dt-card__heading {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: #161718;
  margin: 0 0 10px;
}
.dt-card--bg-dark .dt-card__heading { color: #ffffff; }

.dt-card__subheading {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #161718;
  margin: 0 0 14px;
}

.dt-card__body {
  font-size: 14px;
  line-height: 1.65;
  color: #8B8C8C;
  margin: 0;
}
.dt-card--bg-dark .dt-card__body { color: rgba(255,255,255,0.5); }

.dt-card__link {
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  transition: opacity 0.15s;
}
.dt-card--accent-plum   .dt-card__link { color: #A4063E; }
.dt-card--accent-teal   .dt-card__link { color: #0d6b55; }
.dt-card--accent-purple .dt-card__link { color: #5b3fa6; }
.dt-card__link:hover { opacity: 0.7; }

/* Pricing card variant */

.dt-pricing-card {
  background: #ffffff;
  border: 1px solid #e8e8e9;
  border-top: 3px solid #A4063E;
  border-radius: 12px;
  padding: 40px 36px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-pricing-card__label {
  background: #161718;
  display: inline-block;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.dt-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.dt-pricing-card__amount {
  font-weight: 700;
  font-size: 44px;
  color: #A4063E;
  letter-spacing: -0.03em;
  line-height: 1;
}

.dt-pricing-card__unit {
  font-size: 15px;
  color: #8B8C8C;
}

.dt-pricing-card__detail {
  font-size: 14px;
  color: #161718;
  margin: 0 0 6px;
}

.dt-pricing-card__note {
  font-size: 13.5px;
  color: #8B8C8C;
  line-height: 1.5;
  margin: 0;
}

/* ── Process steps ────────────────────────────────────────── */

.dt-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-process__step {
  padding-right: 48px;
  border-right: 1px solid #e8e8e9;
}
.dt-process__step:not(:first-child) { padding-left: 48px; }
.dt-process__step:last-child { border-right: none; padding-right: 0; }

.dt-section--dark .dt-process__step { border-right-color: rgba(255,255,255,0.07); }

.dt-process__num {
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: #d0d0d1;
  line-height: 1;
  margin-bottom: 12px;
}
.dt-section--dark .dt-process__num { color: rgba(255,255,255,0.08); }

.dt-process__bar {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.dt-process__heading {
  font-weight: 700;
  font-size: 18px;
  color: #161718;
  margin: 0 0 12px;
  line-height: 1.25;
}
.dt-section--dark .dt-process__heading { color: #ffffff; }

.dt-process__body {
  font-size: 15px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0;
}
.dt-section--dark .dt-process__body { color: rgba(255,255,255,0.48); }

@media (max-width: 767px) {
  .dt-process { grid-template-columns: 1fr; gap: 32px; }
  .dt-process__step { padding: 0 0 32px 0 !important; border-right: none; border-bottom: 1px solid #e8e8e9; }
  .dt-process__step:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ── Checklist items ──────────────────────────────────────── */

.dt-check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e9;
}
.dt-check-item:last-child { border-bottom: none; }

.dt-check-item__icon { flex-shrink: 0; margin-top: 1px; }

.dt-check-item__text {
  font-size: 14px;
  line-height: 1.5;
  color: #161718;
}

/* ── Tick items (no border) ───────────────────────────────── */

.dt-tick-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-tick-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dt-tick-item__icon { flex-shrink: 0; margin-top: 2px; color: #A4063E; font-weight: 700; font-size: 14px; line-height: 1.4; }
.dt-tick-item__text { font-size: 14px; line-height: 1.6; color: #161718; }

/* ── X-items (not-in-scope) ───────────────────────────────── */

.dt-x-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-x-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dt-x-item__icon { color: #e5a00d; font-weight: 700; font-size: 16px; line-height: 1.4; flex-shrink: 0; }
.dt-x-item__text { font-size: 14px; line-height: 1.6; color: #8B8C8C; }

/* ── Callout boxes ────────────────────────────────────────── */

.dt-callout {
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}
.dt-callout--plum   { background: #ffffff; border: 1px solid #e8e8e9; border-left: 3px solid #A4063E; }
.dt-callout--teal   { background: #ffffff; border: 1px solid #e8e8e9; border-left: 3px solid #0d6b55; }
.dt-callout--purple { background: #ffffff; border: 1px solid #e8e8e9; border-left: 3px solid #5b3fa6; }
.dt-callout--dark   { background: #161718; border-left: 3px solid #A4063E; border-radius: 10px; }
.dt-callout--warn   { background: #ffffff; border: 1px solid #e8e8e9; border-left: 3px solid #e5a00d; }

.dt-callout__heading {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
  color: #161718;
}
.dt-callout--dark .dt-callout__heading { color: #ffffff; }

.dt-callout__text {
  font-size: 14px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0;
}
.dt-callout--dark .dt-callout__text { color: rgba(255,255,255,0.55); }

/* ── Stat callouts (big number + label) ──────────────────── */

.dt-stat-callouts {
  display: flex;
  gap: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e9;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  flex-wrap: wrap;
}

.dt-stat-callout__value {
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.dt-stat-callout--teal  .dt-stat-callout__value { color: #0d6b55; }
.dt-stat-callout--plum  .dt-stat-callout__value { color: #A4063E; }

.dt-stat-callout__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: #8B8C8C;
  max-width: 200px;
}

/* ── CTA bottom section ───────────────────────────────────── */

.dt-cta-section {
  background: #161718;
  padding: 96px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  text-align: center;
}

.dt-cta-section__inner { max-width: 640px; margin: 0 auto; }

.dt-cta-section__headline {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 20px;
}

.dt-cta-section__subtext {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0 0 40px;
}

.dt-cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ──────────────────────────────────────────────── */

.dt-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.dt-btn--primary {
  background: #A4063E;
  color: #ffffff !important;
  border: 2px solid #A4063E;
}
.dt-btn--primary:hover { background: #87052f; border-color: #87052f; color: #ffffff !important; }

.dt-btn--outline {
  background: transparent;
  color: #A4063E !important;
  border: 1.5px solid #A4063E;
}
.dt-btn--outline:hover { background: #A4063E; color: #ffffff !important; }

.dt-btn--ghost {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.22);
}
.dt-btn--ghost:hover { border-color: rgba(255,255,255,0.55); color: #ffffff !important; }

/* ── About page ───────────────────────────────────────────── */

.dt-about-split {
  background: #ffffff;
  padding: 96px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-about-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.dt-about-split__label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B8C8C;
  margin-bottom: 16px;
}

.dt-about-split__heading {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #161718;
  margin: 0 0 14px;
}

.dt-about-split__body {
  font-size: 15px;
  line-height: 1.75;
  color: #8B8C8C;
  margin: 0 0 16px;
}

@media (max-width: 767px) {
  .dt-about-split { padding: 64px 20px; }
  .dt-about-split__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Principles (dark 4-col) ──────────────────────────────── */

.dt-principles {
  background: #161718;
  padding: 96px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-principles__header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.dt-principles__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.dt-principles__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dt-principle {
  padding: 40px 36px;
  border-left: 3px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}

.dt-principle:hover {
  border-left-color: #A4063E;
  background: rgba(164,6,62,0.05);
}

.dt-principle__num {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #A4063E;
  margin-bottom: 16px;
  display: block;
}

.dt-principle__title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.dt-principle__body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin: 0;
}

@media (max-width: 900px) {
  .dt-principles__grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
}
@media (max-width: 600px) {
  .dt-principles__grid { grid-template-columns: 1fr; }
  .dt-principles { padding: 64px 20px; }
}

/* ── Service row (Services page alternating) ──────────────── */

.dt-service-row {
  padding: 96px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}
.dt-service-row--white  { background: #ffffff; }
.dt-service-row--mist   { background: #F4F4F5; }
.dt-service-row--dark   { background: #161718; }

.dt-service-row__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dt-service-row__headline {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.dt-service-row--white  .dt-service-row__headline,
.dt-service-row--mist   .dt-service-row__headline { color: #161718; }
.dt-service-row--dark   .dt-service-row__headline { color: #ffffff; }

.dt-service-row__body {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.dt-service-row--white  .dt-service-row__body,
.dt-service-row--mist   .dt-service-row__body { color: #8B8C8C; }
.dt-service-row--dark   .dt-service-row__body { color: rgba(255,255,255,0.55); }

.dt-service-row__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dt-service-row__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.dt-service-row--white  .dt-service-row__bullet,
.dt-service-row--mist   .dt-service-row__bullet { color: #161718; }
.dt-service-row--dark   .dt-service-row__bullet { color: rgba(255,255,255,0.7); }

.dt-service-row__visual {
  background: rgba(164,6,62,0.05);
  border: 1px solid rgba(164,6,62,0.12);
  border-radius: 14px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dt-service-row--dark .dt-service-row__visual {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.dt-service-row__visual-item {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  color: #161718;
  border-left: 3px solid #A4063E;
}
.dt-service-row--dark .dt-service-row__visual-item {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .dt-service-row { padding: 64px 20px; }
  .dt-service-row__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── MSP "invisible by design" section ───────────────────── */

.dt-embedded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-embedded-card {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid transparent;
  padding: 36px 32px;
  transition: all 0.2s;
}

.dt-embedded-card:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: #A4063E;
}

.dt-embedded-card__num {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #A4063E;
  margin-bottom: 16px;
}

.dt-embedded-card__heading {
  font-weight: 700;
  font-size: 17px;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.dt-embedded-card__body {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

@media (max-width: 767px) {
  .dt-embedded-grid { grid-template-columns: 1fr; }
}

/* ── Engage cards (MSP retainer/project) ──────────────────── */

.dt-engage-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 36px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}
.dt-engage-card--plum  { border-top: 3px solid #A4063E; }
.dt-engage-card--green { border-top: 3px solid #0d6b55; }

.dt-engage-card__label {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.dt-engage-card--plum  .dt-engage-card__label { color: #A4063E; }
.dt-engage-card--green .dt-engage-card__label { color: #0d6b55; }

.dt-engage-card__heading {
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: #161718;
  margin: 0 0 16px;
  line-height: 1.25;
}

.dt-engage-card__body {
  font-size: 15px;
  line-height: 1.7;
  color: #8B8C8C;
  margin: 0 0 28px;
}

/* ── Dark callout box ─────────────────────────────────────── */

.dt-dark-box {
  background: #161718;
  border-left: 3px solid #A4063E;
  border-radius: 10px;
  padding: 32px 40px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-dark-box__heading {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  color: #ffffff;
  margin: 0 0 12px;
}

.dt-dark-box__body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── Big number stats (CIS pages) ────────────────────────── */

.dt-big-stats {
  background: #161718;
  padding: 0 40px 56px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-big-stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.dt-big-stat {
  padding: 48px 40px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.dt-big-stat__value {
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #A4063E;
  margin: 0 0 8px;
}

.dt-big-stat--teal   .dt-big-stat__value { color: #0d6b55; }
.dt-big-stat--purple .dt-big-stat__value { color: #5b3fa6; }
.dt-big-stat--white  .dt-big-stat__value { color: #ffffff; }

.dt-big-stat__label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 767px) {
  .dt-big-stats { padding: 0 20px 40px; }
  .dt-big-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .dt-big-stat { padding: 32px 24px; }
}

/* ── Nine/six areas grid (CIS pages) ─────────────────────── */

.dt-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-area-card {
  background: #ffffff;
  border: 1px solid #e8e8e9;
  border-radius: 10px;
  padding: 24px 24px;
}

.dt-area-card__num {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #A4063E;
  margin-bottom: 8px;
  display: block;
}

.dt-area-card--teal   .dt-area-card__num { color: #0d6b55; }
.dt-area-card--purple .dt-area-card__num { color: #5b3fa6; }

.dt-area-card__title {
  font-weight: 700;
  font-size: 15px;
  color: #161718;
  margin: 0 0 6px;
}

.dt-area-card__body {
  font-size: 13px;
  line-height: 1.6;
  color: #8B8C8C;
  margin: 0;
}

@media (max-width: 767px) {
  .dt-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Journey section (Services page) ─────────────────────── */

.dt-journey {
  padding: 96px 40px;
  background: #161718;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-journey__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dt-journey__header {
  margin-bottom: 56px;
}

.dt-journey__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  max-width: 560px;
  margin: 0;
}

.dt-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.dt-journey__step {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.22s;
}

.dt-journey__step:hover {
  background: rgba(164,6,62,0.08);
  border-left-color: #A4063E;
  color: inherit;
}

.dt-journey__step-num {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #A4063E;
  margin-bottom: 2px;
}

.dt-journey__step-label {
  display: block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D2839F;
  margin-bottom: 16px;
}

.dt-journey__step-title {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.dt-journey__step-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin: 0 0 16px;
  flex: 1;
}

.dt-journey__step-why {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  margin: 0 0 24px;
  padding-left: 12px;
  border-left: 2px solid rgba(164,6,62,0.3);
}

.dt-journey__step-link {
  font-weight: 600;
  font-size: 13px;
  color: #D2839F;
  text-decoration: none;
  transition: color 0.15s;
}

.dt-journey__step:hover .dt-journey__step-link { color: #ffffff; }
.dt-journey__step:hover .dt-journey__step-num  { color: #D2839F; }

@media (max-width: 900px) {
  .dt-journey { padding: 64px 20px; }
  .dt-journey__steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .dt-journey__steps { grid-template-columns: 1fr; }
}

/* ── Service detail sections (Services page alternating) ──── */

.dt-service-row__inner--reverse .dt-service-row__visual { order: -1; }

@media (max-width: 900px) {
  .dt-service-row__inner--reverse .dt-service-row__visual { order: 0; }
}

.dt-service-row__visual--dark {
  background: #161718;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 360px;
}

.dt-service-row__icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(164,6,62,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-service-row__stat-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.55;
  width: 100%;
}

.dt-service-row__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.dt-service-row--white .dt-service-row__bullet,
.dt-service-row--mist  .dt-service-row__bullet { color: #161718; }
.dt-service-row--dark  .dt-service-row__bullet { color: rgba(255,255,255,0.7); }

.dt-service-row__bullet::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23A4063E' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── FAQ accordion (Services page) ───────────────────────── */

.dt-faq {
  padding: 96px 40px;
  background: #F4F4F5;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-faq__inner {
  max-width: 840px;
  margin: 0 auto;
}

.dt-faq__header {
  margin-bottom: 48px;
}

.dt-faq__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #161718;
  margin: 0;
}

.dt-faq details {
  border-bottom: 1px solid #e0e0e1;
}

.dt-faq details:first-of-type {
  border-top: 1px solid #e0e0e1;
}

.dt-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: #161718;
  gap: 20px;
  user-select: none;
  transition: color 0.15s;
}

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

.dt-faq summary:hover { color: #A4063E; }

.dt-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d1;
  position: relative;
  transition: border-color 0.2s;
}

.dt-faq__icon::before,
.dt-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #A4063E;
  border-radius: 2px;
  transition: transform 0.22s;
}

.dt-faq__icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.dt-faq__icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.dt-faq details[open] summary { color: #A4063E; }
.dt-faq details[open] .dt-faq__icon { border-color: #A4063E; }
.dt-faq details[open] .dt-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.dt-faq__answer {
  font-size: 15px;
  line-height: 1.75;
  color: #8B8C8C;
  padding: 0 0 28px;
  margin: 0;
  max-width: 720px;
}

@media (max-width: 767px) {
  .dt-faq { padding: 64px 20px; }
  .dt-faq summary { font-size: 15px; }
}

/* ── Services start + contact (merged, dark) ──────────────── */

.dt-start-contact {
  padding: 96px 40px;
  background: #161718;
  font-family: 'Aptos', 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

.dt-start-contact__left {
  padding-right: 8px;
}

.dt-start-contact__headline {
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 16px;
}

.dt-start-contact__subtext {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.48);
  margin: 0 0 40px;
  max-width: 400px;
}

.dt-start-contact__step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dt-start-contact__step:first-child { padding-top: 0; }
.dt-start-contact__step:last-child  { border-bottom: none; }

.dt-start-contact__step-num {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #A4063E;
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 24px;
}

.dt-start-contact__step-title {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.dt-start-contact__step-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.48);
  margin: 0;
}

.dt-start-contact__email {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.dt-start-contact__email a {
  color: #D2839F;
  font-weight: 600;
  text-decoration: none;
}

.dt-start-contact__email a:hover { color: #ffffff; }

@media (max-width: 900px) {
  .dt-start-contact { padding: 64px 20px; }
}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}