/* ===== Local fonts ===== */
@font-face{
  font-family: "Sohne";
  src: url("../fonts/soehne-web-buch.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Sohne";
  src: url("../fonts/Sohne-Halbfett.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Signifier";
  src: url("../fonts/signifier-web-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Signifier";
  src: url("../fonts/signifier-web-regular-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ===== Design Tokens ===== */
:root{
  /* Gray scale (solid) */
  --gray-2: #f8f9fd;
  --gray-5: #dee0eb;
  --gray-8: #b6bbce;
  --gray-10: #7e8394;
  --gray-11: #606472;
  --gray-12: #000000;

  /* Gray scale (alpha) */
  --gray-a1: #0000aa03;
  --gray-a3: #001e7811;
  --gray-a4: #00156619;
  --gray-a5: #00106521;
  --gray-a6: #00135e29;
  --gray-a12: #00030fe2;

  --color-bg: #fff;
  --color-surface: #fff;
  --border: var(--gray-5);

  --dark: var(--gray-12);
  --text: var(--gray-12);
  --muted: var(--gray-11);

  --container: 1440px;

  --kickerYellow: #FFCAA7;
  --kickerMint: #A7FFCF;
  --kickerBlue: #A7C6FF;
  --kickerPurple: #EAD7F7;

  /* Spacing scale */
  --spacing-xs: 8px;
  --spacing-lg: 48px;

  /* Transition tokens */
  --transition-normal: 0.1s ease;

  /* Z-index scale */
  --z-header: 50;
  --z-toast: 200;

  /* Header backdrop */
  --header-bg: rgba(255,255,255,.48);
  --header-backdrop: blur(24px);

  /* Nav link colors */
  --nav-link: var(--gray-a12);
  --nav-link-hover: var(--gray-12);

  /* Footer link colors */
  --footer-link: var(--gray-12);
}

@supports (color: color(display-p3 1 1 1)) {
  @media (color-gamut: p3) {
    :root {
      --gray-2: oklch(98.3% 0.0048 273.9);
      --gray-5: oklch(90.9% 0.0147 273.9);
      --gray-8: oklch(79.4% 0.0282 273.9);
      --gray-10: oklch(61.1% 0.027 273.9);
      --gray-11: oklch(50.5% 0.0233 273.9);
      --gray-12: #000000;

      --gray-a1: color(display-p3 0.0235 0.0235 0.6745 / 0.012);
      --gray-a3: color(display-p3 0.0078 0.1255 0.4157 / 0.067);
      --gray-a4: color(display-p3 0.0118 0.0902 0.3686 / 0.099);
      --gray-a5: color(display-p3 0.0078 0.0667 0.3686 / 0.13);
      --gray-a6: color(display-p3 0.0039 0.051 0.3294 / 0.157);
      --gray-a12: color(display-p3 0 0.0078 0.051 / 0.883);

      --kickerYellow: oklch(87.2% 0.098 63);
      --kickerMint: oklch(93.5% 0.112 155);
      --kickerBlue: oklch(83.2% 0.104 264);
      --kickerPurple: oklch(90.5% 0.065 310);
    }

    .docpro_toast--success { background: oklch(66% 0.19 142); }
    .docpro_toast--error { background: oklch(63% 0.27 27); }

    .docpro_link_highlight,
    .docpro_demo_section .docpro_contact_form a {
      color: oklch(50% 0.14 240);
    }

    .docpro_watermark_glow--blue {
      background: oklch(72% 0.108 255 / 0.30);
    }
    .docpro_watermark_glow--purple {
      background: oklch(73% 0.078 290 / 0.30);
    }

    .docpro_demo_section {
      background:
        radial-gradient(1200px 800px at 30% 20%,
          color(display-p3 1 1 1 / 0.9) 0%,
          color(display-p3 1 1 1 / 0.55) 30%,
          color(display-p3 1 1 1 / 0) 60%),
        linear-gradient(135deg,
          oklch(93.5% 0.056 220) 0%,
          oklch(90% 0.066 210) 35%,
          oklch(92.5% 0.05 245) 70%,
          oklch(93% 0.042 258) 100%);
    }
  }
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: "Sohne", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-text-size-adjust: 100%;
  transition: background-color var(--transition-normal);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ===== Skip Link (accessibility) ===== */
.docpro_skip_link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
  padding: 12px 24px;
  background: var(--dark);
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.011em;
  border-radius: 0 0 8px 0;
}
.docpro_skip_link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ===== Screen-reader only ===== */
.docpro_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Focus indicators (accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--kickerBlue);
  outline-offset: 2px;
}

/* ===== Toast notifications ===== */
.docpro_toast {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: var(--z-toast);
  padding: 14px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.009em;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}
.docpro_toast--success { background: #4caf50; }
.docpro_toast--error { background: #f44336; }
.docpro_toast--out {
  opacity: 0;
  transform: translateY(-10px);
}

/* ===== Layout ===== */
.docpro_web_page {
  min-height: 100vh;
}
.docpro_page_container {
  max-width: var(--container);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  margin: 0 auto;
}
.docpro_section {
  position: relative;
  border-bottom: 1px solid var(--border);
}

/* ===== NAV ===== */
.docpro_header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--header-bg);
  -webkit-backdrop-filter: var(--header-backdrop);
  backdrop-filter: var(--header-backdrop);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition-normal);
}
.docpro_header--dark {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.docpro_header_navigation {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
}
.docpro_logo img, .docpro_logo svg {
  height: 24px;
  width: auto;
}
.docpro_logo:hover {
  opacity: 0.8;
}
.docpro_logo_symbol {
  transition: fill var(--transition-normal);
}
.docpro_header--dark .docpro_logo_symbol {
  fill: var(--gray-12);
  fill-opacity: 0.918;
}
.docpro_nav_links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  letter-spacing: -0.011em;
  color: var(--nav-link);
  font-weight: 400;
}
.docpro_nav_links a:not(.docpro_round_button) {
  position: relative;
  color: var(--nav-link);
  padding: 8px;
  border-radius: 8px;
}
.docpro_nav_links a:not(.docpro_round_button):hover {
  color: var(--nav-link-hover);
  background-color: var(--gray-a3);
}
.docpro_nav_links a[aria-current="page"] {
  font-weight: 600;
  color: var(--nav-link-hover);
}
.docpro_nav_buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.docpro_round_button {
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: -0.011em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
  line-height: 20px;
  border: none;
}
.docpro_round_button .btn-text {
  display: block;
  height: 20px;
  overflow: hidden;
}
.docpro_round_button .btn-text span {
  display: block;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.docpro_round_button:hover .btn-text span {
  transform: translateY(-100%);
}
.docpro_outline_button {
  background: var(--color-surface);
  box-shadow: 0px 0px 0px 1px var(--gray-a4), 0px 1px 2px -1px var(--gray-a4), 0px 2px 4px 0px var(--gray-a3);
}
.docpro_outline_button:hover {
  box-shadow: 0px 0px 0px 1px var(--gray-a6), 0px 1px 2px -1px var(--gray-a6), 0px 2px 4px 0px var(--gray-a5);
}
.docpro_dark_button {
  background: var(--gray-12);
  color: #fff !important;
}
.docpro_dark_button:hover {
  background-color: var(--gray-a12);
}

/* ===== Mobile Menu ===== */
.docpro_toggle_button {
  display: none;
  width: 44px;
  min-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-12);
  transition: background-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.docpro_toggle_button:active {
  background-color: var(--gray-a3);
}
.docpro_toggle_button svg {
  width: 24px;
  height: 24px;
}
.docpro_toggle_mobile_menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 66px;
  background: var(--color-surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  box-shadow: 0px 0px 0px 1px var(--gray-a4), 0px 1px 2px -1px var(--gray-a4), 0px 2px 4px 0px var(--gray-a3);
  transform-origin: top;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events:none;
  transition: transform .1s ease, opacity .1s ease;
}
.docpro_mobile_link {
  display: block;
  padding: 14px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: -0.011em;
  color: var(--nav-link);
  transition: background-color 0.1s ease;
}
.docpro_mobile_link:hover {
  color: var(--nav-link-hover);
  background-color: var(--gray-a3);
}
.docpro_mobile_link[aria-current="page"] {
  font-weight: 600;
  color: var(--nav-link-hover);
}
.docpro_mobile_header_button {
  margin-top: 14px;
  width: 100%;
  justify-content:center;
}
.docpro_open_menu .docpro_toggle_mobile_menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== HERO ===== */
.docpro_heading_title {
  margin: 0;
  padding: 56px 0 60px;
  text-align: center;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 110%;
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--dark);
}
.docpro_heading_title .line {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 12px, 0);
  animation: docproLineReveal var(--ldur, 550ms) cubic-bezier(0, 0, 0.5, 1) both;
}
.docpro_heading_title .line:nth-child(1) { animation-delay: 150ms; --ldur: 550ms; }
.docpro_heading_title .line:nth-child(2) { animation-delay: 280ms; --ldur: 600ms; }
.docpro_italic_font {
  font-style: italic;
}
.docpro_heading_video {
  position: relative;
  overflow: hidden;
}
.docpro_hero_about {
  position: relative;
}
.docpro_heading_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== About row below hero ===== */
.docpro_about_section {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}
.docpro_section_title{
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
}
.docpro_title_blue_shape,
.docpro_title_yellow_shape,
.docpro_title_mint_shape,
.docpro_title_purple_shape {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.docpro_title_blue_shape { background: var(--kickerBlue); }
.docpro_title_yellow_shape { background: var(--kickerYellow); }
.docpro_title_mint_shape { background: var(--kickerMint); }
.docpro_title_purple_shape { background: var(--kickerPurple); }
.docpro_normal_text {
  margin: 0;
  color: var(--dark);
  font-size: 24px;
  letter-spacing: -0.019em;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== Left outline squares ===== */
.docpro_mini_box {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--color-surface);
  z-index: 1;
  pointer-events: none;
}
.b2 {
  left: -1px;
  top: 24%;
}
.b1 {
  left: -60px;
  top: calc(24% + 59px);
}
.b3 {
  left: 58px;
  top: calc(24% + 59px);
}

/* ===== Feature blocks ===== */
.docpro_two_column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.docpro_column_details {
  padding: 62px;
}
.docpro_features_heading {
  margin: 12px 0 28px;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  font-size: clamp(40px, 3.5vw, 64px);
  color: var(--dark);
}
.docpro_page_heading { font-size: clamp(28px, 3.5vw, 48px); }
.docpro_page_heading--flush { margin-top: 0; }
.docpro_page_heading--compact { margin: 0 0 15px; }
.docpro_watermark_svg { mix-blend-mode: plus-darker; }
.docpro_noscript_msg { padding: 20px; text-align: center; }
.docpro_mb0 { margin-bottom: 0; }
.docpro_features_heading_text {
  margin: 0 0 24px;
  color: var(--dark);
  font-size: 20px;
  letter-spacing: -0.017em;
  line-height: 1.75;
  font-weight: 400;
}
.docpro_bullet_points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  font-size: 20px;
  letter-spacing: -0.017em;
  line-height: 1.6;
}
.docpro_bullet_points li {
  position: relative;
  padding-left: 32px;
}

/* ===== Testimonials ===== */
.docpro_testimonial_wrapper {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--color-surface);
  position: relative;
}
.docpro_testimonial_item {
  display: flex;
  position: relative;
  width: 120px;
  min-width: 120px;
  height: 100%;
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: flex-grow 0.85s cubic-bezier(0.32, 0.72, 0, 1),
              min-width 0.85s cubic-bezier(0.32, 0.72, 0, 1),
              background 0.4s ease;
  background: var(--color-surface);
  flex-shrink: 0;
  flex-grow: 0;
}
.docpro_testimonial_wrapper .docpro_testimonial_item:last-child {
  border-right: none;
}
.docpro_testimonial_item:not(.active):hover {
  background: var(--gray-2);
}
.docpro_testimonial_item:not(.active):hover .docpro_sketch_img {
  filter: grayscale(40%);
  transform: scale(1.02) translateZ(0);
}
.docpro_testimonial_item.active {
  flex-grow: 1;
  cursor: default;
}
.docpro_sketch_mask {
  width: 120px;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  transition: width 0.85s cubic-bezier(0.32, 0.72, 0, 1);
}
.docpro_testimonial_item.active .docpro_sketch_mask {
  width: 300px;
}
.docpro_sketch_img {
  width: 240px;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(0.96) translateZ(0);
  transition: filter 0.85s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.85s cubic-bezier(0.32, 0.72, 0, 1);
  flex-shrink: 0;
  mix-blend-mode: multiply;
}
.docpro_testimonial_item.active .docpro_sketch_img {
  filter: grayscale(0%);
  transform: scale(1) translateZ(0);
}
.docpro_testimonial_content {
  position: absolute;
  left: 300px;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.65s cubic-bezier(0.32, 0.72, 0, 1);
  padding-right: 40px;
}
.docpro_testimonial_item.active .docpro_testimonial_content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
  transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.3s,
              transform 0.65s cubic-bezier(0.32, 0.72, 0, 1) 0.25s;
}
.docpro_quote {
  font-size: 24px;
  letter-spacing: -0.019em;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text);
}
.docpro_author strong { display: block; font-size: 16px; letter-spacing: -0.011em; }
.docpro_author span { display: block; font-size: 14px; letter-spacing: -0.006em; color: var(--muted); }

