/* ===== Local fonts ===== */
@font-face{
  font-family: "Sohne";
  src: url("../fonts/soehne-web-buch.woff2") format("woff2"),
       url("../fonts/Sohne-Buch.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Sohne";
  src: url("../fonts/Sohne-Halbfett.woff2") format("woff2"),
       url("../fonts/Sohne-Halbfett.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Signifier";
  src: url("../fonts/signifier-web-regular.woff2") format("woff2"),
       url("../fonts/Signifier-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: "Signifier";
  src: url("../fonts/signifier-web-regular-italic.woff2") format("woff2"),
       url("../fonts/Signifier-RegularItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ===== Design Tokens ===== */
:root{
  --color-bg: #fff;
  --color-surface: #fff;
  --border: #e9edf3;
  --gridV: rgba(16,18,24,0.035);
  --gridH: rgba(16,18,24,0.020);

  --dark: #000;
  --text: #0b0d12;
  --muted: #6b7280;

  --container: 1440px;
  --gutter: 26px;

  --shadow: 0 18px 60px rgba(0,0,0,.10);
  --shadow2: 0 12px 44px rgba(0,0,0,.08);
  --shadow3: 0px 8px 6px rgba(0,0,0,0.05);

  --r: 34px;
  --rCard: 20px;

  --kickerYellow: #FFCAA7;
  --kickerMint: #A7FFCF;
  --kickerBlue: #A7C6FF;
  --kickerPurple: #EAD7F7;

  /* Spacing scale */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* Transition tokens */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.85s cubic-bezier(0.32, 0.72, 0, 1);

  /* Z-index scale */
  --z-header: 50;
  --z-dropdown: 60;
  --z-modal: 100;
  --z-toast: 200;

  /* Header backdrop */
  --header-bg: rgba(255,255,255,.94);
  --header-backdrop: blur(12px);

  /* Nav link colors */
  --nav-link: rgba(0, 0, 0, 0.80);
  --nav-link-hover: rgba(0, 0, 0, 1);

  /* Footer link colors */
  --footer-link: #2b3342;
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  scroll-behavior: smooth;
}
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;
}

/* ===== 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;
  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;
  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);
}
.docpro_header_navigation {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
}
.docpro_logo img {
  height: 24px;
  width: auto;
}
.docpro_logo:hover {
  opacity: 0.8;
}
.docpro_nav_links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  color: var(--nav-link);
  font-weight: 400;
}
.docpro_nav_links a {
  position: relative;
  transition: opacity var(--transition-fast);
  color: var(--nav-link);
}
.docpro_nav_links a:hover {
  color: var(--nav-link-hover);
}
.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 16px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  line-height: 20px;
  border: none;
}
.docpro_outline_button {
  background: var(--color-surface);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06), 0 2px 4px 0 rgba(0, 0, 0, 0.04);
}
.docpro_outline_button:hover {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.06), 0 4px 8px 0 rgba(0, 0, 0, 0.04);
}
.docpro_dark_button {
  background: #000;
  color: #fff !important;
}
.docpro_dark_button:hover {
  background: #222;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== Mobile Menu ===== */
.docpro_toggle_button {
  display: none;
  width: 40px;
  height: 32px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
}
.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);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 16px;
  transform-origin: top;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events:none;
  transition: transform .24s ease, opacity .24s ease;
}
.docpro_mobile_link {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  color: var(--nav-link);
}
.docpro_mobile_link:hover {
  color: var(--nav-link-hover);
}
.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_hero_about {
  position: relative;
}
.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.03em;
  line-height: 110%;
  font-size: clamp(48px, 5.5vw, 80px);
  color: var(--dark);
}
.docpro_italic_font {
  font-style: italic;
}
.docpro_heading_video {
  position: relative;
  overflow: hidden;
}
.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 {
  width: 12px;
  height: 12px;
  background: var(--kickerBlue);
  flex-shrink: 0;
}
.docpro_title_yellow_shape {
  width: 12px;
  height: 12px;
  background: var(--kickerYellow);
  flex-shrink: 0;
}
.docpro_title_mint_shape {
  width: 12px;
  height: 12px;
  background: var(--kickerMint);
  flex-shrink: 0;
}
.docpro_title_purple_shape {
  width: 12px;
  height: 12px;
  background: var(--kickerPurple);
  flex-shrink: 0;
}
.docpro_normal_text {
  margin: 0;
  color: var(--dark);
  font-size: 24px;
  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;
}
.b1 {
  left: -60px;
  top: 48.5%;
}
.b2 {
  left: -1px;
  top: 24%;
}
.b3 {
  left: 58px;
  top: 48.5%;
}

/* ===== Feature blocks ===== */
.docpro_two_column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items:center;
}
.docpro_column_details {
  padding: 62px;
}
.docpro_features_heading {
  margin: 6px 0 28px;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(32px, 3.5vw, 64px);
  color: var(--dark);
}
.docpro_features_heading_text {
  margin: 0 0 24px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
}
.docpro_bullet_points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  font-size: 20px;
  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: rgba(0, 0, 0, 0.02);
}
.docpro_testimonial_item:not(.active):hover .docpro_sketch_img {
  filter: grayscale(30%);
  transform: scale(1.05);
}
.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(1) 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;
  will-change: transform, filter;
}
.docpro_testimonial_item.active .docpro_sketch_img {
  filter: grayscale(0%);
  transform: scale(1.04) translateZ(0);
}
.docpro_testimonial_content {
  position: absolute;
  left: 300px;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1),
              transform 0.65s cubic-bezier(0.32, 0.72, 0, 1),
              visibility 0s 0.65s;
  padding-right: 40px;
}
.docpro_testimonial_item.active .docpro_testimonial_content {
  opacity: 1;
  visibility: visible;
  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,
              visibility 0s 0s;
}
.docpro_quote {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text);
}
.docpro_author strong { display: block; font-size: 16px; }
.docpro_author span { display: block; font-size: 14px; color: var(--muted); }

