@charset "UTF-8";
/**
 * INDATA — Homepage styles
 *
 * All selectors are scoped under .idh so nothing here can leak into the
 * rest of the theme, and nothing in the theme can accidentally restyle
 * this page. Brand values live in the token block below: change
 * --idh-brand-rgb and --idh-logo-blue and the whole page re-skins.
 */

.idh {
  /* ── BRAND TOKENS — the only values you should need to change ── */
  --idh-brand-rgb: 16, 58, 102;          /* primary, as R,G,B */
  --idh-brand: rgb(var(--idh-brand-rgb));
  --idh-brand-dk: #0a2745;               /* primary, ~30% darker */
  --idh-brand-lt: #edf3f9;               /* primary at ~6% */
  --idh-logo-blue: #1e6fd9;              /* the blue in the INDATA logo */
  --idh-accent: #f0a83c;                 /* gold — CTA button, bullets */
  --idh-accent-hi: #ffbe55;

  /* ── NEUTRALS ── */
  --idh-ink: #111c28;
  --idh-ink-hi: #0d1620;
  --idh-muted: #5d6b7a;
  --idh-rule: #e1e7ed;
  --idh-bg: #f7f9fb;
  --idh-white: #fff;

  /* ── SYSTEM ── */
  --idh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --idh-max: 1200px;
  --idh-gut: clamp(18px, 4vw, 44px);
  --idh-radius: 12px;

  font-family: var(--idh-font);
  color: var(--idh-ink);
  background: var(--idh-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* ─────────────────────────────────────────────────────────────
   RESET (scoped)
   ───────────────────────────────────────────────────────────── */
.idh *,
.idh *::before,
.idh *::after { box-sizing: border-box; }

.idh h1, .idh h2, .idh h3, .idh h4, .idh p, .idh ul, .idh li, .idh figure {
  margin: 0;
  padding: 0;
}
.idh ul { list-style: none; }
.idh img { max-width: 100%; height: auto; display: block; }
.idh a { color: inherit; text-decoration: none; }

.idh h1, .idh h2, .idh h3 {
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 800;
}
.idh h2 { font-size: clamp(26px, 3.4vw, 40px); }

/* Visible keyboard focus everywhere. */
.idh a:focus-visible,
.idh button:focus-visible {
  outline: 3px solid var(--idh-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ─────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────── */
.idh-wrap {
  max-width: var(--idh-max);
  margin-inline: auto;
  padding-inline: var(--idh-gut);
}
.idh-section { padding-block: clamp(48px, 6vw, 84px); }

.idh-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--idh-brand);
  margin-bottom: 14px;
}
.idh-eyebrow--gold { color: var(--idh-accent); }

.idh-lede {
  color: var(--idh-muted);
  font-size: clamp(16.5px, 1.7vw, 18.5px);
  max-width: 60ch;
  margin-top: 14px;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────── */
.idh-btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  padding: 13px 26px;
  border-radius: 6px;
  background: var(--idh-brand);
  color: var(--idh-white) !important;
  border: 1.5px solid var(--idh-brand);
  cursor: pointer;
  text-align: center;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.idh-btn:hover,
.idh-btn:focus-visible {
  background: var(--idh-brand-dk);
  border-color: var(--idh-brand-dk);
  color: var(--idh-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--idh-brand-rgb), .30);
}
.idh-btn:active { transform: translateY(0); box-shadow: none; }

.idh-btn--ghost {
  background: transparent;
  color: var(--idh-brand) !important;
  border-color: var(--idh-rule);
}
.idh-btn--ghost:hover,
.idh-btn--ghost:focus-visible {
  background: var(--idh-brand-lt);
  border-color: var(--idh-brand);
  color: var(--idh-brand) !important;
}

/* ─────────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────────── */
.idh-nav {
  background: var(--idh-brand);
  position: sticky;
  top: 0;
  z-index: 60;
}
.idh-nav__in {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 72px;
}
.idh-nav__logo img { height: 26px; width: auto; }

.idh-nav__in nav {
  display: flex;
  margin-left: auto;
}

.idh-nav__menu {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.idh-nav__menu a {
  color: #d6e3f0;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s ease;
}
.idh-nav__menu a:hover,
.idh-nav__menu a:focus-visible { color: var(--idh-white); }

.idh-nav__has-sub > a::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .7;
}
/* Sign in — icon-only on desktop, sits to the right of the CTA. The
   visible label is hidden rather than removed so it still announces
   correctly to screen readers and reappears in the mobile menu. */
.idh-nav__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #bfd4ea;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.idh-nav__signin:hover,
.idh-nav__signin:focus-visible {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
}
.idh-nav__signin-txt {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.idh-nav__cta {
  background: var(--idh-accent);
  color: #2b1a00 !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14.5px;
  margin-left: 6px;
  display: inline-block;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.idh-nav__cta:hover,
.idh-nav__cta:focus-visible {
  background: var(--idh-accent-hi);
  color: #2b1a00 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(240, 168, 60, .40);
}

.idh-nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  flex-direction: column;
  gap: 4px;
}
.idh-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--idh-white);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.idh-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.idh-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.idh-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 1081px) {
  .only-mobil { display: none; }
}
@media (max-width: 1080px) {
  .only-desktop { display: none; }
  .idh-nav__in { gap: 12px; }
  .idh-nav__in nav { margin-left: 0; }
  .idh-nav__toggle { display: flex; }
  .idh-nav__menu {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--idh-brand-dk);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .idh-nav__menu.is-open { display: flex; }
  .idh-nav__menu > li { padding-inline: var(--idh-gut); }
  .idh-nav__menu > li > a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }
  .idh-nav__menu > li:last-child { padding: 0; }
  .idh-nav__cta {
    margin: 14px var(--idh-gut) 0;
    padding: 15px 22px;
    text-align: center;
  }
  .idh-nav__signin-li { padding-inline: var(--idh-gut); }
  .idh-nav__signin {
    width: auto; height: auto;
    margin: 0;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    justify-content: flex-start;
    font-size: 16px;
  }
  .idh-nav__signin-txt {
    position: static;
    width: auto; height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
  }
}