@keyframes docproFadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes docproScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes docproWordReveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.docpro_quote .dw {
  display: inline-block;
  overflow: clip;
  vertical-align: top;
  padding-bottom: 2px;
}
.docpro_quote .dw > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
}
.docpro_testimonial_item.active .docpro_quote .dw > span {
  animation: docproWordReveal 0.5s cubic-bezier(0, 0, 0.58, 1) both;
}
.docpro_testimonial_item.active .docpro_author {
  opacity: 0;
  animation: docproFadeSlideUp 0.4s cubic-bezier(0, 0, 0.58, 1) both;
}

/* ===== Big analytics ===== */
.docpro_revenue_frame {
  --chart-offset: 20px;
  --chart-h: 460px;
  --chart-lw: 612px;
  --chart-rw: 618px;
  height: 900px;
  background: url('../images/revenue-chart-bg.webp') center / cover no-repeat;
  position: relative;
  contain: layout style paint;
}
.docpro_charting_glass {
  position: absolute;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(140, 140, 140, 0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  height: var(--chart-h);
}
.docpro_charting_glass.left {
  left: var(--chart-offset);
  bottom: var(--chart-offset);
  width: var(--chart-lw);
  max-width: 48%;
}
.docpro_charting_glass.right {
  right: var(--chart-offset);
  top: var(--chart-offset);
  width: var(--chart-rw);
  max-width: 52%;
}
.docpro_chart_header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px 0;
  flex-shrink: 0;
}
.docpro_chart_stat { display: flex; flex-direction: column; gap: 2px; }
.docpro_chart_value {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.022em;
  line-height: 1.15;
  white-space: nowrap;
}
.docpro_chart_label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.003em;
}
.docpro_chart_badge {
  font-size: 0.8125rem;
  letter-spacing: -0.003em;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  vertical-align: middle;
}
.docpro_chart_pill {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 0.8125rem;
  letter-spacing: -0.003em;
  white-space: nowrap;
  flex-shrink: 0;
}
.docpro_chart_body {
  display: flex;
  flex: 1;
  padding: 16px 20px 12px 0;
  min-height: 0;
}
.docpro_chart_yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 10px 28px 0;
  width: 48px;
  flex-shrink: 0;
  text-align: right;
}
.docpro_chart_yaxis span {
  font-size: 0.75rem;
  letter-spacing: 0.010em;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}