/* ===== Big analytics ===== */
.docpro_revenue_frame {
  height: 900px;
  background: var(--bg) center / cover no-repeat;
  position: relative;
}
.docpro_charting_glass {
  position: absolute;
  border-radius: 20px;
  padding: 0px;
  border: none;
  outline: 0.5px solid rgba(255, 255, 255, 0.24);
  outline-offset: 0px;
  background: rgba(140, 140, 140, 0.10);
  box-shadow: 0 -1px 1px 0 rgba(255, 255, 255, 0.10) inset, 0 1px 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 6px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  overflow: hidden;
}
.docpro_charting_glass.left {
  left: 20px;
  bottom: 12px;
  width: 612px;
  max-width: 48%;
  height: 460px;
}
.docpro_charting_glass.right {
  right: 20px;
  top: 28px;
  width: 618px;
  max-width: 52%;
  height: 460px;
}
.docpro_charting_glass img { display: block; width: 100%; height: auto; }
.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: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}
.docpro_chart_label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.docpro_chart_badge {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  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: 12px;
  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 0 28px;
  width: 48px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 10px;
}
.docpro_chart_yaxis span {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  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;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.docpro_grid_line {
  height: 0.5px;
  background: rgba(255,255,255,0.16);
}
.docpro_grid_line:last-child { background: rgba(255,255,255,0.16); }
.docpro_line_svg {
  flex: 1;
  display: block;
  width: 100%;
  min-height: 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: 10px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  flex: 1;
}
.docpro_bar_chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6%;
  padding: 0 4% 28px;
  position: relative;
  z-index: 1;
}
.docpro_bar {
  flex: 1;
  border-radius: 4px 4px 2px 2px;
  background: rgba(255,255,255,0.32);
  min-height: 3px;
}
.docpro_charting_glass { display: flex; flex-direction: column; }