/* ─────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────── */
.idh-hero {
  background: var(--idh-white);
  padding-block: clamp(46px, 5.5vw, 74px);
  border-bottom: 1px solid var(--idh-rule);
}
.idh-hero__in {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}
.idh-hero h1 {
  font-size: clamp(34px, 4.9vw, 56px);
  margin-bottom: 18px;
  max-width: 15ch;
  color: var(--idh-ink-hi);
  text-wrap: balance;
}
.idh-hero h1 .idh-hl { color: var(--idh-logo-blue); }
.idh-hero__sub {
  font-size: clamp(17px, 1.85vw, 19.5px);
  color: var(--idh-muted);
  max-width: 47ch;
}
.idh-hero__acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.idh-hero__media img {
  width: 100%;
  height: clamp(260px, 30vw, 370px);
  object-fit: cover;
  border-radius: var(--idh-radius);
}

@media (max-width: 900px) {
  .idh-hero__in { grid-template-columns: 1fr; gap: 24px; }
  .idh-hero__copy { order: 2; }
  .idh-hero__media { order: 1; }
  .idh-hero h1 { max-width: none; }
}

/* ─────────────────────────────────────────────────────────────
   "WITH INDATA YOU GET" LIST
   ───────────────────────────────────────────────────────────── */
.idh-get {
  border-bottom: 1px solid var(--idh-rule);
  padding-block: clamp(38px, 5vw, 60px);
}
.idh-get h2 {
  font-size: clamp(23px, 2.8vw, 32px);
  margin-bottom: 26px;
}
.idh-get__list {
  columns: 2;
  column-gap: clamp(28px, 5vw, 64px);
}
.idh-get__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  break-inside: avoid;
  font-size: clamp(15.5px, 1.6vw, 17px);
  line-height: 1.45;
}
.idh-get__list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--idh-accent);
}
@media (max-width: 760px) { .idh-get__list { columns: 1; } }

/* ─────────────────────────────────────────────────────────────
   PILLAR TILES
   ───────────────────────────────────────────────────────────── */