.docpro_chart_area {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}
.docpro_chart_grid {
  position: absolute;
  inset: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}
.docpro_grid_line {
  height: 0.5px;
  background: rgba(255,255,255,0.16);
}
.docpro_line_svg {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 0;
  position: relative;
  z-index: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.docpro_chart_xaxis {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 0;
  height: 28px;
  flex-shrink: 0;
}
.docpro_chart_xaxis span {
  font-size: 0.75rem;
  letter-spacing: 0.010em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  flex: 1;
}
.docpro_bar_chart {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  align-items: end;
  padding: 0 4% 28px;
  position: relative;
  z-index: 1;
}
.docpro_bar {
  width: 80%;
  justify-self: center;
  border-radius: 4px 4px 2px 2px;
  background: rgba(255,255,255,0.5);
  min-height: 3px;
}
/* ===== STACK ===== */
.docpro_platform_content--3col {
  display: grid;
  grid-template-columns: 1fr 0.6fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 32px 20px;
  @media (max-width: 980px) {
    gap: 16px;
    padding: 0 16px 40px;
  }
}
.docpro_platform_image {
  @media (max-width: 980px) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.docpro_stack {
  position: relative;
  width: 100%;
  aspect-ratio: 717 / 701;
  margin-bottom: -50px;
  @media screen and (max-width: 1260px) {
    max-width: 430px;
  }
  @media screen and (min-width: 1261px) {
    max-width: 532px;
  }
  @media (min-width: 981px) {
    margin-left: -70px;
  }
  @media (max-width: 430px) {
    max-width: 100%;
  }
}
.docpro_stack_layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.docpro_platform_title {
  @media (min-width: 981px) {
    margin-left: -120px;
  }
  @media (min-width: 1290px) {
    margin-left: -132px;
  }
}
.docpro_platform_body {
  @media (min-width: 981px) {
    margin-left: -60px;
  }
}
.docpro_platform_title_text {
  margin: 0;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.05;
  font-size: clamp(48px, 4.2vw, 60px);
  color: var(--text);
}
.docpro_platform_description {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: -0.014em;
  line-height: 1.9;
  opacity: 0.9;
}

/* ===== PLATFORMS ===== */
.docpro_platforms_inner {
  padding: 60px 0 0;
  text-align: center;
}

.docpro_platform_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.docpro_platform_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 14px 32px;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  background-color: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  transform: translateZ(0);
}
.docpro_platform_button:last-child {
  border-right: none;
}
.docpro_platform_button svg {
  flex-shrink: 0;
}
.docpro_platform_button svg:first-child {
  width: 18px;
  height: 18px;
  color: var(--gray-10);
}
.docpro_platform_button svg:last-child {
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -4.5px;
  opacity: 0;
  transition: opacity 0.1s ease;
  pointer-events: none;
}
.docpro_platform_button:hover svg:last-child {
  opacity: 1;
}
.docpro_platform_button:hover {
  background-color: var(--gray-2);
}
@media (max-width: 600px) {
  .docpro_btn_label {
    display: none;
  }
  .docpro_platform_button {
    padding: 12px;
  }
  .docpro_platform_button svg:first-child {
    width: 24px;
    height: 24px;
  }
  .docpro_platform_button svg:last-child {
    display: none;
  }
}

/* ===== CTA ===== */
.docpro_cta_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.docpro_platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  @media (max-width: 980px) {
    gap: 30px;
  }
  img {
    width: 140px;
    height: auto;
    @media (max-width: 980px) {
      width: 120px;
    }
  }
}
.docpro_cta_section_title {
  margin: 0 0 24px;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  font-size: clamp(48px, 4vw, 60px);
  color: var(--text);
  line-height: 1.15;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}