/* ===== 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: 30px;
    padding: 0 16px 40px;
  }
}
.docpro_platform_image {
  @media (max-width: 980px) {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.docpro_platform_image img {
  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_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.03em;
  line-height: 1.05;
  font-size: clamp(42px, 4.2vw, 62px);
  color: var(--text);
}
.docpro_platform_description {
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.9;
  opacity: 0.9;
}
.muted{
  color: var(--muted);
}


/* ===== CTA ===== */
.docpro_cta_inner {
  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: 20px;
  @media (max-width: 980px) {
    gap: 30px;
  }
  img {
    max-width: 140px;
    @media (max-width: 980px) {
      max-width: 90px;
    }
  }
}
.docpro_cta_section_title {
  margin: 0 0 24px;
  font-family: "Signifier", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--text);
  line-height: 1.15;
}
.cta_section {
  background: var(--bg) center bottom no-repeat;
  position: relative;
  overflow: hidden;
}
#docpro_particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ===== Footer ===== */
.footer {
  border-bottom: none;
}
.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 h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 700;
}
.docpro_footer_column a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  color: var(--footer-link);
  opacity: .85;
  transition: opacity var(--transition-fast);
}
.docpro_footer_column a:hover {
  opacity: 1;
}
.docpro_footer_bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.docpro_footer_bottom div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.docpro_clock_icon {
  flex-shrink: 0;
  display: block;
}
.docpro_clock_hour, .docpro_clock_min {
  transform-origin: 7px 7px;
}
.docpro_watermark {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 0;
}
.docpro-about-image-section {
  margin-right: -1px;
}
.docpro_contact_section {
  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 {
        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: rgba(0,120,150,0.95);
  font-weight: 600;
}
.docpro_link_highlight:hover {
  text-decoration: underline;
}

/* ===== Contact Demo Section ===== */
.docpro_demo_section{
  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;
}
.docpro_demo_section .docpro_demo_subtitle{
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.35;
  margin: 0;
  color: rgba(11,16,32,0.75);
  margin-bottom: 25px;
}

/* 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 rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.92);
  padding: 0 18px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  box-sizing: border-box;
}

.docpro_demo_section .docpro_form_field:focus{
  border-color: rgba(0,120,150,0.55);
  box-shadow: 0 0 0 4px rgba(0,180,210,0.14);
  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;
  line-height: 1.5;
  color: rgba(11,16,32,0.70);
}

.docpro_demo_section .docpro_contact_form a{
  color: rgba(0,120,150,0.95);
  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: 56px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #0d7388;
  color: #fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 12px;
  cursor:pointer;
  box-shadow: 0 10px 25px rgba(13,115,136,0.25);
  margin-top: 10px;
  font-size: 20px;
}

.docpro_demo_section .docpro_submit_btn:hover{
  filter: brightness(0.98);
}

.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{
    height: 614px;
  }
  .docpro_charting_glass.left {
    left: 20px;
    bottom: 12px;
    width: 412px;
    height: 340px;
  }
  .docpro_charting_glass.right {
    right: 20px;
    top: 28px;
    width: 416px;
    height: 340px;
  }
  .docpro_chart_header { padding: 20px 22px 0; gap: 16px; }
  .docpro_chart_value { font-size: 24px; }
  .docpro_chart_label { font-size: 10px; }
  .docpro_chart_yaxis { width: 40px; padding-right: 8px; }
  .docpro_chart_yaxis span { font-size: 9px; }
  .docpro_chart_xaxis span { font-size: 9px; }
  .docpro_chart_pill { font-size: 11px; 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_page_container {
    max-width: 98%;
  }
  .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_header {
    position: sticky;
  }
  .docpro_heading_title {
    padding: 48px 20px 52px;
  }
  .docpro_about_section, .docpro_column_details, .docpro_cta_inner {
    padding: 52px 20px;
  }
  .docpro_normal_text, .docpro_features_heading_text, .docpro_bullet_points {
    font-size: 16px;
  }
  .docpro_two_column, .docpro_platform_content {
    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{
    height: 464px;
  }
  .docpro_charting_glass.left {
    left: 12px;
    bottom: 4px;
    width: 332px;
    height: 260px;
  }
  .docpro_charting_glass.right {
    right: 12px;
    top: 16px;
    width: 324px;
    height: 260px;
  }
  .docpro_chart_header { padding: 14px 16px 0; gap: 12px; }
  .docpro_chart_value { font-size: 20px; }
  .docpro_chart_label { font-size: 9px; }
  .docpro_chart_badge { font-size: 10px; }
  .docpro_chart_yaxis { width: 34px; padding-right: 6px; }
  .docpro_chart_yaxis span { font-size: 8px; }
  .docpro_chart_xaxis span { font-size: 8px; }
  .docpro_chart_pill { font-size: 10px; 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{
    position: relative;
    height: 448px;
    overflow: hidden;
  }
  .docpro_testimonial_item{
    position: static;
    width: 72px;
    min-width: 72px;
    flex-direction: column;
    align-items: stretch;
    border-right: 1px solid var(--border);
    background: var(--color-surface);
    height: 260px;
    &#t2 .docpro_testimonial_content{
      margin-left: -72px;
    }
    &#t3 .docpro_testimonial_content{
      margin-left: -144px;
    }
  }
  .docpro_sketch_mask{
    width: 72px;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
  }

  .docpro_sketch_img{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .docpro_testimonial_item.active .docpro_sketch_mask{
    width: 100%;
    height: 260px;
    padding: 30px 0;
  }
  .docpro_testimonial_content{
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 260px !important;
    width: 100vw !important;
    max-width: none !important;
    transform: none !important;
    padding: 22px 18px 26px 18px;
    border-top: 1px solid var(--border);
    background: var(--color-surface);
    z-index: 10;
    box-sizing: border-box;
  }
  .docpro_testimonial_item:not(.active) .docpro_testimonial_content{
    display: none !important;
  }
  .docpro_quote{
    font-size: 18px;
    line-height: 1.35;
    margin-top: 0;
  }

  .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 {
    display: block;
    top: 55px;
  }
  .docpro_heading_title {
    padding: 44px 16px 48px;
  }
  .docpro_about_section, .docpro_column_details, .docpro_cta_inner {
    padding: 48px 16px;
  }
  .docpro_revenue_frame{
    height: 242px;
  }
  .docpro_charting_glass.left {
    left: 8px;
    bottom: 0px;
    width: 172px;
    height: 136px;
  }
  .docpro_charting_glass.right {
    right: 8px;
    top: 12px;
    width: 160px;
    height: 136px;
  }
  .docpro_chart_header { padding: 8px 10px 0; gap: 6px; }
  .docpro_chart_value { font-size: 12px; }
  .docpro_chart_label { font-size: 6px; }
  .docpro_chart_badge { font-size: 7px; }
  .docpro_chart_yaxis { width: 22px; padding-right: 4px; }
  .docpro_chart_yaxis span { font-size: 6px; }
  .docpro_chart_xaxis span { font-size: 6px; }
  .docpro_chart_xaxis { height: 16px; padding-top: 4px; }
  .docpro_chart_pill { display: none; }
  .docpro_chart_body { padding-top: 4px; }
  .docpro_bar_chart { gap: 2%; 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_wrapper{ height: 432px; }
  .docpro_testimonial_item{
    width: 64px;
    min-width: 64px;
    height: 240px;
    &#t2 .docpro_testimonial_content{
      margin-left: -64px;
    }
    &#t3 .docpro_testimonial_content{
      margin-left: -128px;
    }
  }
  .docpro_sketch_mask{ width: 64px; height: 240px; }
  .docpro_testimonial_item.active .docpro_sketch_mask{ height: 240px; padding: 30px 0; }
  .docpro_testimonial_content{ top: 240px !important; }
  .docpro_quote{ font-size: 16px; margin-top: 0; }

  .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;
  }
}

/* ===== 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='%239F9F9F'/>\
  </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: #666;
  }

  .docpro_footer_column a[href]::after {
    content: none;
  }
}