.idh-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}
.idh-pillar {
  background: var(--idh-white);
  border: 1px solid var(--idh-rule);
  border-radius: var(--idh-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 58, 102, .05);
}
.idh-pillar__art {
  height: 150px;
  background: var(--idh-brand-lt);
  border-bottom: 1px solid var(--idh-rule);
}
.idh-pillar__art img { width: 100%; height: 100%; object-fit: cover; }
.idh-pillar__body { padding: 24px; }
.idh-pillar h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--idh-brand);
}
.idh-pillar p { color: var(--idh-muted); font-size: 15.5px; }
@media (max-width: 880px) { .idh-pillars { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   CAPABILITIES + UI MOCKUPS
   ───────────────────────────────────────────────────────────── */
.idh-caps {
  background: var(--idh-bg);
  border-block: 1px solid var(--idh-rule);
}
.idh-cap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding-block: clamp(30px, 4vw, 48px);
  border-bottom: 1px solid var(--idh-rule);
}
.idh-cap:last-child { border-bottom: 0; }
.idh-cap:nth-child(even) .idh-cap__copy { order: 2; }
.idh-cap h3 {
  font-size: clamp(21px, 2.4vw, 27px);
  color: var(--idh-brand);
  margin-bottom: 10px;
}
.idh-cap p { color: var(--idh-muted); font-size: 16.5px; }
@media (max-width: 820px) {
  .idh-cap { grid-template-columns: 1fr; }
  .idh-cap:nth-child(even) .idh-cap__copy { order: 0; }
}

.idh-ui {
  background: var(--idh-white);
  border: 1px solid var(--idh-rule);
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(16, 58, 102, .10);
  font-size: 13.5px;
}
.idh-ui__bar {
  background: #f2f5f8;
  border-bottom: 1px solid var(--idh-rule);
  padding: 9px 13px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--idh-muted);
  letter-spacing: .04em;
  display: flex;
  gap: 8px;
  align-items: center;
}
.idh-ui__dots { display: flex; gap: 4px; }
.idh-ui__dots i { width: 8px; height: 8px; border-radius: 50%; background: #d6dee6; display: block; }
.idh-ui__pad { padding: 14px; }

.idh-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #eef2f6;
}
.idh-row:last-child { border-bottom: 0; }
.idh-row__nm { font-weight: 600; }
.idh-row__sku { font-size: 11.5px; color: var(--idh-muted); }
.idh-row__pr { margin-left: auto; font-weight: 700; color: var(--idh-brand); }
.idh-row__add {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--idh-brand);
  color: var(--idh-white);
  padding: 5px 10px;
  border-radius: 5px;
  flex: none;
}
.idh-total {
  display: flex;
  padding-top: 11px;
  margin-top: 6px;
  border-top: 2px solid var(--idh-ink);
  font-weight: 800;
}
.idh-total span { margin-left: auto; color: var(--idh-brand); }