.docpro_cta_section_title.is-visible {
  animation: docproLineReveal 0.6s cubic-bezier(0, 0, 0.58, 1) both;
}
.cta_section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  contain: layout style paint;
}
.cta_canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#docpro_particles_static { z-index: 1; }
#docpro_particles_anim { z-index: 2; }

/* ===== Footer ===== */
.footer {
  border-bottom: none;
  position: sticky;
  bottom: 0;
  z-index: 0;
}
.docpro_section:not(.footer) {
  z-index: 1;
  background: var(--color-bg);
}
#contact {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  margin-left: -1px;
  margin-right: -1px;
}
.docpro_footer_navigations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.docpro_footer_navigations > *:not(:last-child) {
  border-right: 1px solid var(--border);
}
.docpro_footer_navigations > * {
  padding: var(--spacing-lg);
}
.docpro_footer_column h2,
.docpro_footer_column h3 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
}
.docpro_footer_column p {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.011em;
  color: var(--footer-link);
  opacity: .85;
  line-height: 1.6;
}
.docpro_footer_column a:not(.docpro_round_button) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin: 4px 0 4px -8px;
  border-radius: 8px;
  font-size: 16px;
  letter-spacing: -0.011em;
  color: var(--footer-link);
  opacity: .85;
}
.docpro_footer_column a svg {
  color: var(--gray-10);
}
.docpro_footer_column a:not(.docpro_round_button):hover {
  opacity: 1;
  background-color: var(--gray-a3);
}
.docpro_footer_bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.006em;
}
.docpro_footer_bottom div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.docpro_footer_divider {
  width: 1px;
  height: 14px;
  background: var(--gray-8);
}
.docpro_clock_icon {
  flex-shrink: 0;
  display: block;
}
.docpro_clock_hour, .docpro_clock_min {
  transform-origin: 7px 7px;
}
.docpro_watermark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 40px;
}
.docpro_watermark_glow {
  position: absolute;
  height: 116px;
  pointer-events: none;
  filter: blur(35px);
}
.docpro_watermark_glow--blue {
  width: 567px;
  border-radius: 567px;
  background: rgba(120, 166, 225, 0.30);
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
}
.docpro_watermark_glow--purple {
  width: 788px;
  border-radius: 788px;
  background: rgba(162, 161, 214, 0.30);
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}
.docpro-about-image-section {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  margin-right: -1px;
}
.docpro_contact_section {
  position: relative;
  z-index: 1;
  background: var(--color-bg);
  border-bottom: 1px solid var(--border);
  .docpro_footer_navigations {
    grid-template-columns: repeat(3, 1fr);
    @media (max-width: 560px) {
      grid-template-columns: repeat(1, 1fr);
      border-right: 0;
    }
    .docpro_footer_column {
      text-align: center;
      a:not(.docpro_round_button) {
        display: inline-flex;
        padding: 8px 20px;
      }
    }
  }
  @media (max-width: 560px) {
    .docpro_footer_navigations > *:not(:first-child) {
      border-top: 1px solid var(--border);
    }
    padding: 20px 0;
  }
}
.docpro_spacing_content {
  padding: 0 0 20px 20px;
  @media (max-width: 560px) {
    padding: 0 0 16px 10px;
  }
}
ul.docpro_features_heading_text {
  @media (max-width: 560px) {
    padding-left: 28px;
  }
}
p.docpro_features_heading_text.padding_left {
  padding-left: 20px;
}

/* ===== Link highlight (for legal pages) ===== */
.docpro_link_highlight {
  color: #0969da;
  font-weight: 600;
}
.docpro_link_highlight:hover {
  text-decoration: underline;
}

/* ===== Contact Demo Section ===== */
.docpro_demo_section{
  position: relative;
  z-index: 1;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(1200px 800px at 30% 20%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.55) 30%, rgba(255,255,255,0.0) 60%),
              linear-gradient(135deg, #bfefff 0%, #a7e6f4 35%, #c7e9ff 70%, #d5e9ff 100%);
}

.docpro_demo_section .docpro_contact_wrap{
  position: relative;
  padding: 0 60px;
}

.docpro_demo_section .docpro_contact_in{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--spacing-lg);
  align-items: start;
  position: relative;
  z-index: 2;
}
/* Form */
.docpro_demo_section .docpro_contact_form{
  display:flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 600px;
}
.docpro_form_group {
  width: 100%;
}

.docpro_demo_section .docpro_form_field{
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--gray-a6);
  background: rgba(255,255,255,0.92);
  padding: 0 18px;
  font-size: 16px;
  letter-spacing: -0.011em;
  outline: none;
  box-shadow: 0 1px 0 var(--gray-a1);
  box-sizing: border-box;
}

.docpro_demo_section .docpro_form_field:focus{
  border-color: var(--gray-a12);
  box-shadow: 0 0 0 4px var(--gray-a3);
  outline: none;
}

.docpro_demo_section #accept_term{
  transform: translateY(2px);
  margin-right: var(--spacing-xs);
}

.docpro_demo_section .docpro_contact_form label{
  font-size: 13px;
  letter-spacing: -0.003em;
  line-height: 1.5;
  color: var(--gray-11);
}

.docpro_demo_section .docpro_contact_form a{
  color: #0969da;
  text-decoration: none;
  font-weight: 600;
}
.docpro_demo_section .docpro_contact_form a:hover{
  text-decoration: underline;
}