.idh-src { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.idh-src__nm { width: 44%; font-weight: 600; font-size: 12.5px; }
.idh-src__track { flex: 1; height: 7px; background: #eef2f6; border-radius: 4px; overflow: hidden; }
.idh-src__track i { display: block; height: 100%; background: var(--idh-brand); border-radius: 4px; }
.idh-src__v { width: 34px; text-align: right; font-weight: 700; color: var(--idh-brand); font-size: 12.5px; }

.idh-search {
  background: #f2f5f8;
  border: 1px solid var(--idh-rule);
  border-radius: 7px;
  padding: 9px 12px;
  color: var(--idh-muted);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.idh-serp__ad { font-size: 11px; font-weight: 800; color: #0b7d3b; letter-spacing: .04em; }
.idh-serp__t { color: #1a56c4; font-weight: 600; font-size: 15px; margin-top: 2px; }
.idh-serp__d { font-size: 13px; color: var(--idh-muted); margin-top: 2px; }
.idh-serp__org { margin-top: 14px; padding-top: 12px; border-top: 1px solid #eef2f6; }
.idh-serp__tag { font-size: 10.5px; font-weight: 800; letter-spacing: .1em; color: var(--idh-accent); }

.idh-stats { display: flex; gap: 18px; margin-top: 12px; padding-top: 12px; border-top: 1px solid #eef2f6; }
.idh-stats b { display: block; font-size: 18px; color: var(--idh-brand); font-weight: 800; }
.idh-stats span { font-size: 11.5px; color: var(--idh-muted); }

.idh-field {
  border: 1px solid var(--idh-rule);
  border-radius: 7px;
  padding: 9px 11px;
  margin-bottom: 9px;
  font-size: 13.5px;
}
.idh-field em {
  display: block;
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--idh-muted);
  margin-bottom: 3px;
}
.idh-ai {
  margin-top: 11px;
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--idh-brand-lt);
  border: 1px solid rgba(var(--idh-brand-rgb), .16);
}
.idh-ai__t {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--idh-brand);
  margin-bottom: 8px;
}
.idh-ai__r { display: flex; align-items: center; font-size: 12.5px; color: var(--idh-muted); padding: 3px 0; }
.idh-ai__r b { margin-left: auto; color: var(--idh-brand); font-weight: 700; }
.idh-reply { display: flex; align-items: center; gap: 8px; margin-top: 11px; font-size: 12.5px; color: var(--idh-muted); }
.idh-reply b { color: #0b7d3b; }

.idh-chips { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.idh-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--idh-muted);
  background: #f2f5f8;
  border: 1px solid var(--idh-rule);
  border-radius: 20px;
  padding: 3px 10px;
}
.idh-chip--on { background: var(--idh-brand-lt); border-color: var(--idh-brand); color: var(--idh-brand); }

.idh-caret {
  display: inline-block;
  width: 1.5px; height: 14px;
  background: var(--idh-brand);
  margin-left: 1px;
  vertical-align: -2px;
  animation: idh-blink 1.05s step-end infinite;
}
@keyframes idh-blink { 50% { opacity: 0; } }

/* ─────────────────────────────────────────────────────────────
   PLATFORM (photo background)
   ───────────────────────────────────────────────────────────── */
.idh-platform {
  position: relative;
  background-color: var(--idh-brand);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.idh-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, .90) 0%,
    rgba(255, 255, 255, .72) 50%,
    rgba(255, 255, 255, .90) 100%);
}
.idh-platform > .idh-wrap { position: relative; z-index: 1; }

.idh-ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}
.idh-way {
  border: 1px solid rgba(var(--idh-brand-rgb), .14);
  border-radius: var(--idh-radius);
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 22px rgba(16, 58, 102, .10);
}
.idh-way h3 { font-size: 19px; color: var(--idh-brand); margin-bottom: 8px; }
.idh-way p { color: var(--idh-muted); font-size: 15.5px; }
@media (max-width: 760px) { .idh-ways { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   WHY INDATA (tabs)
   ───────────────────────────────────────────────────────────── */
.idh-why { background: var(--idh-brand); color: var(--idh-white); }
.idh-why h2 { color: var(--idh-white); }
.idh-why h3 { color: var(--idh-white); }
.idh-why .idh-eyebrow { color: #bfd4e8; }
.idh-why__alt { margin-top: 12px; font-size: 16px; color: #bfd4e8; }
.idh-why__alt b { color: var(--idh-white); }

.idh-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.idh-tabs button {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, .10);
  color: #cbdcec;
  border: 1px solid rgba(255, 255, 255, .20);
  transition: background .15s ease, color .15s ease;
}
.idh-tabs button:hover { background: rgba(255, 255, 255, .18); color: var(--idh-white); }
.idh-tabs button[aria-selected="true"] {
  background: var(--idh-white);
  color: var(--idh-brand);
  border-color: var(--idh-white);
}
.idh-pane {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .20);
  max-width: 66ch;
}
.idh-pane[hidden] { display: none; }
.idh-pane h3 { font-size: clamp(21px, 2.5vw, 28px); margin-bottom: 11px; }
.idh-pane p { color: #cbdcec; font-size: 17px; }

/* ─────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────── */

#idh-pricing-h {
  color: var(--idh-ink);
}
.idh-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
  align-items: start;
}
.idh-plan {
  border: 1px solid var(--idh-rule);
  border-radius: var(--idh-radius);
  padding: 28px 24px;
  background: var(--idh-white);
  position: relative;
}
.idh-plan--pop { border: 2px solid var(--idh-brand); box-shadow: 0 14px 40px rgba(16, 58, 102, .13); }
.idh-plan__flag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--idh-brand);
  color: var(--idh-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}
.idh-plan h3 { font-size: 19px; color: var(--idh-brand); }
.idh-plan__amt { font-size: 40px; font-weight: 800; letter-spacing: -.035em; margin: 8px 0 2px; }
.idh-plan__amt small { font-size: 14px; font-weight: 600; color: var(--idh-muted); letter-spacing: 0; }
.idh-plan__feats {
  margin: 20px 0 24px;
  border-top: 1px solid var(--idh-rule);
  padding-top: 18px;
}
.idh-plan__feats li {
  font-size: 14.5px;
  color: var(--idh-muted);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.idh-plan__feats li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--idh-accent);
}
.idh-plan__feats li.is-head {
  color: var(--idh-ink);
  font-weight: 700;
  padding-left: 0;
}
.idh-plan__feats li.is-head::before { display: none; }
.idh-plan .idh-btn { width: 100%; }
@media (max-width: 900px) { .idh-plans { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────
   CLOSING CTA
   ───────────────────────────────────────────────────────────── */
.idh-cta { background: var(--idh-brand-lt); text-align: center; }
.idh-cta h2 { color: var(--idh-brand); max-width: 18ch; margin-inline: auto; text-wrap: balance; }
.idh-cta p {
  color: var(--idh-muted);
  max-width: 52ch;
  margin: 14px auto 26px;
  font-size: 17.5px;
}
.idh-cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.idh-cta__fine { margin-top: 20px; font-size: 13.5px; color: var(--idh-muted); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   SMALL SCREENS
   ───────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .idh-cta__row { flex-direction: column; align-items: stretch; }
  .idh-hero__acts { flex-direction: column; align-items: stretch; }
  .idh-plan__amt { font-size: 34px; }
  .idh-ui { font-size: 12.5px; }
  .idh-src__nm { width: 50%; font-size: 11.5px; }
  .idh-stats { gap: 12px; }
}

/* ─────────────────────────────────────────────────────────────
   MOTION / PRINT
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .idh *,
  .idh *::before,
  .idh *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .idh-btn:hover { transform: none; }
}

@media print {
  .idh-nav, .idh-cta__row, .idh-hero__acts { display: none !important; }
  .idh-why, .idh-platform { background: none !important; color: #000 !important; }
  .idh-pane[hidden] { display: block !important; }
}


.idh-footer a:hover { color: #fff !important; }
@media (max-width: 680px) {
  .idh-copy { display: grid !important; }
  .idh-copy span { order: 1; }
}