/* Submit button */
.docpro_demo_section .docpro_submit_btn{
  height: 52px;
  border-radius: 40px;
  border: none;
  background: var(--gray-12);
  color: #fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  cursor:pointer;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.011em;
  transition: background-color var(--transition-normal);
  overflow: hidden;
}
.docpro_demo_section .docpro_submit_btn .btn-text {
  display: block;
  height: 20px;
  overflow: hidden;
}
.docpro_demo_section .docpro_submit_btn .btn-text span {
  display: block;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.docpro_demo_section .docpro_submit_btn:hover .btn-text span {
  transform: translateY(-100%);
}

.docpro_demo_section .docpro_submit_btn:hover{
  background-color: var(--gray-a12);
}

.docpro_demo_section .docpro_submit_btn:active{
  transform: translateY(1px);
}

/* Decorative plus */
.docpro_demo_section .docpro_contact_plus{
  position:absolute;
  right: 0;
  top: -60px;
  width: 520px;
  height: 520px;
  opacity: 1;
  filter: drop-shadow(0 18px 25px rgba(0,0,0,0.18));
  z-index: 1;
  pointer-events: none;
}

/* ===== Responsive: 1500px ===== */
@media (max-width: 1500px) {
  .docpro_page_container {
    max-width: 96%;
  }
}

/* ===== Responsive: 1300px ===== */
@media (max-width: 1300px) {
  .docpro_column_details {
    padding: 52px 40px;
  }
  .docpro_revenue_frame{
    --chart-h: 340px; --chart-lw: 412px; --chart-rw: 416px;
    height: 614px;
  }
  .docpro_chart_header { padding: 20px 22px 0; gap: 16px; }
  .docpro_chart_value { font-size: 1.5rem; letter-spacing: -0.019em; }
  .docpro_chart_label { font-size: 0.625rem; letter-spacing: 0.010em; }
  .docpro_chart_yaxis { width: 40px; padding-right: 8px; }
  .docpro_chart_yaxis span { font-size: 0.5625rem; letter-spacing: 0.016em; }
  .docpro_chart_xaxis span { font-size: 0.5625rem; letter-spacing: 0.016em; }
  .docpro_chart_pill { font-size: 0.6875rem; letter-spacing: 0.005em; padding: 5px 10px; }
  .docpro_footer_navigations > * {
    padding: 40px 25px;
  }
  .docpro_demo_section .docpro_contact_in{
    grid-template-columns: 1fr 300px;
    gap: 0;
  }
  .docpro_demo_section .docpro_contact_plus {
    width: 420px;
    height: 420px;
  }
}

/* ===== Responsive: 980px ===== */
@media (max-width: 980px) {
  .docpro_round_button {
    display: flex;
    width: 100%;
    padding: 16px 24px;
  }
  .docpro_page_container {
    max-width: 98%;
  }
  #contact {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
  }
  .docpro_header_navigation {
    height: 60px;
    padding: 0 14px 0 19px;
  }
  .docpro_nav_links {
    display: none;
  }
  .docpro_toggle_button {
    display: inline-flex;
  }
  .docpro_toggle_mobile_menu {
    display: block;
    top: 60px;
  }
  .docpro_heading_title {
    padding: 48px 20px 52px;
  }
  .docpro_about_section, .docpro_column_details {
    padding: 52px 20px;
  }
  .docpro_normal_text, .docpro_features_heading_text, .docpro_bullet_points {
    font-size: 16px;
    letter-spacing: -0.011em;
  }
  .desktop-br {
    display: none;
  }
  .docpro_two_column, .docpro_platform_content, .docpro_platform_content--3col {
    grid-template-columns: 1fr;
  }
  .docpro_two_column > * {
    order: 0;
  }
  .docpro_two_column.reverse > :first-child {
    order: 2;
  }
  .docpro_two_column.reverse > :last-child {
    order: 1;
  }
  .docpro_bullet_points {
    gap: 12px;
  }
  .docpro_revenue_frame{
    --chart-offset: 12px; --chart-h: 260px; --chart-lw: 332px; --chart-rw: 324px;
    height: 464px;
  }
  .docpro_chart_header { padding: 14px 16px 0; gap: 12px; }
  .docpro_chart_value { font-size: 1.25rem; letter-spacing: -0.017em; }
  .docpro_chart_label { font-size: 0.5625rem; letter-spacing: 0.016em; }
  .docpro_chart_badge { font-size: 0.625rem; letter-spacing: 0.010em; }
  .docpro_chart_yaxis { width: 34px; padding-right: 6px; }
  .docpro_chart_yaxis span { font-size: 0.5rem; letter-spacing: 0.024em; }
  .docpro_chart_xaxis span { font-size: 0.5rem; letter-spacing: 0.024em; }
  .docpro_chart_pill { font-size: 0.625rem; letter-spacing: 0.010em; padding: 4px 8px; }
  .docpro_chart_body { padding-top: 10px; }
  .docpro_mini_box {
    display: none;
  }
}

/* ===== Responsive: 900px (testimonials + demo) ===== */
@media (max-width: 900px){
  .docpro_testimonial_wrapper{
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }
  .docpro_testimonial_item{
    width: 100%;
    min-width: 0;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
    transition: none;
  }
  .docpro_testimonial_wrapper .docpro_testimonial_item:last-child{
    border-bottom: none;
  }
  .docpro_testimonial_item.active{
    order: -1 !important;
    flex-direction: column;
    align-items: flex-start;
  }
  .docpro_testimonial_wrapper .docpro_testimonial_item.active{
    border-bottom: 1px solid var(--border);
  }
  .docpro_testimonial_item:not(.active){
    flex-direction: row;
    align-items: center;
    padding: 14px 24px;
    cursor: pointer;
    position: relative;
  }
  .docpro_testimonial_item:not(.active)::after{
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b6bbce' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5v14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .docpro_testimonial_item:not(.active) .docpro_testimonial_content {
    display: none;
  }
  .docpro_sketch_mask{
    width: 80px;
    height: 104px;
    min-width: 80px;
    flex-shrink: 0;
  }
  .docpro_sketch_img{
    width: 100%;
    height: 100%;
  }
  .docpro_testimonial_item.active .docpro_sketch_mask{
    width: auto;
    height: auto;
    padding: 20px 20px 0;
  }
  .docpro_testimonial_item.active .docpro_sketch_img{
    width: 180px;
    height: 240px;
    background-position: bottom center;
    animation: docproScaleIn 0.6s cubic-bezier(0, 0, 0.58, 1) both;
  }
  .docpro_testimonial_content{
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    transform: translateY(16px) !important;
    margin-left: 0 !important;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1),
                transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
    box-sizing: border-box;
  }
  .docpro_testimonial_item.active .docpro_testimonial_content{
    padding: 4px 20px 28px;
    transform: translateY(0) !important;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1) 0.2s,
                transform 0.55s cubic-bezier(0.32, 0.72, 0, 1) 0.15s;
  }
  .docpro_quote{
    font-size: 22px;
    letter-spacing: -0.018em;
    line-height: 1.4;
    margin-top: 0;
    font-family: "Signifier", Georgia, serif;
  }

  .docpro_demo_section{ padding: 48px 0; }
  .docpro_demo_section .docpro_contact_wrap{
    padding: 0 28px;
  }
  .docpro_demo_section .docpro_contact_in{
    grid-template-columns: 1fr;
    gap: 0;
  }
  .docpro_demo_section .docpro_contact_plus{
    width: 320px;
    height: 320px;
    right: 0;
    top: -40px;
    opacity: 0.55;
  }
  .docpro_contact_form {
    max-width: 100% !important;
  }
}

/* ===== Responsive: 560px ===== */
@media (max-width: 560px) {
  .docpro_page_container {
    max-width: 100%;
    border-left: none;
    border-right: none;
  }
  .docpro_header_navigation {
    height: 55px;
    padding: 0 8px 0 12px;
  }
  .docpro_toggle_mobile_menu {
    top: 55px;
  }
  .docpro_heading_title {
    padding: 44px 16px 48px;
  }
  .docpro_about_section, .docpro_column_details {
    padding: 48px 16px;
  }
  .docpro_revenue_frame{
    --chart-offset: 8px; --chart-h: 136px; --chart-lw: 172px; --chart-rw: 160px;
    height: 242px;
  }
  .docpro_chart_header { padding: 8px 10px 0; gap: 6px; }
  .docpro_chart_value { font-size: 0.75rem; letter-spacing: 0em; }
  .docpro_chart_label { font-size: 0.375rem; letter-spacing: 0.043em; }
  .docpro_chart_badge { font-size: 0.4375rem; letter-spacing: 0.032em; }
  .docpro_chart_yaxis { width: 22px; padding-right: 4px; }
  .docpro_chart_yaxis span { font-size: 0.375rem; letter-spacing: 0.043em; }
  .docpro_chart_xaxis span { font-size: 0.375rem; letter-spacing: 0.043em; }
  .docpro_chart_xaxis { height: 16px; padding-top: 4px; }
  .docpro_chart_pill { display: none; }
  .docpro_chart_body { padding-top: 4px; }
  .docpro_bar_chart { padding-bottom: 16px; }

  .docpro_footer_navigations {
    grid-template-columns: repeat(2, 1fr);
  }
  .docpro_footer_navigations > * {
    border-right: none;
    padding: 30px 16px 20px;
  }
  .docpro_footer_column.border {
    border-top: 1px solid var(--border);
  }
}

/* ===== Responsive: 520px (testimonials) ===== */
@media (max-width: 520px){
  .docpro_testimonial_item:not(.active){ padding: 12px 18px; }
  .docpro_testimonial_item.active .docpro_sketch_mask{
    padding: 16px 16px 0;
  }
  .docpro_testimonial_item.active .docpro_sketch_img{
    width: 160px;
    height: 210px;
  }
  .docpro_testimonial_item.active .docpro_testimonial_content{
    padding: 4px 16px 24px;
  }
  .docpro_quote{ font-size: 18px; letter-spacing: -0.014em; }

  .docpro_demo_section .docpro_contact_wrap{
    padding: 0 18px;
  }
  .docpro_demo_section .docpro_form_field{ height: 52px; }
  .docpro_demo_section .docpro_contact_plus{
    width: 280px;
    height: 280px;
    right: 0;
    top: -40px;
    opacity: 0.5;
  }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .docpro_heading_title .line,
  .docpro_cta_section_title,
  .docpro_stack.is-running,
  .docpro_stack.is-running .docpro_stack_layer,
  .is-revealing .docpro_platform_title_text .line {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }
}

/* ===== Stack reveal — Apple-style fluid entrance ===== */
.docpro_stack.is-running .docpro_stack_layer {
  opacity: 0;
  transform: translate3d(0, calc(var(--from, 28px) * -1), 0);
  will-change: transform, opacity;
  animation: docproReveal var(--dur, 600ms) cubic-bezier(0, 0, 0.5, 1) both;
  animation-delay: var(--delay, 0ms);
}
@keyframes docproReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, calc(var(--from, 28px) * -1), 0);
  }
  40% { opacity: 0.85; }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.docpro_stack.is-running .docpro_stack_layer.layer_1,
.docpro_stack.is-running .docpro_stack_layer.layer_5 {
  animation: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.docpro_stack.is-running .docpro_stack_layer.layer_2 {
  --delay: 80ms;
  --dur: 550ms;
  --from: 24px;
}
.docpro_stack.is-running .docpro_stack_layer.layer_3 {
  --delay: 160ms;
  --dur: 600ms;
  --from: 32px;
}
.docpro_stack.is-running .docpro_stack_layer.layer_4 {
  --delay: 250ms;
  --dur: 650ms;
  --from: 40px;
}
.docpro_stack.is-running .docpro_stack_layer.layer_6 {
  --delay: 350ms;
  --dur: 700ms;
  --from: 48px;
}

/* Platform title line-by-line reveal */
.docpro_platform_title_text .line {
  display: block;
  opacity: 1;
  transform: translateY(0);
  @media (max-width: 600px) {
    display: inline;
  }
}
.is-revealing .docpro_platform_title_text .line {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  animation: docproLineReveal var(--ldur, 550ms) cubic-bezier(0, 0, 0.5, 1) both;
}
.is-revealing .docpro_platform_title_text .line:nth-child(4) { animation-delay: 80ms; --ldur: 550ms; }
.is-revealing .docpro_platform_title_text .line:nth-child(3) { animation-delay: 160ms; --ldur: 600ms; }
.is-revealing .docpro_platform_title_text .line:nth-child(2) { animation-delay: 250ms; --ldur: 650ms; }
.is-revealing .docpro_platform_title_text .line:nth-child(1) { animation-delay: 350ms; --ldur: 700ms; }
@keyframes docproLineReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  40% { opacity: 0.85; }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===== Bullet point icons ===== */
.docpro_bullet_points li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 3px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'>\
    <path d='M14.2456 8.06695C14.3066 8.1279 14.355 8.20028 14.388 8.27995C14.421 8.35961 14.438 8.44501 14.438 8.53125C14.438 8.61749 14.421 8.70289 14.388 8.78255C14.355 8.86222 14.3066 8.9346 14.2456 8.99555L9.6518 13.5893C9.59085 13.6503 9.51848 13.6987 9.43881 13.7317C9.35914 13.7648 9.27375 13.7818 9.1875 13.7818C9.10126 13.7818 9.01587 13.7648 8.9362 13.7317C8.85653 13.6987 8.78415 13.6503 8.72321 13.5893L6.75446 11.6205C6.63132 11.4974 6.56214 11.3304 6.56214 11.1562C6.56214 10.9821 6.63132 10.8151 6.75446 10.692C6.8776 10.5688 7.04461 10.4996 7.21875 10.4996C7.3929 10.4996 7.55991 10.5688 7.68305 10.692L9.1875 12.1972L13.317 8.06695C13.3779 8.00594 13.4503 7.95753 13.5299 7.92451C13.6096 7.89148 13.695 7.87448 13.7813 7.87448C13.8675 7.87448 13.9529 7.89148 14.0326 7.92451C14.1122 7.95753 14.1846 8.00594 14.2456 8.06695ZM19.0313 10.5C19.0313 12.1873 18.5309 13.8368 17.5935 15.2397C16.6561 16.6427 15.3237 17.7361 13.7648 18.3818C12.2059 19.0276 10.4905 19.1965 8.83564 18.8673C7.18074 18.5381 5.66062 17.7256 4.4675 16.5325C3.27438 15.3394 2.46186 13.8193 2.13268 12.1644C1.8035 10.5095 1.97245 8.79411 2.61816 7.23523C3.26387 5.67635 4.35734 4.34395 5.7603 3.40652C7.16325 2.4691 8.81268 1.96875 10.5 1.96875C12.7619 1.97114 14.9305 2.87073 16.5299 4.47013C18.1293 6.06954 19.0289 8.2381 19.0313 10.5ZM17.7188 10.5C17.7188 9.07227 17.2954 7.67659 16.5022 6.48948C15.709 5.30236 14.5816 4.37711 13.2625 3.83074C11.9434 3.28437 10.492 3.14142 9.0917 3.41996C7.6914 3.69849 6.40514 4.38601 5.39558 5.39557C4.38602 6.40513 3.6985 7.69139 3.41996 9.09169C3.14142 10.492 3.28438 11.9434 3.83075 13.2625C4.37712 14.5816 5.30236 15.709 6.48948 16.5022C7.6766 17.2954 9.07227 17.7188 10.5 17.7188C12.4139 17.7166 14.2487 16.9553 15.602 15.602C16.9553 14.2487 17.7166 12.4139 17.7188 10.5Z' fill='%23B6BBCE'/>\
  </svg>");
}

/* ===== Print Styles ===== */
@media print {
  .docpro_header,
  .docpro_footer_navigations,
  .docpro_watermark,
  .docpro_toggle_button,
  .docpro_toggle_mobile_menu,
  .docpro_heading_video,
  .docpro_mini_box,
  .docpro_demo_section,
  .docpro_contact_section,
  .cta_section,
  video,
  .docpro_skip_link,
  noscript {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  .docpro_page_container {
    max-width: 100%;
    border: none;
  }

  .docpro_section {
    border: none;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: var(--gray-10);
  }

  .docpro_footer_column a[href]::after {
    content: none;
  }
}
