/*
  Coherta shared stylesheet
  Source: coherta_forside_opdateret (3).html
  Rule: edit shared selectors here only when changing the global design system.
*/

:root {
      --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      --bg: #ffffff;
      --surface: #f4f7fb;
      --text: #223e67;
      --muted: #8e9cb0;
      --brand: #3f6df6;
      --brand-dark: #2f5ce6;
      --border: #dfe4ea;
      --shadow: 0 18px 50px rgba(31, 53, 84, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: var(--font-main);
      color: var(--text);
      background: var(--bg);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .site-header {
      height: 64px;
      background: #ffffff;
      border-top: 0;
      border-bottom: 1px solid #dfe3e8;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .header-inner {
      width: 100%;
      height: 100%;
      max-width: 1824px;
      margin: 0 auto;
      padding: 0 clamp(40px, 6vw, 84px);
      display: flex;
      align-items: center;
      gap: clamp(22px, 2.6vw, 48px);
      transform: translateY(2px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
      color: var(--text);
      line-height: 1;
    }

    .brand-mark {
      width: 27px;
      height: 27px;
      flex: 0 0 27px;
      border-radius: 6px;
      background: var(--brand);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.06em;
    }

    .brand-name {
      font-size: clamp(21px, 1.5vw, 23px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.045em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(24px, 2.25vw, 48px);
      flex: 1 1 auto;
      min-width: 0;
      height: 100%;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      color: var(--text);
      font-size: clamp(13.5px, 0.92vw, 14.5px);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.012em;
    }

    .nav-link.has-chevron::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 1.5px solid var(--muted);
      border-bottom: 1.5px solid var(--muted);
      transform: rotate(45deg) translateY(-1px);
      display: inline-block;
    }

    .nav-item {
      display: inline-flex;
      align-items: center;
      height: 100%;
    }

    .dropdown-panel {
      position: absolute;
      top: calc(100% - 1px);
      left: clamp(20px, 3vw, 42px);
      right: clamp(20px, 3vw, 42px);
      z-index: 30;
      padding: 20px 24px 22px;
      background: #ffffff;
      border: 1px solid #dfe3e8;
      border-radius: 10px;
      box-shadow: 0 12px 28px rgba(31, 53, 84, 0.10);
      opacity: 0;
      visibility: hidden;
      transform: none;
      pointer-events: none;
      transition: opacity 90ms ease, visibility 90ms ease;
      will-change: opacity;
      contain: layout paint;
    }

    .has-dropdown:hover .dropdown-panel,
    .has-dropdown:focus-within .dropdown-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-panel-small {
      max-width: 1460px;
      margin: 0 auto;
    }

    .dropdown-grid {
      display: grid;
      gap: clamp(22px, 3.2vw, 44px);
    }

    .dropdown-grid-three {
      grid-template-columns: repeat(3, minmax(250px, 1fr));
      max-width: 1180px;
    }

    .dropdown-grid-two {
      grid-template-columns: repeat(2, minmax(300px, 360px));
      max-width: 760px;
      column-gap: 36px;
      justify-content: start;
    }

    .dropdown-column {
      min-width: 0;
    }

    .dropdown-heading {
      margin-bottom: 7px;
      color: var(--text);
      font-size: 12px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0.035em;
      text-transform: uppercase;
    }

    .dropdown-copy {
      max-width: 340px;
      margin: 0 0 13px;
      color: #567097;
      font-size: 12.5px;
      line-height: 1.34;
      font-weight: 500;
      letter-spacing: -0.012em;
    }

    .dropdown-link {
      min-height: 32px;
      margin: 0 0 4px;
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--text);
      font-size: 13.4px;
      line-height: 1.1;
      font-weight: 600;
      letter-spacing: -0.018em;
      white-space: nowrap;
      padding: 6px 32px 6px 7px;
      margin-left: -7px;
      border-radius: 9px;
      border: 1px solid transparent;
      position: relative;
      transition: background 100ms ease, border-color 100ms ease;
    }

    .dropdown-link::after {
      content: "→";
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%) translateX(-4px);
      color: #98a4b3;
      font-size: 21px;
      line-height: 1;
      opacity: 0;
      transition: opacity 150ms ease, transform 150ms ease;
    }

    .dropdown-link:hover,
    .dropdown-link:focus-visible {
      background: #fff;
      border-color: #e7ebf1;
      box-shadow: none;
      transform: none;
    }

    .dropdown-link:hover::after,
    .dropdown-link:focus-visible::after {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    .dropdown-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      border: 1px solid #e5e8ee;
      border-radius: 8px;
      background: #ffffff;
      display: grid;
      place-items: center;
      color: var(--text);
      font-size: 11px;
      font-weight: 800;
      box-shadow: none;
    }

    .dropdown-icon-linkedin {
      border-color: #0a66c2;
      background: #0a66c2;
      color: #ffffff;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: -0.04em;
    }

    .dropdown-badge {
      margin-left: -2px;
      padding: 3px 6px;
      border-radius: 7px;
      background: #e8799a;
      color: #fff;
      font-size: 10.5px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(10px, 1vw, 14px);
      flex: 0 0 auto;
      margin-left: auto;
    }

    .login-link {
      display: inline-flex;
      align-items: center;
      color: var(--text);
      font-size: clamp(13.5px, 0.92vw, 14.5px);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.012em;
      margin-right: clamp(6px, 1vw, 18px);
      white-space: nowrap;
    }

    .btn {
      height: clamp(40px, 3vw, 45px);
      padding: 0 clamp(13px, 1.2vw, 17px);
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      font-size: clamp(13.5px, 0.92vw, 14.5px);
      font-weight: 500;
      line-height: 1;
      letter-spacing: -0.012em;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-outline {
      color: var(--text);
      border: 1px solid #e1e5eb;
      background: #fff;
      box-shadow: 0 8px 20px rgba(31, 53, 84, 0.04);
      overflow: hidden;
    }

    .btn-label {
      position: relative;
      z-index: 2;
    }

    .btn-demo {
      border-color: #e1e5eb;
    }

    .demo-snake {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      pointer-events: none;
    }

    .demo-snake-line {
      fill: none;
      vector-effect: non-scaling-stroke;
    }

    .demo-snake-line {
      stroke: var(--brand);
      stroke-width: 2;
      stroke-linecap: round;
      stroke-dasharray: 46 346;
      animation: demo-snake-loop 3.7s linear infinite;
      filter: none;
    }

    @keyframes demo-snake-loop {
      to {
        stroke-dashoffset: -392;
      }
    }

    .btn-primary {
      color: #fff;
      background: var(--brand);
      border: 1px solid var(--brand);
      min-width: clamp(108px, 9vw, 130px);
      box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
    }

    .hero-wrap {
      padding: 92px 64px 0;
    }

    .hero {
      max-width: 1620px;
      min-height: 500px;
      margin: 0 auto;
      padding: 88px 72px;
      background: var(--surface);
      border-radius: 44px 44px 0 0;
      box-shadow: var(--shadow);
      text-align: center;
      overflow: hidden;
    }


    h1 {
      max-width: 1160px;
      margin: 0 auto;
      font-size: clamp(40px, 3.55vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      font-weight: 700;
    }

    .highlight {
      color: var(--brand);
    }

    .hero-subtitle {
      max-width: 980px;
      margin: 28px auto 0;
      color: var(--muted);
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.48;
      font-weight: 500;
      letter-spacing: -0.012em;
    }

    .hero-actions {
      margin-top: 38px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
    }

    .hero-cta {
      height: 56px;
      padding: 0 18px 0 26px;
      border-radius: 11px;
      background: var(--brand);
      color: white;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 16.5px;
      line-height: 1;
      font-weight: 600;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 18px 34px rgba(53, 107, 255, 0.22);
    }

    .arrow-bubble {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      display: grid;
      place-items: center;
      font-size: 32px;
      line-height: 1;
      transform: translateY(-1px);
    }

    .mobile-menu {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: white;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .mobile-menu span {
      width: 19px;
      height: 2px;
      background: var(--text);
      border-radius: 999px;
    }

    @media (max-width: 1280px) {
      .header-inner {
        gap: 28px;
        padding-left: 56px;
        padding-right: 56px;
      }

      .nav-links {
        gap: 28px;
      }

      .hiring-link {
        display: none;
      }

      .dropdown-panel {
        left: 20px;
        right: 20px;
        padding: 28px 28px 30px;
      }

      .dropdown-grid {
        gap: 42px;
      }

      .dropdown-link {
        font-size: 13.5px;
      }
    }

    @media (max-width: 1080px) {
      .site-header {
        height: 62px;
      }

      .header-inner {
        justify-content: space-between;
        align-items: center;
        padding-left: 28px;
        padding-right: 28px;
        transform: translateY(1px);
        position: relative;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .mobile-menu {
        display: flex;
        cursor: pointer;
      }

      .site-header.is-mobile-open {
        z-index: 60;
      }

      .site-header.is-mobile-open .nav-links {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 10px);
        display: flex;
        height: auto;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 18px 44px rgba(31, 53, 84, 0.16);
      }

      .site-header.is-mobile-open .nav-item {
        display: block;
        height: auto;
      }

      .site-header.is-mobile-open .nav-link {
        width: 100%;
        min-height: 44px;
        justify-content: space-between;
        padding: 0 12px;
        border-radius: 10px;
      }

      .site-header.is-mobile-open .dropdown-panel {
        position: static;
        display: block;
        margin: 2px 0 10px;
        padding: 12px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 10px;
      }

      .site-header.is-mobile-open .dropdown-grid,
      .site-header.is-mobile-open .dropdown-grid-two,
      .site-header.is-mobile-open .dropdown-grid-three {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .site-header.is-mobile-open .dropdown-link {
        white-space: normal;
      }

      .hero-wrap {
        padding: 56px 22px 0;
      }

      .hero {
        padding: 64px 24px;
        border-radius: 30px 30px 0 0;
      }
    }

    @media (max-width: 680px) {
      .site-header {
        height: 76px;
      }

      .logo {
        font-size: 25px;
      }

      .logo-mark {
        width: 31px;
        height: 31px;
        font-size: 18px;
      }

      h1 {
        font-size: clamp(42px, 14vw, 62px);
      }

      .hero-subtitle {
        font-size: 19px;
      }

      .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 0 18px;
        font-size: 18px;
      }
    }
      .section {
      max-width: 1620px;
      margin: 0 auto;
      padding: 110px 64px 0;
    }

    .section-header {
      max-width: 980px;
      margin: 0 auto 58px;
      text-align: center;
    }

    .section-title {
      margin: 0;
      font-size: clamp(32px, 3.05vw, 52px);
      line-height: 1.09;
      letter-spacing: -0.045em;
      font-weight: 700;
    }

    .section-copy {
      margin: 22px auto 0;
      color: var(--muted);
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.48;
      font-weight: 500;
    }

    .coherta-flow-section {
      padding: 64px 28px 0;
    }

    .coherta-flow-shell {
      position: relative;
      overflow: hidden;
      border-radius: 42px 42px 0 0;
      background: linear-gradient(180deg, #356bff 0%, #2f62f2 100%);
      padding: 76px 32px 42px;
    }

    .coherta-flow-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
      background-size: 78px 78px;
      opacity: 0.7;
      pointer-events: none;
    }

    .coherta-flow-shell > * {
      position: relative;
      z-index: 1;
    }

    .coherta-flow-header {
      max-width: 1040px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .coherta-flow-header h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(34px, 3.7vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      font-weight: 700;
    }

    .coherta-flow-header p {
      max-width: 760px;
      margin: 18px auto 0;
      color: rgba(255,255,255,0.78);
      font-size: clamp(16px, 1.1vw, 19px);
      line-height: 1.48;
      font-weight: 500;
    }

    .coherta-two-step-grid {
      max-width: 1340px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px;
      align-items: stretch;
    }

    .coherta-step-card {
      min-height: 100%;
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 20px 46px rgba(20, 44, 90, 0.16);
      display: flex;
      flex-direction: column;
    }

    .coherta-step-visual {
      height: 360px;
      position: relative;
      overflow: hidden;
      background: #eaf2fd;
    }

    .target-builder-ui,
    .activation-ui {
      position: absolute;
      inset: 24px 24px 0;
      border-radius: 22px 22px 0 0;
      background: #f8fbff;
      border: 1px solid rgba(214, 226, 244, 0.9);
      box-shadow: 0 16px 34px rgba(20, 44, 90, 0.08);
      overflow: hidden;
    }

    .target-builder-ui {
      display: grid;
      grid-template-columns: 40% 60%;
    }

    .target-sidebar {
      padding: 16px;
      border-right: 1px solid #e2eaf5;
      background: #f3f7fc;
    }

    .ui-search {
      height: 30px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #e2eaf5;
      margin-bottom: 16px;
    }

    .ui-label {
      margin-bottom: 10px;
      color: #60799f;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .target-option {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: center;
      padding: 10px;
      margin-bottom: 10px;
      border-radius: 14px;
      border: 1px solid transparent;
    }

    .target-option.active {
      background: #fff;
      border-color: #dce8fb;
      box-shadow: 0 8px 16px rgba(20,44,90,0.04);
    }

    .target-icon {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      background: #e9f1ff;
      color: var(--brand);
      font-size: 13px;
      font-weight: 800;
    }

    .target-option strong,
    .choice-copy strong,
    .linkedin-flow-header strong {
      display: block;
      color: #1f3d67;
      font-size: 12px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .target-option small,
    .choice-copy small {
      display: block;
      margin-top: 4px;
      color: #6881a7;
      font-size: 10px;
      line-height: 1.35;
    }

    .target-main {
      padding: 16px;
      background: #fff;
    }

    .target-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .target-toolbar span {
      padding: 6px 8px;
      border-radius: 999px;
      background: #edf3ff;
      border: 1px solid #dce8ff;
      color: var(--brand);
      font-size: 10px;
      font-weight: 600;
    }

    .target-table {
      display: grid;
      gap: 9px;
    }

    .target-row {
      min-height: 32px;
      display: grid;
      grid-template-columns: 1.25fr 0.85fr 0.7fr 0.55fr;
      gap: 8px;
      align-items: center;
      padding: 0 10px;
      border-radius: 10px;
      background: #f7faff;
      color: #4c668c;
      font-size: 10px;
      font-weight: 600;
    }

    .target-row.header-row {
      background: transparent;
      color: #8a9bb2;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .target-row i {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin-right: 6px;
      border-radius: 50%;
      background: #3f6df6;
    }

    .person-pill {
      color: #1f3d67;
    }

    .status {
      justify-self: start;
      padding: 4px 6px;
      border-radius: 999px;
      font-size: 9px;
    }

    .status.ready {
      background: #e9f7ef;
      color: #298052;
    }

    .status.enrich {
      background: #fff2dc;
      color: #9a6518;
    }

    .activation-ui {
      padding: 18px;
      background:
        radial-gradient(circle at center, rgba(53,107,255,0.06) 1px, transparent 1px),
        #f8fbff;
      background-size: 18px 18px;
    }

    .activation-choice {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px;
      margin-bottom: 12px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid #e2eaf5;
      box-shadow: 0 8px 18px rgba(20,44,90,0.04);
    }

    .activation-choice.active {
      border-color: #b9ceff;
      box-shadow: 0 0 0 2px rgba(53,107,255,0.08), 0 10px 22px rgba(20,44,90,0.05);
    }

    .choice-badge {
      display: inline-flex;
      margin-bottom: 7px;
      padding: 4px 7px;
      border-radius: 999px;
      background: #edf3ff;
      color: var(--brand);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .activation-choice button {
      height: 34px;
      border: 0;
      border-radius: 10px;
      padding: 0 12px;
      background: var(--brand);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .activation-choice .secondary-button {
      background: #edf3ff;
      color: var(--brand);
    }

    .linkedin-flow-card {
      width: min(330px, 88%);
      margin: 20px auto 0;
      padding: 16px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid #dce8fb;
      box-shadow: 0 18px 34px rgba(20,44,90,0.09);
    }

    .linkedin-flow-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .linkedin-mark {
      width: 24px;
      height: 24px;
      border-radius: 7px;
      display: grid;
      place-items: center;
      background: #e9f1ff;
      color: var(--brand);
      font-size: 10px;
      font-weight: 900;
    }

    .linkedin-flow-header em {
      margin-left: auto;
      color: #8a9bb2;
      font-size: 10px;
      font-style: normal;
      font-weight: 600;
    }

    .flow-node {
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #e2eaf5;
      background: #f8fbff;
      color: #60799f;
      font-size: 11px;
      font-weight: 650;
      text-align: center;
    }

    .flow-node.done {
      color: var(--brand);
    }

    .flow-node.active {
      background: #fff;
      border-color: #b9ceff;
      color: #1f3d67;
      box-shadow: 0 0 0 2px rgba(53,107,255,0.08);
    }

    .flow-line {
      width: 2px;
      height: 12px;
      margin: 5px auto;
      border-radius: 999px;
      background: #dce8fb;
    }

    .coherta-step-content {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      align-items: start;
      padding: 28px 28px 32px;
    }

    .coherta-step-number {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #4a7bff 0%, #2f62f2 100%);
      color: #fff;
      font-size: 24px;
      font-weight: 700;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
    }

    .coherta-step-content h3 {
      margin: 2px 0 12px;
      color: #1f3554;
      font-size: clamp(22px, 1.7vw, 28px);
      line-height: 1.18;
      letter-spacing: -0.035em;
      font-weight: 700;
    }

    .coherta-step-content p {
      margin: 0;
      color: #5d728f;
      font-size: clamp(15.5px, 1.05vw, 18px);
      line-height: 1.52;
      font-weight: 500;
    }

    @media (max-width: 1080px) {
      .coherta-two-step-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
      }

      .coherta-step-visual {
        height: 340px;
      }
    }

    @media (max-width: 680px) {
      .coherta-flow-section {
        padding: 38px 16px 0;
      }

      .coherta-flow-shell {
        padding: 46px 16px 22px;
        border-radius: 28px 28px 0 0;
      }

      .coherta-step-visual {
        height: 310px;
      }

      .target-builder-ui {
        grid-template-columns: 1fr;
        overflow-y: auto;
      }

      .target-sidebar {
        border-right: 0;
        border-bottom: 1px solid #e2eaf5;
      }

      .target-row {
        grid-template-columns: 1fr 0.8fr;
      }

      .target-row span:nth-child(3),
      .target-row span:nth-child(4) {
        display: none;
      }

      .coherta-step-content {
        grid-template-columns: 1fr;
      }
    }

    .feature-stack {
      display: grid;
      gap: 26px;
    }

    .feature-panel {
      min-height: 520px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 44px;
      align-items: center;
      padding: 44px;
      border-radius: 36px;
      background: var(--surface);
      border: 1px solid #e4ebf4;
      overflow: hidden;
    }

    .feature-panel:nth-child(even) {
      grid-template-columns: 1.1fr 0.9fr;
    }

    .feature-panel:nth-child(even) .feature-text {
      order: 2;
    }

    .feature-text h2 {
      margin: 0;
      font-size: clamp(30px, 2.85vw, 48px);
      line-height: 1.09;
      letter-spacing: -0.045em;
      font-weight: 700;
    }

    .feature-text p {
      margin: 24px 0 0;
      color: var(--muted);
      font-size: clamp(16px, 1.1vw, 20px);
      line-height: 1.5;
      font-weight: 500;
    }

    .feature-visual {
      min-height: 370px;
      border-radius: 28px;
      background: white;
      border: 1px solid #dfe8f6;
      box-shadow: 0 22px 48px rgba(31, 53, 84, 0.08);
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .data-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .data-card {
      min-height: 96px;
      border-radius: 18px;
      background: #f5f8fd;
      padding: 16px;
      border: 1px solid #e5edf8;
    }

    .data-label {
      width: 54%;
      height: 10px;
      border-radius: 999px;
      background: #dfe8f8;
      margin-bottom: 18px;
    }

    .data-value {
      width: 34%;
      height: 22px;
      border-radius: 999px;
      background: #d7e4ff;
    }

    .signal-list {
      display: grid;
      gap: 13px;
    }

    .signal-item {
      height: 58px;
      border-radius: 16px;
      background: #f5f8fd;
      border: 1px solid #e5edf8;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 16px;
    }

    .signal-icon {
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: var(--brand);
      opacity: 0.85;
    }

    .signal-text {
      height: 12px;
      border-radius: 999px;
      background: #dfe8f8;
      flex: 1;
    }

    .campaign-card {
      position: absolute;
      width: 68%;
      min-height: 108px;
      left: 24px;
      border-radius: 22px;
      background: #f5f8fd;
      border: 1px solid #e5edf8;
      padding: 18px;
      box-shadow: 0 16px 34px rgba(31, 53, 84, 0.06);
    }

    .campaign-card:nth-child(1) { top: 28px; }
    .campaign-card:nth-child(2) { top: 150px; left: 84px; }
    .campaign-card:nth-child(3) { top: 272px; left: 44px; }

    .campaign-line {
      height: 12px;
      width: 70%;
      border-radius: 999px;
      background: #dfe8f8;
      margin-bottom: 16px;
    }

    .campaign-channel {
      height: 30px;
      width: 120px;
      border-radius: 999px;
      background: #d7e4ff;
    }

    .subpage-foundations {
      max-width: 1620px;
      margin: 0 auto;
      padding: 96px 64px 0;
    }

    .subpage-header {
      max-width: 800px;
      margin: 0 auto 42px;
      text-align: center;
    }

    .subpage-header span {
      display: inline-flex;
      margin-bottom: 14px;
      color: var(--brand);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .subpage-header h2 {
      margin: 0;
      color: var(--text);
      font-size: clamp(32px, 3vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      font-weight: 700;
    }

    .subpage-header p {
      margin: 18px auto 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.5;
      font-weight: 500;
    }

    .subpage-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .subpage-card {
      min-height: 340px;
      padding: 18px;
      border: 1px solid #e2e8f0;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(31, 53, 84, 0.06);
      display: flex;
      flex-direction: column;
    }

    .subpage-card-visual {
      height: 142px;
      margin-bottom: 22px;
      border-radius: 18px;
      background: linear-gradient(180deg, #f6f9fe 0%, #edf3ff 100%);
      border: 1px solid #dfe8f6;
      position: relative;
      overflow: hidden;
    }

    .subpage-card h3 {
      margin: 0 0 10px;
      color: var(--text);
      font-size: 20px;
      line-height: 1.18;
      letter-spacing: -0.035em;
      font-weight: 700;
    }

    .subpage-card p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.5;
      font-weight: 500;
    }

    .subpage-card a {
      margin-top: auto;
      color: var(--brand);
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
    }

    .list-visual span,
    .inbox-visual span {
      position: absolute;
      left: 18px;
      right: 18px;
      height: 26px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #e2eaf5;
    }

    .list-visual span:nth-child(1), .inbox-visual span:nth-child(1) { top: 24px; }
    .list-visual span:nth-child(2), .inbox-visual span:nth-child(2) { top: 58px; }
    .list-visual span:nth-child(3), .inbox-visual span:nth-child(3) { top: 92px; }

    .signal-visual i {
      position: absolute;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dbe7ff;
      box-shadow: 0 0 0 8px rgba(53,107,255,0.08);
    }

    .signal-visual i:nth-child(1) { left: 26px; top: 30px; }
    .signal-visual i:nth-child(2) { left: 88px; top: 54px; }
    .signal-visual i:nth-child(3) { right: 26px; top: 34px; }

    .template-visual strong,
    .linkedin-visual strong,
    .ai-visual strong {
      position: absolute;
      left: 18px;
      top: 18px;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--brand);
      color: #fff;
      font-size: 16px;
    }

    .template-visual span,
    .linkedin-visual span,
    .ai-visual span {
      position: absolute;
      left: 82px;
      right: 18px;
      height: 14px;
      border-radius: 999px;
      background: #dfe8f8;
    }

    .template-visual span:nth-child(2), .linkedin-visual span:nth-child(2), .ai-visual span:nth-child(2) { top: 28px; }
    .template-visual span:nth-child(3), .linkedin-visual span:nth-child(3), .ai-visual span:nth-child(3) { top: 52px; right: 58px; }

    .wash-visual em,
    .activation-visual span {
      position: absolute;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #fff;
      border: 1px solid #dbe7ff;
      color: var(--brand);
      font-style: normal;
      font-weight: 800;
    }

    .wash-visual em:nth-child(1), .activation-visual span:nth-child(1) { left: 24px; top: 48px; }
    .wash-visual em:nth-child(2), .activation-visual span:nth-child(2) { left: 82px; top: 48px; }
    .wash-visual em:nth-child(3), .activation-visual span:nth-child(3) { left: 140px; top: 48px; }

    @media (max-width: 1180px) {
      .subpage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .subpage-foundations {
        padding: 64px 22px 0;
      }

      .subpage-grid {
        grid-template-columns: 1fr;
      }
    }

    .centered-cta {
      max-width: 1460px;
      margin: 110px auto 0;
      padding: 72px 48px;
      border-radius: 38px;
      background: #1f3554;
      color: white;
      text-align: center;
      overflow: hidden;
      position: relative;
    }

    .centered-cta::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -220px;
      border-radius: 50%;
      background: rgba(53, 107, 255, 0.28);
      filter: blur(8px);
    }

    .centered-cta h2 {
      max-width: 880px;
      margin: 0 auto;
      font-size: clamp(32px, 3.1vw, 52px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      font-weight: 700;
      position: relative;
    }

    .centered-cta p {
      max-width: 720px;
      margin: 22px auto 32px;
      color: rgba(255,255,255,0.78);
      font-size: 18px;
      line-height: 1.5;
      font-weight: 500;
      position: relative;
    }

    .footer {
      margin-top: 0;
      background: #ffffff;
      border-top: 1px solid #dfe3e8;
      color: var(--text);
    }

    .footer-inner {
      max-width: 1824px;
      margin: 0 auto;
      padding: 74px clamp(40px, 6vw, 84px) 34px;
    }

    .footer-brand-column {
      max-width: 560px;
      margin-bottom: 54px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text);
      margin-bottom: 18px;
    }

    .footer-brand-column p {
      margin: 0;
      max-width: 360px;
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.5;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .footer-membership {
      margin-top: 22px;
      margin-right: 12px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border: 1px solid #e1e5eb;
      border-radius: 12px;
      color: var(--text);
      background: #fff;
      box-shadow: 0 8px 18px rgba(31, 53, 84, 0.04);
      transition: border-color 160ms ease, transform 160ms ease;
    }

    .footer-membership:hover {
      border-color: #cfd8e6;
      transform: translateY(-1px);
    }

    .footer-membership span {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: grid;
      place-items: center;
      background: #f0f4fa;
      color: var(--brand);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .footer-membership strong {
      color: var(--text);
      font-size: 13.5px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.015em;
    }

    .footer-languages {
      margin-top: 2px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 8px;
      max-width: 150px;
    }

    .footer-language {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      padding: 0;
      border: 0;
      border-radius: 4px;
      background: transparent;
      color: var(--text);
      overflow: hidden;
    }

    .footer-language > span:not(.footer-language-flag) {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .footer-language-flag {
      font-size: 18px;
      line-height: 1;
      flex: 0 0 auto;
    }

    .footer-language.is-active {
      box-shadow: 0 0 0 1px rgba(63, 109, 246, 0.28);
    }

    .footer-language.is-coming-soon {
      color: #6b7890;
      pointer-events: none;
    }

    .footer-language.is-coming-soon .footer-language-flag {
      filter: grayscale(1);
      opacity: 0.58;
    }

    .footer-language.is-coming-soon::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.46);
      box-shadow: inset 0 0 0 999px rgba(17, 28, 61, 0.1);
      z-index: 1;
    }

    .footer-language.is-coming-soon::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      transform: translate(-50%, -50%);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(17, 28, 61, 0.58);
      box-shadow: 0 5px 12px rgba(17, 28, 61, 0.18);
    }

    .footer-columns {
      display: grid;
      grid-template-columns: 1.05fr 0.9fr 1.1fr 0.9fr 1.1fr;
      gap: clamp(34px, 5vw, 86px);
      align-items: start;
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 13px;
      min-width: 0;
    }

    .footer-column h4 {
      margin: 0 0 8px;
      color: var(--text);
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.015em;
    }

    .footer-column a {
      color: #617694;
      font-size: 14px;
      line-height: 1.15;
      font-weight: 500;
      letter-spacing: -0.01em;
      transition: color 160ms ease;
    }

    .footer-column a:hover {
      color: var(--brand);
    }

    .footer-bottom {
      margin-top: 64px;
      padding-top: 26px;
      border-top: 1px solid #e7ebf1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      color: #7b8da6;
      font-size: 13px;
      font-weight: 500;
    }

    .footer-bottom p {
      margin: 0;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .footer-legal a {
      color: #7b8da6;
    }

    .footer-legal a:hover {
      color: var(--brand);
    }

    @media (max-width: 980px) {
      .section {
        padding: 78px 22px 0;
      }

      .flow-grid,
      .feature-panel,
      .feature-panel:nth-child(even) {
        grid-template-columns: 1fr;
      }

      .feature-panel,
      .feature-panel:nth-child(even) .feature-text {
        order: initial;
      }

      .feature-panel {
        padding: 24px;
        border-radius: 28px;
      }

      .flow-card {
        min-height: auto;
      }

      .footer-inner {
        padding: 54px 28px 30px;
      }

      .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 44px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 46px;
      }
    }

    @media (max-width: 640px) {
      .footer-inner {
        padding: 44px 22px 26px;
      }

      .footer-columns {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }
  

    /* Opdateret logo, sticky topmenu og footer-identitet */
    .brand-mark {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      border-radius: 0;
      background: transparent;
      color: inherit;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      overflow: visible;
    }

    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .footer-brand .brand-mark {
      width: 34px;
      height: 34px;
      flex-basis: 34px;
    }

    .footer-membership .di-logo,
    .footer-membership .de-logo {
      width: 34px;
      height: 34px;
      border-radius: 0;
      background: transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 34px;
      overflow: visible;
    }

    .footer-membership .di-logo img,
    .footer-membership .de-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(16px);
    }

/* Coherta front page
   Approved Coherta system: rounded hero, blue platform stage, white feature cards,
   simple Danish copy and product-style graphics. */

.home-page { background: #fff; }
.home-main { overflow: clip; }

/* Homepage main header: copied from the approved LinkedIn Outreach / Emnedatabase hero pattern.
   Only content values and the product graphic below the copy are changed. */
.home-hero {
  padding: 82px 32px 0;
}

.home-hero-inner {
  max-width: 1540px;
  margin: 0 auto;
  padding: 64px 48px 54px;
  border-radius: 42px 42px 0 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
  box-shadow: 0 22px 58px rgba(31, 53, 84, 0.08);
  position: relative;
  overflow: hidden;
}

.home-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 109, 246, 0.08), transparent 17%),
    radial-gradient(circle at 82% 16%, rgba(63, 109, 246, 0.07), transparent 16%);
  pointer-events: none;
}

.home-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: #111c3d;
}

.home-hero h1 span { color: #3f6df6; }

.home-subtitle {
  max-width: 920px;
  margin: 24px auto 0;
  color: #5c7290;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.home-hero-actions {
  display: flex;
  justify-content: center;
  margin: 32px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 12px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
}

.home-hero-graphic-block {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin: 44px auto 0;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(209, 221, 239, 0.86);
  box-shadow:
    0 28px 70px rgba(31, 53, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-flow-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.45fr 0.95fr;
  gap: 0;
  min-height: 330px;
}

.home-flow-column {
  min-width: 0;
  padding: 0 clamp(20px, 2.1vw, 32px);
}

.home-flow-column:first-child { padding-left: 0; }
.home-flow-column:last-child { padding-right: 0; }
.home-flow-column + .home-flow-column { border-left: 1px solid #d9e3f2; }

.home-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  min-height: 52px;
}

.home-flow-number {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #3978ff 0%, #1260f4 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 24px rgba(30, 102, 245, 0.22);
}

.home-flow-step strong,
.home-flow-step span:not(.home-flow-number) {
  display: block;
  color: #111c3d;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-flow-step span:not(.home-flow-number) {
  margin-top: 5px;
  color: #1764f6;
}

.home-flow-title {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dfe7f3;
  color: #111c3d;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.018em;
}

.home-flow-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  color: #1260f4;
}

.home-flow-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #dfe7f3;
  color: #111c3d;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.018em;
}

.home-flow-row:last-child { border-bottom: 0; }

.home-flow-row .home-flow-icon {
  width: 24px;
  height: 24px;
}

.home-flow-row-chevron {
  width: 12px;
  height: 18px;
  margin-left: auto;
  color: #1260f4;
}

.home-flow-company-mark,
.home-flow-linkedin-mark {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 7px 14px rgba(19, 34, 70, 0.08);
}

.home-flow-company-mark.mark-n { background: #101010; }
.home-flow-company-mark.mark-a { background: linear-gradient(180deg, #1675f8, #0757c9); }
.home-flow-company-mark.mark-r { background: linear-gradient(180deg, #5a36bd, #361b85); }
.home-flow-linkedin-mark { background: linear-gradient(180deg, #1174e9, #0759d1); font-size: 18px; font-weight: 900; }

.home-flow-table-head,
.home-flow-contact-row {
  display: grid;
  grid-template-columns: 1.45fr 1.05fr 1fr 42px;
  column-gap: 14px;
  align-items: center;
}

.home-flow-table-head {
  min-height: 45px;
  border-bottom: 1px solid #dfe7f3;
  color: #0d4fb7;
  font-size: 12px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.home-flow-contact-row {
  min-height: 62px;
  border-bottom: 1px solid #dfe7f3;
  color: #111c3d;
  font-size: 13px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.018em;
}

.home-flow-contact-row:last-child { border-bottom: 0; }

.home-flow-person {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.home-flow-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f2d5c2 0%, #d7ecfb 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: inset 0 0 0 1px rgba(17, 28, 61, 0.06);
}

.home-flow-avatar.avatar-one { background: linear-gradient(135deg, #f2c7a8 0%, #f6e6d8 45%, #dceefd 100%); color: #9a5f42; }
.home-flow-avatar.avatar-two { background: linear-gradient(135deg, #d6ecfb 0%, #f3d9c1 100%); color: #7a5a48; }
.home-flow-avatar.avatar-three { background: linear-gradient(135deg, #d39a72 0%, #f0c2a4 100%); color: #6d3c2a; }

.home-flow-person span,
.home-flow-contact-row span {
  min-width: 0;
  white-space: nowrap;
}

.home-flow-actions .home-flow-row {
  min-height: 72px;
  align-items: center;
}

.home-flow-action-copy {
  min-width: 0;
}

.home-flow-action-copy strong {
  display: block;
  color: #111c3d;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.018em;
}

.home-flow-action-copy span {
  display: block;
  margin-top: 5px;
  color: #0d4fb7;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.home-flow-action-chevron {
  width: 22px;
  height: 22px;
  margin-left: auto;
  flex: 0 0 22px;
  color: #0b2a67;
}

.home-section-header {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}
.home-section-header span,
.home-feature-text span,
.home-trust-copy span,
.home-agent-copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-section-header h2,
.home-trust-copy h2,
.home-agent-copy h2 {
  margin: 0;
  color: #08183c;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 700;
}
.home-section-header p,
.home-trust-copy p,
.home-agent-copy p {
  margin: 18px auto 0;
  color: #6f7f99;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.54;
  font-weight: 500;
}
.home-section-header-light span,
.home-section-header-light h2 { color: #fff; }
.home-section-header-light p { color: rgba(255,255,255,.78); }

.home-product-stage { padding: 18px 32px 0; }
.home-product-shell {
  max-width: 1540px;
  margin: 0 auto;
  padding: clamp(58px, 5vw, 82px) clamp(24px, 3vw, 44px) clamp(28px, 3vw, 42px);
  background: linear-gradient(180deg, #356bff 0%, #2f62f2 100%);
  border-radius: 0 0 42px 42px;
  position: relative;
  overflow: hidden;
}
.home-product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .7;
  pointer-events: none;
}
.home-product-shell > * { position: relative; z-index: 1; }
.home-product-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.home-product-card {
  min-height: 536px;
  padding: 18px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 46px rgba(20, 44, 90, .16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(20, 44, 90, .22);
}
.card-outreach {
  order: 3;
}
.card-monitoring {
  order: 4;
}
.home-product-image {
  height: 388px;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
}
.home-product-stage {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}
.home-product-stage img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(18, 34, 67, .08);
}
.card-emner .home-product-stage img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.97);
  background: #ffffff;
}
.card-datenbereinigung .home-product-stage img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.96);
  background: #ffffff;
}
.card-monitoring .home-product-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-monitoring .home-product-stage img {
  object-fit: contain;
  object-position: center center;
  transform: scale(1.02);
}
.card-outreach .home-product-stage img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.98);
  background: #ffffff;
}
.home-product-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  position: relative;
  padding-right: 138px;
}
.home-product-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #3f6df6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-product-copy h3 {
  margin: 0;
  color: #122243;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.home-product-copy p {
  margin: 10px 0 0;
  color: #6f7f99;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 600;
  max-width: 43ch;
}
.home-product-copy em {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 0;
  padding: 0 15px;
  border: 1px solid #cbd9ee;
  border-radius: 999px;
  background: #f7faff;
  color: #2458e8;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(36, 88, 232, .12);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.home-product-card:hover .home-product-copy em {
  background: #2458e8;
  border-color: #2458e8;
  color: #fff;
  transform: translateY(-1px);
}
.home-product-seo { margin: 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.home-agent-section,
.home-feature-stack,
.home-trust,
.home-cta {
  max-width: 1540px;
  margin: 0 auto;
}
.home-agent-section { padding: 106px 32px 0; }
.home-agent-shell {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(540px, 1.08fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 4vw, 64px);
  border-radius: 38px;
  background: #f4f7fb;
  border: 1px solid #e4ebf4;
  overflow: hidden;
}
.home-agent-copy { max-width: 560px; }
.home-agent-copy p { margin-left: 0; margin-right: 0; }
.home-agent-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 26px;
}
.home-agent-points div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dfe8f6;
  box-shadow: 0 10px 24px rgba(31, 53, 84, .045);
}
.home-agent-points strong {
  color: #122243;
  font-size: 15px;
  line-height: 1;
}
.home-agent-points small {
  color: #6f7f99;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
.home-agent-visual {
  position: relative;
  min-height: 500px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 18%, rgba(63, 109, 246, .13), transparent 30%),
    linear-gradient(180deg, #fff, #fbfdff);
  border: 1px solid #dfe8f6;
  box-shadow: 0 24px 60px rgba(31, 53, 84, .09);
  overflow: hidden;
}
.home-agent-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 26px;
  background-image:
    linear-gradient(#edf2fa 1px, transparent 1px),
    linear-gradient(90deg, #edf2fa 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .62;
  pointer-events: none;
}
.home-agent-workflow {
  position: relative;
  z-index: 2;
  min-height: 410px;
  display: grid;
  grid-template-columns: .92fr 1.18fr .92fr;
  gap: 14px;
  align-items: center;
  padding: 34px 28px 86px;
}
.home-agent-side,
.home-agent-agent,
.home-agent-human {
  border: 1px solid #dfe8f6;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 42px rgba(31, 53, 84, .075);
}
.home-agent-side {
  min-height: 188px;
  border-radius: 26px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-agent-side span {
  color: #3f6df6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-agent-side strong {
  display: block;
  margin-top: 12px;
  color: #122243;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.home-agent-side small {
  display: block;
  margin-top: 10px;
  color: #6f7f99;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}
.home-agent-side-muted { opacity: .82; }
.home-agent-side-focus {
  background: linear-gradient(180deg, #ffffff, #f5f8ff);
  border-color: rgba(63, 109, 246, .20);
}
.home-agent-lane {
  position: relative;
  display: grid;
  gap: 12px;
}
.home-agent-lane::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(63,109,246,.10), rgba(63,109,246,.42), rgba(63,109,246,.10));
}
.home-agent-agent {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  min-height: 104px;
  padding: 17px 18px;
  border-radius: 24px;
}
.home-agent-agent small {
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  color: #3f6df6;
  font-size: 11px;
  font-weight: 900;
}
.home-agent-agent strong {
  color: #122243;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -.035em;
}
.home-agent-agent span {
  color: #667892;
  font-size: 12.8px;
  line-height: 1.35;
  font-weight: 650;
}
.home-agent-human {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 26px;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: linear-gradient(180deg, #3f6df6, #2f62f2);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  box-shadow: 0 18px 42px rgba(47, 98, 242, .24);
}
.home-agent-human strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}
.home-agent-human span {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  opacity: .84;
}

.home-feature-stack {
  padding: 106px 32px 0;
  display: grid;
  gap: 26px;
}
.home-feature-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: center;
  padding: clamp(30px, 4vw, 62px);
  border-radius: 36px;
  background: #f4f7fb;
  border: 1px solid #e4ebf4;
  overflow: hidden;
}
.home-feature-panel-reverse { grid-template-columns: 1.08fr .92fr; }
.home-feature-panel-reverse .home-feature-text { order: 2; }
.home-feature-panel-reverse .home-feature-visual { order: 1; }
.home-feature-text { max-width: 500px; }
.home-feature-text h2 {
  margin: 0;
  color: #08183c;
  font-size: clamp(30px, 2.85vw, 48px);
  line-height: 1.09;
  letter-spacing: -.045em;
  font-weight: 700;
}
.home-feature-text p {
  margin: 22px 0 0;
  color: #6f7f99;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.52;
  font-weight: 500;
}
.home-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.home-feature-chips b {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe8f6;
  color: #516783;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(31, 53, 84, .045);
}
.home-feature-text a {
  display: inline-flex;
  margin-top: 26px;
  color: #3f6df6;
  font-size: 15px;
  font-weight: 850;
}
.home-feature-visual {
  min-height: 370px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dfe8f6;
  box-shadow: 0 22px 48px rgba(31, 53, 84, .08);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-trust {
  margin-top: 106px;
  padding: 42px;
  border-radius: 36px;
  background: #f4f7fb;
  border: 1px solid #e4ebf4;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.home-trust-copy { max-width: 560px; }
.home-trust-copy p { margin-left: 0; }
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-trust-grid div {
  min-height: 170px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dfe8f6;
  box-shadow: 0 12px 28px rgba(31, 53, 84, .055);
}
.home-trust-grid div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eaf8ef;
  color: #15985a;
  font-size: 15px;
  font-weight: 900;
}
.home-trust-grid strong {
  color: #122243;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.home-trust-grid p {
  margin: 12px 0 0;
  color: #6f7f99;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 520;
}

.home-cta {
  margin-top: 110px;
  margin-bottom: 0;
  padding: 72px 48px;
  border-radius: 38px 38px 0 0;
  background: #1f3554;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  background: rgba(53, 107, 255, .28);
  filter: blur(8px);
}
.home-cta h2,
.home-cta p,
.home-cta .home-hero-actions { position: relative; z-index: 1; }
.home-cta h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(32px, 3.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 700;
}
.home-cta p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
.home-cta .home-hero-actions {
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.home-cta .home-btn {
  min-width: 260px;
}
.home-cta .home-btn-dark {
  border-color: var(--brand);
  background: var(--brand);
}

@media (max-width: 1180px) {
  .home-hero-inner,
  .home-agent-shell { grid-template-columns: 1fr; }
  .home-visual-shell { min-height: auto; }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-trust,
  .home-feature-panel,
  .home-feature-panel-reverse { grid-template-columns: 1fr; }
  .home-feature-panel-reverse .home-feature-text,
  .home-feature-panel-reverse .home-feature-visual { order: initial; }
  .home-trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .home-hero { padding: 34px 16px 0; }
  .home-hero-inner { padding: 44px 22px 36px; border-radius: 30px 30px 0 0; }
  .home-hero h1 { font-size: 42px; }
  .home-hero-actions,
  .home-btn { width: 100%; }
  .home-flow-row,
  .home-mini-dashboard,
  .home-product-grid { grid-template-columns: 1fr; }
  .home-flow-arrow { transform: rotate(90deg); margin: 0 auto; }
  .home-product-stage { padding-left: 16px; padding-right: 16px; }
  .home-product-shell { border-radius: 0 0 30px 30px; padding: 46px 16px 22px; }
  .home-product-card { min-height: auto; }
  .home-product-image { height: 286px; }
  .card-monitoring .home-product-stage { padding: 10px; }
  .home-product-copy {
    padding-right: 0;
  }
  .home-product-copy em {
    position: static;
    margin-top: 14px;
  }
  .home-product-copy p { max-width: 100%; font-size: 13.5px; }
  .home-product-callout { max-width: 170px; font-size: 11px; }
  .home-agent-section,
  .home-feature-stack { padding: 64px 16px 0; }
  .home-agent-shell,
  .home-feature-panel,
  .home-trust { padding: 22px; border-radius: 28px; }
  .home-agent-visual { min-height: 640px; }
  .home-agent-center { top: 50%; width: 164px; height: 164px; border-radius: 34px; }
  .home-agent-node { width: calc(100% - 44px); left: 22px !important; right: auto !important; }
  .node-one { top: 22px; }
  .node-two { top: 162px; }
  .node-three { bottom: 162px; }
  .node-four { bottom: 22px; }
  .home-agent-line { display: none; }
  .home-agent-points div { grid-template-columns: 1fr; gap: 5px; }
  .home-feature-visual { min-height: 300px; padding: 16px; }
  .home-trust { margin: 64px 16px 0; grid-template-columns: 1fr; }
  .home-cta { margin-top: 64px; padding: 56px 22px; border-radius: 30px 30px 0 0; }
}


@media (max-width: 760px) {
  .home-hero {
    padding: 42px 18px 0;
  }

  .home-hero-inner {
    padding: 38px 20px 30px;
    border-radius: 28px 28px 0 0;
  }

  .home-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .home-hero-graphic-block {
    width: 100%;
    margin-top: 32px;
    padding: 18px;
    border-radius: 22px;
  }

  .home-flow-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-flow-column,
  .home-flow-column:first-child,
  .home-flow-column:last-child {
    padding: 0;
  }

  .home-flow-column + .home-flow-column {
    margin-top: 24px;
    padding-top: 18px;
    border-left: 0;
    border-top: 1px solid #d9e3f2;
  }

  .home-flow-table-head,
  .home-flow-contact-row {
    grid-template-columns: 1.35fr 0.9fr 1fr 34px;
    column-gap: 8px;
  }

  .home-flow-contact-row {
    font-size: 12px;
  }
}

/* Shared Målgruppe assistent partial */
.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;
}

.audience-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  color: #17243a;
}

.audience-launcher {
  position: relative;
  min-height: 58px;
  padding: 11px 18px 11px 12px;
  border: 1px solid var(--brand, #3f6df6);
  border-radius: 999px;
  background: var(--brand, #3f6df6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.audience-launcher:hover {
  transform: translateY(-2px);
  background: var(--brand-dark, #2f5ce6);
  border-color: var(--brand-dark, #2f5ce6);
  box-shadow: 0 14px 34px rgba(63, 109, 246, 0.22);
}

.audience-launcher-glow {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(63, 109, 246, 0.22), transparent 62%);
  z-index: -1;
  opacity: 0;
}

.audience-assistant.is-attention .audience-launcher-glow {
  animation: audiencePulse 1.8s ease-in-out 4;
}

@keyframes audiencePulse {
  0%, 100% { opacity: 0; transform: scale(.96); }
  45% { opacity: 1; transform: scale(1.08); }
}

.audience-launcher-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.audience-launcher-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.audience-launcher-text {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.audience-nudge {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 248px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #dfe6f0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(25, 44, 74, 0.16);
  opacity: 0;
  transform: translateY(8px) scale(.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.audience-nudge.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.audience-nudge strong,
.audience-nudge span {
  display: block;
}

.audience-nudge strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #17243a;
}

.audience-nudge span {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: #60718d;
}

.audience-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(398px, calc(100vw - 32px));
  height: clamp(420px, 58vh, 520px);
  border-radius: 26px;
  border: 1px solid #dfe6f0;
  background: #fff;
  box-shadow: 0 32px 90px rgba(25, 44, 74, 0.22);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.97);
  pointer-events: none;
  transition: opacity 190ms ease, transform 190ms ease;
  display: flex;
  flex-direction: column;
}

.audience-assistant.is-open .audience-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.audience-panel-header {
  min-height: 74px;
  padding: 17px 18px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e8eef6;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  flex: 0 0 auto;
}

.audience-panel-header h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: #17243a;
}

.audience-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dfe6f0;
  background: #fff;
  color: #17243a;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}

.audience-chat {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  background: #fff;
}

.audience-message {
  max-width: 84%;
  border-radius: 18px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: -0.01em;
  animation: audienceMessageIn 160ms ease both;
}

@keyframes audienceMessageIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.audience-message p {
  margin: 0;
}

.audience-message.bot {
  align-self: flex-start;
  background: #f3f7ff;
  color: #334765;
  border-bottom-left-radius: 7px;
}

.audience-message.user {
  align-self: flex-end;
  background: linear-gradient(180deg, #3f6df6 0%, #2f5ce6 100%);
  color: #fff;
  border-bottom-right-radius: 7px;
}

.audience-message.system {
  align-self: center;
  max-width: 92%;
  background: #f8fbff;
  border: 1px solid #e0e8f3;
  color: #334765;
}

.audience-message.typing {
  width: 58px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.audience-message.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8aa0ba;
  animation: audienceTyping 900ms ease-in-out infinite;
}

.audience-message.typing i:nth-child(2) { animation-delay: 120ms; }
.audience-message.typing i:nth-child(3) { animation-delay: 240ms; }

@keyframes audienceTyping {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  align-self: flex-start;
}

.audience-action {
  border: 1px solid #dfe6f0;
  background: #fff;
  color: #334765;
  border-radius: 999px;
  padding: 9px 11px;
  font-size: 12.5px;
  font-weight: 750;
  cursor: pointer;
}

.audience-action.primary {
  border-color: var(--brand, #3f6df6);
  color: #fff;
  background: var(--brand, #3f6df6);
  box-shadow: 0 10px 22px rgba(63, 109, 246, 0.18);
}

.audience-input {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px 14px;
  border-top: 1px solid #e8eef6;
  background: #fff;
  align-items: end;
}

.audience-input textarea {
  width: 100%;
  min-height: 46px;
  max-height: 112px;
  resize: none;
  border: 1px solid #dfe6f0;
  border-radius: 16px;
  padding: 13px 14px;
  font: inherit;
  font-size: 14px;
  line-height: 1.35;
  color: #17243a;
  outline: none;
  background: #fbfdff;
}

.audience-input textarea:focus,
.audience-lead-form input:focus {
  border-color: rgba(63, 109, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(63, 109, 246, 0.11);
}

.audience-send,
.audience-confirm {
  border: 1px solid var(--brand, #3f6df6);
  border-radius: 14px;
  background: var(--brand, #3f6df6);
  color: #fff;
  min-height: 46px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(63, 109, 246, 0.18);
}

.audience-lead-form {
  flex: 0 0 auto;
  padding: 14px;
  border-top: 1px solid #e8eef6;
  background: #fff;
  max-height: 100%;
  overflow: auto;
}

.audience-lead-copy {
  padding: 13px;
  border-radius: 17px;
  background: #f3f7ff;
  border: 1px solid #dfe6f0;
  margin-bottom: 12px;
}

.audience-lead-copy strong,
.audience-lead-copy span {
  display: block;
}

.audience-lead-copy strong {
  color: #17243a;
  font-size: 14px;
  line-height: 1.25;
}

.audience-lead-copy span {
  margin-top: 4px;
  color: #60718d;
  font-size: 12.5px;
  line-height: 1.35;
}

.audience-lead-form label {
  display: block;
  margin-top: 10px;
}

.audience-lead-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 750;
  color: #60718d;
}

.audience-lead-form input {
  width: 100%;
  height: 44px;
  border: 1px solid #dfe6f0;
  border-radius: 14px;
  padding: 0 13px;
  font: inherit;
  background: #fbfdff;
  outline: none;
}

.audience-confirm {
  width: 100%;
  margin-top: 12px;
}

.audience-lead-form p {
  margin: 9px 2px 0;
  color: #7a8aa2;
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .audience-assistant {
    right: 14px;
    bottom: 14px;
  }

  .audience-launcher-text {
    display: none;
  }

  .audience-launcher {
    width: 60px;
    height: 60px;
    min-height: 60px;
    padding: 0;
    justify-content: center;
  }

  .audience-panel {
    right: -2px;
    width: calc(100vw - 24px);
    height: min(540px, calc(100vh - 112px));
    bottom: 74px;
    border-radius: 22px;
  }

  .audience-nudge {
    right: 0;
    width: 226px;
  }

  .audience-input {
    grid-template-columns: 1fr;
  }

  .audience-send {
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .home-hero h1 {
    font-size: 64.35px;
  }
}



/* Hero agent graphic preview
   Uses the approved central Coherta hero layout with the agent workflow as the main visual asset. */
.home-hero-agent-graphic-block {
  width: min(100%, 1360px);
  margin-top: 46px;
  padding: clamp(10px, 1.2vw, 18px);
  border-radius: 32px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(209, 221, 239, 0.58);
  box-shadow: 0 28px 78px rgba(31, 53, 84, 0.10);
}

.home-hero-agent-graphic {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

@media (max-width: 720px) {
  .home-hero-agent-graphic-block {
    margin-top: 34px;
    padding: 8px;
    border-radius: 24px;
  }

  .home-hero-agent-graphic {
    border-radius: 18px;
  }
}


/* Retina quality hero agent graphic */
.home-hero-agent-graphic-block {
  width: min(100%, 1360px);
  margin-top: 46px;
  padding: clamp(8px, 1vw, 14px);
  border-radius: 32px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(209, 221, 239, 0.56);
  box-shadow: 0 28px 78px rgba(31, 53, 84, 0.10);
}
.home-hero-agent-graphic {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  image-rendering: auto;
}
@media (max-width: 720px) {
  .home-hero-agent-graphic-block {
    margin-top: 34px;
    padding: 8px;
    border-radius: 24px;
  }
  .home-hero-agent-graphic {
    border-radius: 18px;
  }
}

/* Rollback preview: preserves approved hero graphic image. */
.home-hero-agent-graphic-block {
  width: min(100%, 1360px);
}


/* Hero step graphics with SEO-friendly HTML text */
.home-hero-steps-combo {
  width: min(100%, 1360px);
  margin-top: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-steps-overview {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}
.hero-steps-overview img {
  display: block;
  width: min(100%, 1180px);
  height: auto;
}
.hero-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.hero-step-card {
  min-width: 0;
}
.hero-step-copy {
  padding: 0 6px 16px;
}
.hero-step-copy h3 {
  margin: 10px 0 0;
  color: #122243;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 800;
}
.hero-step-copy p {
  margin: 14px 0 0;
  color: #5f718d;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
  max-width: 420px;
}
.hero-step-visual {
  border-radius: 28px;
  overflow: hidden;
}
.hero-step-visual img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1080px) {
  .hero-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-step-copy p {
    max-width: none;
  }
}

/* FINAL compact hero step layout override */
.home-hero-steps-combo {
  width: min(100%, 1360px) !important;
  margin-top: 28px !important;
  padding: 22px 24px 26px !important;
  border-radius: 34px !important;
  background: #f4f7fb !important;
  border: 1px solid #dfe8f6 !important;
  box-shadow: 0 24px 64px rgba(31, 53, 84, 0.08) !important;
}
.hero-steps-overview {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 4px !important;
}
.hero-steps-overview img {
  display: block !important;
  width: min(100%, 760px) !important;
  height: auto !important;
}
.hero-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
  margin-top: -10px !important;
}
.hero-step-copy {
  padding: 0 8px 10px !important;
}
.hero-step-copy h3 {
  margin: 8px 0 0 !important;
  font-size: clamp(25px, 1.9vw, 32px) !important;
  line-height: 1.03 !important;
}
.hero-step-copy p {
  margin: 10px 0 0 !important;
  font-size: clamp(14px, 0.95vw, 15px) !important;
  line-height: 1.45 !important;
  max-width: 390px !important;
}
.hero-step-visual {
  border-radius: 28px !important;
  background: #f4f7fb !important;
}
@media (max-width: 1080px) {
  .hero-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    margin-top: 0 !important;
  }
  .hero-steps-overview img {
    width: min(100%, 700px) !important;
  }
}

/* Coherta hero AI agent flow - unified canvas, copyable step text, no image-based text */
.home-hero-inner {
  max-width: 1540px;
}

.home-hero-graphic-block.agent-flow-canvas {
  width: min(100%, 1460px);
  margin: 42px auto 0;
  padding: clamp(22px, 2.2vw, 34px) clamp(20px, 2.6vw, 42px) clamp(24px, 2.6vw, 38px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 109, 246, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  border: 1px solid rgba(190, 210, 238, 0.72);
  box-shadow:
    0 28px 72px rgba(31, 53, 84, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.agent-flow-map {
  position: relative;
  height: 176px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.agent-flow-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 176px;
  overflow: visible;
  pointer-events: none;
}

.agent-flow-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 242px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eaf2ff 100%);
  border: 1px solid #c6dbfb;
  color: #13264a;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 12px 26px rgba(47, 109, 246, 0.08);
}

.agent-flow-target {
  position: absolute;
  top: 78px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #122243;
  font-size: clamp(28px, 2.25vw, 39px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.agent-step-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 54px);
  align-items: stretch;
  margin-top: -8px;
  padding: 0 clamp(8px, 1vw, 16px);
}

.agent-step-copy {
  min-width: 0;
  padding: 6px 0 18px;
}

.agent-step-copy + .agent-step-copy {
  border-left: 1px solid rgba(172, 194, 226, 0.78);
  padding-left: clamp(22px, 3vw, 46px);
}

.agent-step-copy h3 {
  margin: 0;
  color: #122243;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 850;
}

.agent-step-copy p {
  margin: 15px 0 0;
  color: #5f718f;
  font-size: clamp(15px, 1.06vw, 18px);
  line-height: 1.44;
  font-weight: 680;
  letter-spacing: -0.02em;
  max-width: 420px;
}

.agent-visual-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 160px 28px minmax(250px, 1fr) 32px minmax(250px, 1.18fr) 32px minmax(250px, 1fr) 118px;
  gap: 0;
  align-items: center;
  margin-top: 34px;
}

.agent-side-panel,
.agent-person-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 224, 241, 0.96);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(31, 53, 84, 0.08);
}

.agent-side-panel {
  height: 272px;
  padding: 34px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agent-side-panel strong {
  color: #122243;
  font-size: 21px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.agent-criteria {
  display: grid;
  gap: 14px;
}

.agent-criterion {
  height: 58px;
  border: 1px solid #dce7f6;
  border-radius: 15px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #122243;
  font-size: 14px;
  font-weight: 800;
  background: #fbfdff;
}

.agent-criterion svg,
.agent-micro-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.agent-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1978ff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.agent-person-card {
  height: 316px;
  overflow: hidden;
}

.agent-person-row {
  height: 105px;
  display: grid;
  grid-template-columns: 34px 68px minmax(115px, 1fr) auto auto;
  align-items: center;
  column-gap: 14px;
  padding: 0 22px;
  border-bottom: 1px solid #e3ebf6;
}

.agent-person-row:last-child {
  border-bottom: 0;
}

.agent-status {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.agent-status.done {
  border-radius: 999px;
  background: #21bf61;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 7px 14px rgba(33, 191, 97, 0.16);
}

.agent-status.loading {
  border-radius: 999px;
  background:
    conic-gradient(from 40deg, #1478ff 0 42deg, transparent 42deg 78deg, #1478ff 78deg 122deg, transparent 122deg 168deg, #1478ff 168deg 214deg, transparent 214deg 254deg, #1478ff 254deg 302deg, transparent 302deg 360deg);
  mask: radial-gradient(farthest-side, transparent 48%, #000 50%);
  -webkit-mask: radial-gradient(farthest-side, transparent 48%, #000 50%);
  animation: agentSpin 1.6s linear infinite;
}

@keyframes agentSpin {
  to { transform: rotate(360deg); }
}

.agent-avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef3f9;
  box-shadow: inset 0 0 0 1px rgba(213, 225, 240, 0.8);
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.agent-person-main {
  min-width: 0;
}

.agent-name {
  color: #122243;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-company {
  margin-top: 7px;
  color: #003c9f;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agent-micro-icon {
  width: 34px;
  height: 34px;
  color: #071435;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.agent-micro-icon.muted {
  color: #a5afbf;
}

.agent-linkedin {
  width: 31px;
  height: 31px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1478ff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 880;
  letter-spacing: -0.08em;
}

.agent-linkedin.empty {
  background: #f5f7fa;
  color: #a9b3c0;
  border: 2px solid #b7c1cd;
  font-size: 17px;
}

.agent-actions {
  height: 282px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 28px;
  padding-left: 22px;
}

.agent-actions::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 44px;
  bottom: 44px;
  border-left: 2px dashed #1680ff;
}

.agent-action {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  color: #122243;
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
}

.agent-action::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  width: 26px;
  border-top: 2px dashed #1680ff;
}

.agent-action-bubble {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f3f8ff 0%, #e7f1ff 100%);
  border: 1px solid #d6e5fb;
  color: #1478ff;
  box-shadow: 0 10px 22px rgba(31, 53, 84, 0.08);
}

.agent-action-bubble svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  fill: none;
}

.agent-action-bubble .filled {
  fill: currentColor;
  stroke: none;
}

.agent-final-note {
  margin-top: 26px;
  text-align: center;
  color: #335eac;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.01em;
}

@media (max-width: 1180px) {
  .home-hero-graphic-block.agent-flow-canvas {
    overflow-x: auto;
  }
  .agent-flow-map,
  .agent-step-row,
  .agent-visual-row,
  .agent-final-note {
    min-width: 1180px;
  }
}

@media (max-width: 720px) {
  .home-hero-graphic-block.agent-flow-canvas {
    border-radius: 28px;
    margin-top: 32px;
    padding: 20px;
  }
}



/* Final width alignment: make the AI-agent canvas align with the full homepage frame below. */
.home-hero-graphic-block.agent-flow-canvas {
  width: calc(100% + 96px) !important;
  max-width: none !important;
  margin-left: -48px !important;
  margin-right: -48px !important;
}
@media (max-width: 760px) {
  .home-hero-graphic-block.agent-flow-canvas {
    width: calc(100% + 40px) !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}


/* Scale fix: keep the unified canvas wide, but make the internal agent UI fit cleanly. */
.home-hero-graphic-block.agent-flow-canvas {
  padding-left: clamp(28px, 3vw, 56px) !important;
  padding-right: clamp(28px, 3vw, 56px) !important;
}
.agent-step-row {
  padding-left: clamp(22px, 2.2vw, 44px) !important;
  padding-right: clamp(22px, 2.2vw, 44px) !important;
  gap: clamp(34px, 4vw, 72px) !important;
}
.agent-visual-row {
  grid-template-columns: 172px 42px minmax(350px, 1fr) 42px minmax(410px, 1.14fr) 42px minmax(350px, 1fr) 154px !important;
  column-gap: 0 !important;
  align-items: center !important;
  margin-top: 38px !important;
}
.agent-side-panel {
  height: 288px !important;
  padding: 34px 22px !important;
}
.agent-person-card {
  height: 288px !important;
  border-radius: 26px !important;
}
.agent-person-row {
  height: 96px !important;
  grid-template-columns: 30px 58px minmax(0, 1fr) 30px 30px !important;
  column-gap: 13px !important;
  padding: 0 20px !important;
}
.agent-avatar {
  width: 54px !important;
  height: 54px !important;
}
.agent-person-main {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.agent-name,
.agent-company {
  display: block !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.agent-name {
  font-size: 15px !important;
  line-height: 1.12 !important;
}
.agent-company {
  margin-top: 5px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
}
.agent-status {
  width: 25px !important;
  height: 25px !important;
}
.agent-micro-icon,
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
}
.agent-linkedin {
  font-size: 16px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  font-size: 15px !important;
  border-width: 2px !important;
}
.agent-micro-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-flow-arrow {
  font-size: 31px !important;
}
.agent-actions {
  width: 154px !important;
  height: 270px !important;
  padding-left: 18px !important;
  gap: 24px !important;
}
.agent-actions::before {
  left: 44px !important;
  top: 42px !important;
  bottom: 42px !important;
}
.agent-action {
  grid-template-columns: 56px 1fr !important;
  gap: 10px !important;
  font-size: 13px !important;
}
.agent-action-bubble {
  width: 56px !important;
  height: 56px !important;
}
.agent-action-bubble svg {
  width: 25px !important;
  height: 25px !important;
}
@media (max-width: 1180px) {
  .agent-flow-map,
  .agent-step-row,
  .agent-visual-row,
  .agent-final-note {
    min-width: 1320px !important;
  }
}



/* Final fit pass: keep the agent section as one canvas and prevent the lower UI row from overflowing. */
.home-hero-graphic-block.agent-flow-canvas {
  overflow: hidden !important;
}
.agent-flow-map,
.agent-step-row,
.agent-visual-row,
.agent-final-note {
  min-width: 0 !important;
  max-width: 100% !important;
}
.agent-visual-row {
  width: 100% !important;
  grid-template-columns: minmax(128px, 150px) 24px minmax(0, 1fr) 24px minmax(0, 1fr) 24px minmax(0, 1fr) minmax(100px, 118px) !important;
  column-gap: 0 !important;
  align-items: center !important;
}
.agent-side-panel {
  height: 260px !important;
  padding: 28px 16px !important;
  border-radius: 24px !important;
}
.agent-side-panel strong {
  font-size: 18px !important;
  margin-bottom: 18px !important;
}
.agent-criterion {
  height: 52px !important;
  grid-template-columns: 24px 1fr !important;
  gap: 10px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
}
.agent-person-card {
  height: 260px !important;
  min-width: 0 !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: 86px !important;
  grid-template-columns: 26px 48px minmax(0, 1fr) 24px 24px !important;
  column-gap: 10px !important;
  padding: 0 16px !important;
  min-width: 0 !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
}
.agent-status {
  width: 23px !important;
  height: 23px !important;
}
.agent-status.done {
  font-size: 16px !important;
}
.agent-person-main {
  display: grid !important;
  grid-template-rows: auto auto !important;
  gap: 4px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
.agent-name,
.agent-company {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  margin: 0 !important;
}
.agent-name {
  font-size: clamp(13px, .9vw, 15px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
}
.agent-company {
  font-size: clamp(11px, .75vw, 12px) !important;
  line-height: 1.08 !important;
}
.agent-micro-icon,
.agent-linkedin {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
}
.agent-micro-icon svg {
  width: 18px !important;
  height: 18px !important;
}
.agent-linkedin {
  border-radius: 5px !important;
  font-size: 14px !important;
}
.agent-linkedin.empty {
  font-size: 13px !important;
  border-width: 2px !important;
}
.agent-flow-arrow {
  font-size: 28px !important;
  width: 24px !important;
}
.agent-actions {
  width: 118px !important;
  height: 246px !important;
  padding-left: 14px !important;
  gap: 20px !important;
  min-width: 0 !important;
}
.agent-actions::before {
  left: 37px !important;
  top: 40px !important;
  bottom: 40px !important;
}
.agent-action {
  grid-template-columns: 48px minmax(0, 1fr) !important;
  gap: 8px !important;
  font-size: 12px !important;
}
.agent-action-bubble {
  width: 48px !important;
  height: 48px !important;
}
.agent-action-bubble svg {
  width: 22px !important;
  height: 22px !important;
}
.agent-final-note {
  margin-top: 26px !important;
}
@media (max-width: 980px) {
  .home-hero-graphic-block.agent-flow-canvas {
    overflow-x: auto !important;
  }
  .agent-flow-map,
  .agent-step-row,
  .agent-visual-row,
  .agent-final-note {
    min-width: 1040px !important;
  }
}



/* Focused polish pass: use the project typography, real LinkedIn mark, stable looping loader, and balanced card text. */
.home-hero-graphic-block.agent-flow-canvas,
.home-hero-graphic-block.agent-flow-canvas * {
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif) !important;
  font-synthesis: none;
}

.agent-flow-pill {
  font-weight: 750 !important;
  letter-spacing: -0.025em !important;
}
.agent-flow-target {
  font-weight: 760 !important;
  letter-spacing: -0.045em !important;
}
.agent-step-copy h3 {
  font-weight: 760 !important;
  letter-spacing: -0.052em !important;
}
.agent-step-copy p {
  font-weight: 620 !important;
  letter-spacing: -0.012em !important;
}
.agent-side-panel strong,
.agent-criterion,
.agent-action {
  font-weight: 720 !important;
}
.agent-person-row {
  grid-template-columns: 24px 46px minmax(128px, 1fr) 24px 24px !important;
  column-gap: 9px !important;
  padding: 0 15px !important;
}
.agent-name {
  font-weight: 740 !important;
  letter-spacing: -0.03em !important;
}
.agent-company {
  font-weight: 640 !important;
  letter-spacing: -0.012em !important;
  color: #0645a8 !important;
}

.agent-status.loading {
  background: transparent !important;
  border: 3px solid rgba(20, 120, 255, 0.16) !important;
  border-top-color: #1478ff !important;
  border-right-color: #1478ff !important;
  border-radius: 999px !important;
  mask: none !important;
  -webkit-mask: none !important;
  animation: agentSpin 1.05s linear infinite !important;
  will-change: transform;
}

.agent-linkedin {
  position: relative !important;
  font-size: 0 !important;
  letter-spacing: 0 !important;
  color: #ffffff !important;
  background: #0a66c2 !important;
  border: 0 !important;
  box-shadow: 0 7px 14px rgba(10, 102, 194, 0.12) !important;
}
.agent-linkedin::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.agent-linkedin.empty {
  background: #f7f9fc !important;
  color: #a8b3c1 !important;
  border: 2px solid #b8c3d0 !important;
  box-shadow: none !important;
}
.agent-linkedin.empty::before {
  width: 15px;
  height: 15px;
}



/* Typography pass: reduce step-copy scale and use the existing Coherta project font rhythm. */
.home-hero-graphic-block.agent-flow-canvas,
.home-hero-graphic-block.agent-flow-canvas * {
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif) !important;
}
.agent-flow-pill {
  font-size: clamp(18px, 1.35vw, 22px) !important;
  font-weight: 720 !important;
  letter-spacing: -0.025em !important;
}
.agent-flow-target {
  font-size: clamp(28px, 2vw, 36px) !important;
  font-weight: 720 !important;
  letter-spacing: -0.04em !important;
}
.agent-step-row {
  margin-top: -2px !important;
}
.agent-step-copy h3 {
  font-size: clamp(25px, 1.85vw, 34px) !important;
  line-height: 1.04 !important;
  font-weight: 720 !important;
  letter-spacing: -0.045em !important;
}
.agent-step-copy p {
  margin-top: 11px !important;
  font-size: clamp(13px, 0.9vw, 15px) !important;
  line-height: 1.42 !important;
  font-weight: 560 !important;
  letter-spacing: -0.008em !important;
  max-width: 390px !important;
}
.agent-side-panel strong {
  font-size: 17px !important;
  font-weight: 720 !important;
  letter-spacing: -0.025em !important;
}
.agent-criterion {
  font-size: 12.5px !important;
  font-weight: 650 !important;
}
.agent-name {
  font-size: clamp(12.5px, .82vw, 14px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  font-size: clamp(10.5px, .68vw, 11.5px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.006em !important;
}
.agent-action {
  font-size: 12px !important;
  font-weight: 650 !important;
}
.agent-final-note {
  font-size: 14px !important;
  font-weight: 560 !important;
}



/* Targeted fixes from visual review: no new composition, only spacing, icon states and connectors. */
.agent-flow-map svg path { stroke-dasharray: none !important; }
.agent-visual-row {
  grid-template-columns: 160px minmax(320px, 1fr) minmax(330px, 1.08fr) minmax(360px, 1.14fr) 150px !important;
  gap: clamp(20px, 1.8vw, 32px) !important;
  align-items: center !important;
  margin-top: 38px !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  min-width: 0 !important;
  overflow: visible !important;
}
.agent-person-row {
  grid-template-columns: 34px 62px minmax(142px, 1fr) 30px 30px !important;
  column-gap: 16px !important;
  padding: 0 clamp(22px, 1.5vw, 30px) !important;
}
.agent-person-main { min-width: 0 !important; }
.agent-name,
.agent-company {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.agent-company-icon,
.agent-linkedin,
.agent-micro-icon {
  justify-self: center !important;
  flex: 0 0 auto !important;
}
.agent-company-icon {
  width: 31px !important;
  height: 31px !important;
  color: #071435 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-company-icon svg {
  width: 23px !important;
  height: 23px !important;
  stroke: currentColor !important;
}
.agent-linkedin {
  overflow: hidden !important;
  text-indent: -999px !important;
}
.agent-linkedin::before {
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  transform: translate(-50%, -50%) !important;
  text-indent: 0 !important;
}
.agent-linkedin.empty {
  color: #aeb8c5 !important;
  background: #f7f9fc !important;
  border: 2px solid #bac5d2 !important;
}
.agent-status.loading {
  width: 24px !important;
  height: 24px !important;
  border-width: 3px !important;
  background: transparent !important;
  border-color: rgba(20,120,255,.18) !important;
  border-top-color: #1478ff !important;
  border-right-color: #1478ff !important;
  animation: agentSpin 1.2s linear infinite !important;
}
.agent-actions {
  height: 282px !important;
  padding-left: 0 !important;
  margin-left: -6px !important;
  gap: 30px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 43px !important;
  bottom: 43px !important;
  border-left: 2px dashed #1680ff !important;
}
.agent-action {
  grid-template-columns: 58px 1fr !important;
  gap: 14px !important;
}
.agent-action::before {
  left: -36px !important;
  width: 66px !important;
  border-top: 2px dashed #1680ff !important;
}
.agent-step-row {
  padding: 0 clamp(34px, 4vw, 72px) !important;
  gap: clamp(30px, 4vw, 76px) !important;
}
.agent-step-copy + .agent-step-copy {
  padding-left: clamp(28px, 3.5vw, 58px) !important;
}
@media (max-width: 1180px) {
  .agent-flow-map,
  .agent-step-row,
  .agent-visual-row,
  .agent-final-note { min-width: 1180px !important; }
}



/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}



/* Single requested change: remove criteria box and reclaim its column. */
.agent-visual-row {
  grid-template-columns: minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
}
.agent-side-panel { display: none !important; }



/* ROOT FIX 2026-05-12: criteria box is removed, so the visual row must be a 4-column system.
   Columns are: Step 1 card | Step 2 card | Step 3 card | action rail.
   This fixes the compressed Step 1 card without touching the outer canvas. */
.agent-visual-row {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1.04fr) minmax(360px, 1.04fr) 142px !important;
  gap: clamp(18px, 1.45vw, 28px) !important;
  align-items: center !important;
  justify-content: end !important;
  padding-left: clamp(18px, 2.4vw, 42px) !important;
  padding-right: 0 !important;
  margin-top: 34px !important;
  overflow: visible !important;
}
.agent-visual-row > .agent-flow-arrow,
.agent-side-panel {
  display: none !important;
}
.agent-visual-row > .agent-person-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 286px !important;
  overflow: hidden !important;
  border-radius: 26px !important;
}
.agent-person-row {
  height: calc(286px / 3) !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) auto auto !important;
  column-gap: 12px !important;
  align-items: center !important;
  padding: 0 22px !important;
  min-width: 0 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  grid-column: 1 !important;
  width: 50px !important;
  height: 50px !important;
  justify-self: start !important;
  border-radius: 999px !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.agent-person-main {
  grid-column: 2 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-title,
.agent-company {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.agent-name {
  color: #122243 !important;
  font-size: 15px !important;
  line-height: 1.05 !important;
  font-weight: 780 !important;
  letter-spacing: -0.03em !important;
}
.agent-title {
  color: #52637d !important;
  font-size: 12px !important;
  line-height: 1.05 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-company {
  color: #003c9f !important;
  font-size: 12px !important;
  line-height: 1.05 !important;
  font-weight: 680 !important;
  letter-spacing: -0.01em !important;
}
.agent-company-icon,
.agent-micro-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-company-icon,
.agent-micro-icon {
  width: 28px !important;
  height: 28px !important;
}
.agent-company-icon svg,
.agent-micro-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  border-radius: 7px !important;
}
.agent-actions {
  width: 142px !important;
  min-width: 142px !important;
  height: 270px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 24px !important;
  overflow: visible !important;
}
.agent-action {
  grid-template-columns: 56px minmax(0, 1fr) !important;
  gap: 12px !important;
  font-size: 13px !important;
}
.agent-action::before {
  left: -24px !important;
  width: 48px !important;
}
.agent-actions::before {
  left: 28px !important;
  top: 42px !important;
  bottom: 42px !important;
}
.agent-action-bubble {
  width: 56px !important;
  height: 56px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

.co-agent-card {
  position: relative;
}

.co-agent-card::before {
  content: attr(data-visual-title);
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 8px;
  background: #f4f8ff;
  border: 1px solid #d5e3f8;
  color: #123d86;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(31, 53, 84, .08);
}

.co-agent-card-message::before {
  background: #eefbf5;
  border-color: #c9eddc;
  color: #0d6a43;
}

.co-agent-card-monitor::before {
  background: #fff6e8;
  border-color: #f3d7aa;
  color: #8a4c07;
}

.co-change-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 7px;
  background: #fff6e8;
  border: 1px solid #f3d7aa;
  color: #8a4c07;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.co-agent-card-monitor .co-row-action:first-of-type .co-row-action-bubble {
  background: #fff6e8 !important;
  color: #8a4c07 !important;
}

.co-agent-card-monitor .co-row-action:first-of-type .co-row-action-label {
  color: #8a4c07 !important;
}


/* Social proof section, compact Lemlist-inspired card */
.coherta-proof-section{
  width:min(100% - 48px, 1512px);
  margin:52px auto 72px;
  font-family:inherit;
}
.coherta-proof-intro{
  max-width:1120px;
  margin:0 auto 26px;
  text-align:center;
}
.coherta-proof-title{
  margin:0 0 12px;
  color:#0d1b3d;
  font-size:clamp(28px,2.6vw,44px);
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:800;
}
.coherta-proof-text{
  margin:0 auto;
  max-width:940px;
  color:#61708c;
  font-size:clamp(16px,1.15vw,19px);
  line-height:1.55;
  font-weight:600;
}
.coherta-proof-highlight{
  color:#0d1b3d;
  font-weight:800;
  white-space:nowrap;
}
.coherta-proof-metric{
  display:none !important;
}
.coherta-proof-metric{
  display:none !important;
}
.coherta-proof-dot{display:none !important;}
.coherta-testimonial-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:154px minmax(0,1fr);
  gap:34px;
  align-items:center;
  min-height:244px;
  padding:38px 56px 38px 66px;
  border-radius:28px;
  background:#191a20;
  color:#fff;
  box-shadow:0 24px 64px rgba(9,18,38,.17);
}
.coherta-testimonial-card:before,
.coherta-testimonial-card:after{
  position:absolute;
  font-size:96px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.055);
  pointer-events:none;
}
.coherta-testimonial-card:before{content:'“';left:36px;top:28px;}
.coherta-testimonial-card:after{content:'”';right:44px;bottom:18px;}
.coherta-testimonial-photo-wrap{
  position:relative;
  width:138px;
  height:138px;
  margin-left:18px;
  border-radius:22px;
  padding:5px;
  background:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.24);
  z-index:1;
}
.coherta-testimonial-photo{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:17px;
}
.coherta-testimonial-content{position:relative;z-index:1;max-width:940px;}
.coherta-testimonial-quote{
  margin:0;
  font-size:clamp(22px,1.9vw,32px);
  line-height:1.28;
  letter-spacing:-.032em;
  font-weight:800;
  color:#fff;
}
.coherta-testimonial-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:11px;
  margin-top:20px;
  font-size:15px;
  line-height:1.35;
}
.coherta-testimonial-name{font-weight:800;color:#fff;}
.coherta-testimonial-role{font-weight:700;color:rgba(255,255,255,.58);}
@media (max-width:900px){
  .coherta-proof-section{width:min(100% - 28px,1512px);margin:40px auto 56px;}
  .coherta-testimonial-card{grid-template-columns:1fr;gap:24px;padding:34px 26px;}
  .coherta-testimonial-photo-wrap{width:132px;height:132px;}
  .coherta-testimonial-quote{font-size:24px;}
}



/* Restore product-card visuals after homepage work: same stable image treatment as stakeholder-monitoring cards. */
.home-product-image,
.home-product-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-datenbereinigung .home-product-stage img,
.card-outreach .home-product-stage img,
.card-monitoring .home-product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #ffffff;
}
.card-datenbereinigung .home-product-stage img { transform: scale(0.96); }
.card-outreach .home-product-stage img { transform: scale(0.98); }


/* Subtle AI agents bridge */
.coherta-agent-bridge {
  max-width: 1120px;
  margin: 18px auto 26px;
  padding: 0 22px;
}
.coherta-agent-bridge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 26px;
  border: 1px solid rgba(37, 99, 235, 0.10);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,249,255,0.92));
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055);
}
.coherta-agent-bridge-copy {
  min-width: 0;
}
.coherta-agent-bridge-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #2563eb;
}
.coherta-agent-bridge h2 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #0f172a;
}
.coherta-agent-bridge p {
  margin: 0;
  max-width: 680px;
  font-size: 15px;
  line-height: 1.65;
  color: #536076;
}
.coherta-agent-bridge-chips {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}
.coherta-agent-bridge-chip {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #1e293b;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}
@media (max-width: 820px) {
  .coherta-agent-bridge { margin: 14px auto 22px; padding: 0 16px; }
  .coherta-agent-bridge-inner { align-items: flex-start; flex-direction: column; padding: 20px; }
  .coherta-agent-bridge-chips { justify-content: flex-start; }
}

/* Single requested fix: extend the Step 3 card area to the right so its content stays inside the card. No other design changes. */
.agent-visual-row {
  grid-template-columns: minmax(128px, 150px) 24px minmax(0, .94fr) 24px minmax(0, .98fr) 24px minmax(0, 1.24fr) minmax(92px, 106px) !important;
}
.agent-actions {
  width: 106px !important;
  padding-left: 10px !important;
}
.agent-actions::before {
  left: 33px !important;
}
.agent-action::before {
  left: -18px !important;
  width: 22px !important;
}


/* Targeted fixes from visual review: no new composition, only spacing, icon states and connectors. */
.agent-flow-map svg path { stroke-dasharray: none !important; }
.agent-visual-row {
  grid-template-columns: 160px minmax(320px, 1fr) minmax(330px, 1.08fr) minmax(360px, 1.14fr) 150px !important;
  gap: clamp(20px, 1.8vw, 32px) !important;
  align-items: center !important;
  margin-top: 38px !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  min-width: 0 !important;
  overflow: visible !important;
}
.agent-person-row {
  grid-template-columns: 34px 62px minmax(142px, 1fr) 30px 30px !important;
  column-gap: 16px !important;
  padding: 0 clamp(22px, 1.5vw, 30px) !important;
}
.agent-person-main { min-width: 0 !important; }
.agent-name,
.agent-company {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.agent-company-icon,
.agent-linkedin,
.agent-micro-icon {
  justify-self: center !important;
  flex: 0 0 auto !important;
}
.agent-company-icon {
  width: 31px !important;
  height: 31px !important;
  color: #071435 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-company-icon svg {
  width: 23px !important;
  height: 23px !important;
  stroke: currentColor !important;
}
.agent-linkedin {
  overflow: hidden !important;
  text-indent: -999px !important;
}
.agent-linkedin::before {
  position: absolute !important;
  inset: 50% auto auto 50% !important;
  transform: translate(-50%, -50%) !important;
  text-indent: 0 !important;
}
.agent-linkedin.empty {
  color: #aeb8c5 !important;
  background: #f7f9fc !important;
  border: 2px solid #bac5d2 !important;
}
.agent-status.loading {
  width: 24px !important;
  height: 24px !important;
  border-width: 3px !important;
  background: transparent !important;
  border-color: rgba(20,120,255,.18) !important;
  border-top-color: #1478ff !important;
  border-right-color: #1478ff !important;
  animation: agentSpin 1.2s linear infinite !important;
}
.agent-actions {
  height: 282px !important;
  padding-left: 0 !important;
  margin-left: -6px !important;
  gap: 30px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 43px !important;
  bottom: 43px !important;
  border-left: 2px dashed #1680ff !important;
}
.agent-action {
  grid-template-columns: 58px 1fr !important;
  gap: 14px !important;
}
.agent-action::before {
  left: -36px !important;
  width: 66px !important;
  border-top: 2px dashed #1680ff !important;
}
.agent-step-row {
  padding: 0 clamp(34px, 4vw, 72px) !important;
  gap: clamp(30px, 4vw, 76px) !important;
}
.agent-step-copy + .agent-step-copy {
  padding-left: clamp(28px, 3.5vw, 58px) !important;
}
@media (max-width: 1180px) {
  .agent-flow-map,
  .agent-step-row,
  .agent-visual-row,
  .agent-final-note { min-width: 1180px !important; }
}



/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Fokusfix: reducer kun den vandrette spildplads mellem datapunkterne i personrækkerne. */
.agent-person-row {
  grid-template-columns: 28px 54px 150px 30px 30px !important;
  column-gap: 10px !important;
  justify-content: start !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.agent-avatar {
  width: 52px !important;
  height: 52px !important;
}

.agent-status {
  width: 24px !important;
  height: 24px !important;
}

.agent-person-main {
  width: 150px !important;
  max-width: 150px !important;
}

.agent-name,
.agent-company {
  display: block !important;
  max-width: 150px !important;
}

.agent-micro-icon,
.agent-linkedin {
  justify-self: start !important;
}

.agent-person-card {
  overflow: hidden !important;
}


/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

.coherta-gtm-templates {
  padding: clamp(72px, 7vw, 116px) 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(21,115,255,.08), transparent 34%),
    linear-gradient(180deg,#fff 0%,#f8fbff 100%);
}
.coherta-gtm-shell {
  max-width: 1440px;
  margin: 0 auto;
}
.coherta-gtm-head {
  max-width: 920px;
  margin: 0 auto 38px;
  text-align: center;
}

.coherta-gtm-head h2 {
  margin:0;
  color:#122243;
  font-size:clamp(38px,4.3vw,64px);
  line-height:1;
  letter-spacing:-.06em;
}
.coherta-gtm-head p {
  margin:18px auto 0;
  max-width:780px;
  color:#66758f;
  font-size:clamp(17px,1.14vw,20px);
  line-height:1.5;
  font-weight:650;
}
.coherta-gtm-stage {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:22px;
  align-items:stretch;
}
.coherta-gtm-panel {
  position:relative;
  border-radius:34px;
  border:1px solid #cfe0fb;
  background:rgba(255,255,255,.86);
  box-shadow:0 28px 70px rgba(18,34,67,.08);
  overflow:hidden;
}
.coherta-gtm-panel:before {
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 0%, rgba(21,115,255,.10), transparent 35%),
    radial-gradient(circle at 100% 14%, rgba(21,115,255,.08), transparent 34%);
  pointer-events:none;
}
.coherta-gtm-panel-inner {
  position:relative;
  z-index:1;
  padding:clamp(24px,2.4vw,36px);
}
.coherta-gtm-label {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  border:1px solid #d8e7ff;
  background:rgba(255,255,255,.78);
  border-radius:999px;
  color:#3f6df6;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.coherta-gtm-muted-note {
  color:#7a88a0;
  font-size:13px;
  font-weight:750;
}
.coherta-gtm-panel h3 {
  margin:0;
  color:#122243;
  font-size:clamp(26px,2vw,34px);
  line-height:1.06;
  letter-spacing:-.045em;
}
.coherta-gtm-panel-copy {
  margin:10px 0 24px;
  max-width:620px;
  color:#697891;
  font-size:16px;
  line-height:1.47;
  font-weight:650;
}
.coherta-template-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.coherta-template-card {
  display:flex;
  flex-direction:column;
  min-height:205px;
  padding:18px;
  border-radius:24px;
  border:1px solid #d9e7fb;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  box-shadow:0 14px 34px rgba(18,34,67,.055);
}
.coherta-template-top {
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}
.coherta-template-card h4 {
  margin:0;
  color:#122243;
  font-size:19px;
  line-height:1.08;
  letter-spacing:-.035em;
}
.coherta-template-card p {
  margin:9px 0 0;
  color:#66758f;
  font-size:13.5px;
  line-height:1.38;
  font-weight:650;
}
.coherta-template-count {
  flex:0 0 auto;
  padding:7px 10px;
  border-radius:999px;
  color:#0b61df;
  background:#eef6ff;
  border:1px solid #d5e8ff;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
.coherta-template-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.coherta-template-meta span {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 9px;
  border-radius:999px;
  background:#f3f7fc;
  border:1px solid #e0e9f6;
  color:#53627a;
  font-size:12px;
  font-weight:800;
}
.coherta-template-meta span:before {
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#1573ff;
  opacity:.75;
}
.coherta-template-preview {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
  padding-top:15px;
  color:#122243;
  font-size:13px;
  font-weight:850;
}
.coherta-template-preview small {
  color:#7a88a0;
  font-size:12px;
  font-weight:750;
}
.coherta-workflow-pack {
  display:grid;
  gap:13px;
}
.coherta-workflow-card {
  padding:18px;
  border-radius:24px;
  border:1px solid #d9e7fb;
  background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
  box-shadow:0 14px 34px rgba(18,34,67,.055);
}
.coherta-workflow-card-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.coherta-workflow-card h4 {
  margin:0;
  color:#122243;
  font-size:20px;
  line-height:1.1;
  letter-spacing:-.04em;
}
.coherta-workflow-card p {
  margin:8px 0 0;
  color:#66758f;
  font-size:13.5px;
  line-height:1.38;
  font-weight:650;
}
.coherta-workflow-pill {
  flex:0 0 auto;
  color:#0b61df;
  background:#eef6ff;
  border:1px solid #d5e8ff;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:900;
}
.coherta-flow-steps {
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}
.coherta-flow-steps span {
  display:inline-flex;
  align-items:center;
  min-height:31px;
  padding:0 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid #dfe9f8;
  color:#122243;
  font-size:12.5px;
  font-weight:850;
}
.coherta-flow-steps i {
  display:inline-flex;
  color:#8da0bd;
  font-style:normal;
  font-weight:900;
}
.coherta-gtm-ctas {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:30px;
}
.coherta-gtm-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:50px;
  padding:0 21px;
  border-radius:999px;
  font-size:15px;
  font-weight:850;
  text-decoration:none;
  transition:transform .16s ease, box-shadow .16s ease;
}
.coherta-gtm-cta.primary {
  color:#fff;
  border:1px solid var(--brand);
  background:var(--brand);
  font-weight:500;
  box-shadow:0 10px 22px rgba(63,109,246,.18);
}
.coherta-gtm-cta.secondary {
  color:#122243;
  background:#fff;
  border:1px solid #d8e6fb;
}
.coherta-gtm-cta:hover { transform:translateY(-2px); }
@media (max-width: 1060px) {
  .coherta-gtm-stage { grid-template-columns:1fr; }
}
@media (max-width: 720px) {
  .coherta-gtm-templates { padding:60px 18px; }
  .coherta-template-grid { grid-template-columns:1fr; }.coherta-workflow-card-head,
.coherta-template-top { flex-direction:column; align-items:flex-start; }
}

.coherta-gtm-refined {
  padding: clamp(76px, 7vw, 118px) 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.coherta-gtm-refined .coherta-gtm-shell {
  max-width: 1360px;
}
.coherta-gtm-refined .coherta-gtm-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.coherta-gtm-refined .coherta-gtm-head h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #122243;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.coherta-gtm-refined .coherta-gtm-head p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #66758f;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.55;
  font-weight: 620;
}
.coherta-gtm-refined .coherta-gtm-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 2.2vw, 32px);
  align-items: stretch;
}
.coherta-gtm-refined .coherta-gtm-panel {
  position: relative;
  border-radius: 34px;
  border: 1px solid #d5e4f8;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 66px rgba(18,34,67,.07);
  overflow: hidden;
}
.coherta-gtm-refined .coherta-gtm-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 0%, rgba(21,115,255,.055), transparent 38%);
  pointer-events: none;
}
.coherta-gtm-refined .coherta-gtm-panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 2.3vw, 36px);
}
.coherta-gtm-refined .coherta-gtm-label {
  padding: 0;
  border: 0;
  background: transparent;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.coherta-gtm-refined .coherta-gtm-textlink {
  color: #7a88a0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 760;
}
.coherta-gtm-refined .coherta-gtm-panel h3 {
  max-width: 560px;
  margin: 0;
  color: #122243;
  font-size: clamp(26px, 2.05vw, 34px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.coherta-gtm-refined .coherta-gtm-panel-copy {
  max-width: 610px;
  margin: 10px 0 26px;
  color: #687891;
  font-size: 15.5px;
  line-height: 1.52;
  font-weight: 620;
}
.coherta-gtm-refined .coherta-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.coherta-gtm-refined .coherta-template-card,
.coherta-gtm-refined .coherta-workflow-card {
  border-radius: 25px;
  border: 1px solid #dce8f7;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  box-shadow: 0 14px 34px rgba(18,34,67,.05);
}
.coherta-gtm-refined .coherta-template-card {
  min-height: 196px;
  padding: 20px;
}
.coherta-gtm-refined .coherta-template-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.coherta-gtm-refined .coherta-template-card h4,
.coherta-gtm-refined .coherta-workflow-card h4 {
  margin: 0;
  color: #122243;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.coherta-gtm-refined .coherta-template-card p,
.coherta-gtm-refined .coherta-workflow-card p {
  margin: 9px 0 0;
  color: #697891;
  font-size: 13.5px;
  line-height: 1.42;
  font-weight: 620;
}
.coherta-gtm-refined .coherta-template-count,
.coherta-gtm-refined .coherta-workflow-pill {
  flex: 0 0 auto;
  min-width: 62px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #d7e7fa;
  background: #f5f9ff;
  color: #0b61df;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  white-space: nowrap;
}
.coherta-gtm-refined .coherta-template-count:after {
  content: " virksomheder";
}
.coherta-gtm-refined .coherta-template-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.coherta-gtm-refined .coherta-template-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #e1eaf6;
  background: #f7faff;
  color: #52617a;
  font-size: 12px;
  font-weight: 760;
}
.coherta-gtm-refined .coherta-template-meta span:before {
  display: none;
}
.coherta-gtm-refined .coherta-template-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef3fb;
  color: #122243;
  font-size: 13px;
  font-weight: 850;
}
.coherta-gtm-refined .coherta-template-preview small {
  color: #7b8aa1;
  font-size: 12px;
  font-weight: 720;
}
.coherta-gtm-refined .coherta-workflow-pack {
  display: block;
}
.coherta-gtm-refined .coherta-workflow-card {
  padding: 22px;
}
.coherta-gtm-refined .coherta-workflow-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.coherta-gtm-refined .coherta-flow-steps {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #eef3fb;
}
.coherta-gtm-refined .coherta-flow-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dfe9f8;
  color: #122243;
  font-size: 12.5px;
  font-weight: 800;
}
.coherta-gtm-refined .coherta-flow-steps i {
  color: #91a2bc;
  font-style: normal;
  font-weight: 900;
}
.coherta-gtm-refined .coherta-gtm-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.coherta-gtm-refined .coherta-gtm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 820;
  text-decoration: none;
}
.coherta-gtm-refined .coherta-gtm-cta.primary {
  color: #fff;
  border: 1px solid var(--brand);
  background: var(--brand);
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(63,109,246,.18);
}
.coherta-gtm-refined .coherta-gtm-cta.secondary {
  color: #122243;
  background: #fff;
  border: 1px solid #d8e6fb;
}
@media (max-width: 1060px) {
  .coherta-gtm-refined .coherta-gtm-stage { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .coherta-gtm-refined { padding: 58px 18px; }
  .coherta-gtm-refined .coherta-template-grid { grid-template-columns: 1fr; }.coherta-gtm-refined .coherta-template-top,
.coherta-gtm-refined .coherta-workflow-card-head { align-items: flex-start; flex-direction: column; }
}

.coherta-gtm-focused {
  padding: clamp(72px, 7vw, 112px) 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.coherta-gtm-focused-shell {
  max-width: 1360px;
  margin: 0 auto;
}
.coherta-gtm-focused-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.coherta-gtm-focused-head span,
.coherta-gtm-focused-topline span {
  display: inline-flex;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.coherta-gtm-focused-head h2 {
  margin: 12px auto 0;
  color: #122243;
  font-size: clamp(34px, 3.25vw, 56px);
  line-height: 1.02;
  letter-spacing: -.058em;
}
.coherta-gtm-focused-head p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #66758f;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.55;
  font-weight: 620;
}
.coherta-gtm-focused-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 3vw, 44px);
  align-items: stretch;
}
.coherta-gtm-focused-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid #d8e7fb;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 70px rgba(18,34,67,.065);
}
.coherta-gtm-focused-panel:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(21,115,255,.06), transparent 40%);
}
.coherta-gtm-focused-panel {
  padding: clamp(26px, 2.6vw, 38px);
}
.coherta-gtm-focused-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.coherta-gtm-focused-topline a {
  color: #75849d;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.coherta-gtm-focused-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 30px;
}
.coherta-gtm-focused-copy h3 {
  margin: 0;
  color: #122243;
  font-size: clamp(27px, 2vw, 36px);
  line-height: 1.08;
  letter-spacing: -.047em;
}
.coherta-gtm-focused-copy p {
  margin: 11px 0 0;
  max-width: 620px;
  color: #687891;
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 620;
}
.coherta-gtm-list-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.coherta-gtm-list-card,
.coherta-gtm-workflow-preview {
  border-radius: 25px;
  border: 1px solid #dde9f8;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 16px 40px rgba(18,34,67,.052);
}
.coherta-gtm-list-card {
  display: flex;
  flex-direction: column;
  min-height: 226px;
  padding: 22px;
}
.coherta-gtm-list-card h4,
.coherta-gtm-workflow-head h4 {
  margin: 0;
  color: #122243;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.coherta-gtm-list-card p,
.coherta-gtm-workflow-head p {
  margin: 10px 0 0;
  color: #677791;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 620;
}
.coherta-gtm-list-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.coherta-gtm-list-meta strong,
.coherta-gtm-workflow-head span {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0 13px;
  border-radius: 999px;
  color: #0b61df;
  background: #eef6ff;
  border: 1px solid #d5e8ff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.coherta-gtm-list-meta span {
  color: #697891;
  font-size: 13px;
  font-weight: 800;
}
.coherta-gtm-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #edf2f8;
  color: #122243;
  font-size: 14px;
  font-weight: 900;
}
.coherta-gtm-list-footer i {
  color: #7b8aa2;
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
}
.coherta-gtm-workflow-preview {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.coherta-gtm-workflow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf2f8;
}
.coherta-gtm-workflow-path {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.coherta-gtm-workflow-path b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid #dfe9f8;
  background: #fff;
  color: #122243;
  font-size: 13px;
  font-weight: 850;
}
.coherta-gtm-workflow-path i {
  color: #91a3bf;
  font-style: normal;
  font-weight: 900;
}
.coherta-gtm-message-preview {
  margin-top: 20px;
  padding: 18px 19px;
  border-radius: 20px;
  background: #f7faff;
  border: 1px solid #e2ecf8;
}
.coherta-gtm-message-preview small {
  display: block;
  color: #3f6df6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.coherta-gtm-message-preview p {
  margin: 8px 0 0;
  color: #5f6f88;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 620;
}
.coherta-gtm-ctas { display: none !important; }
@media (max-width: 1080px) {
  .coherta-gtm-focused-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .coherta-gtm-focused { padding: 62px 18px; }
  .coherta-gtm-list-preview { grid-template-columns: 1fr; }
  .coherta-gtm-focused-topline, .coherta-gtm-workflow-head { flex-direction: column; align-items: flex-start; }
}

/* Coherta GTM templates - rebuilt clean as two premium template cards */
.coherta-gtm-redesign{
  padding:24px 32px 0;
  background:#fff;
  overflow:hidden;
}
.gtm-redesign-shell{
  max-width:1540px;
  margin:0 auto;
  padding:clamp(56px,5vw,82px) clamp(26px,4vw,56px) clamp(46px,4vw,62px);
  border-radius:42px;
  background:linear-gradient(180deg,#356bff 0%,#2f62f2 100%);
  position:relative;
  overflow:hidden;
  box-shadow:0 28px 72px rgba(18,44,98,.18);
}
.gtm-redesign-shell:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 0%,rgba(255,255,255,.22),transparent 28%),
    radial-gradient(circle at 82% 12%,rgba(255,255,255,.14),transparent 30%),
    linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:auto,auto,76px 76px,76px 76px;
  pointer-events:none;
}
.gtm-redesign-shell>*{position:relative;z-index:1}
.gtm-redesign-head{max-width:900px;margin:0 auto 38px;text-align:center;color:#fff}
.gtm-redesign-head h2{margin:0;color:#fff;font-size:clamp(36px,4vw,62px);line-height:1;letter-spacing:-.058em;font-weight:850;text-wrap:balance}
.gtm-redesign-head p{max-width:780px;margin:18px auto 0;color:rgba(255,255,255,.82);font-size:clamp(17px,1.35vw,21px);line-height:1.42;font-weight:650;letter-spacing:-.025em;text-wrap:balance}
.gtm-redesign-grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;align-items:stretch;max-width:1360px;margin:0 auto}
.gtm-template-side{
  position:relative;
  min-height:560px;
  padding:34px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:34px;
  background:rgba(255,255,255,.92);
  box-shadow:0 24px 64px rgba(5,20,60,.18);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.gtm-template-side:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:34px;
  background:radial-gradient(circle at 18% 0%,rgba(47,103,245,.10),transparent 36%),linear-gradient(180deg,rgba(255,255,255,.78),rgba(246,250,255,.92));
  pointer-events:none;
}
.gtm-template-side>*{position:relative;z-index:1}
.gtm-side-head{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:26px}
.gtm-side-head span{display:inline-flex;align-items:center;gap:9px;color:#2f67f5;font-size:14px;letter-spacing:.15em;text-transform:uppercase;font-weight:850}
.gtm-side-head span:before{content:"";width:8px;height:8px;border-radius:999px;background:#2f67f5;box-shadow:0 0 0 6px rgba(47,103,245,.10)}
.gtm-side-head small{color:#7b879d;font-size:15px;font-weight:760;letter-spacing:-.015em}
.gtm-card-stack{display:grid;grid-template-columns:1fr;gap:18px;flex:1;align-items:stretch}
.gtm-template-card{
  min-height:430px;
  height:100%;
  padding:30px;
  border:1px solid rgba(47,103,245,.17);
  border-radius:30px;
  background:linear-gradient(180deg,#fff,#fbfdff);
  box-shadow:0 20px 48px rgba(15,43,90,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.gtm-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:24px}
.gtm-card-metric{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:0 15px;border:1px solid rgba(47,103,245,.16);border-radius:999px;background:#eef6ff;color:#0662e8;font-size:16px;font-weight:850;letter-spacing:-.02em;white-space:nowrap}
.gtm-template-card h3{margin:0;color:#0b1736;font-size:clamp(26px,2vw,34px);line-height:1.02;letter-spacing:-.055em;font-weight:850;text-wrap:balance}
.gtm-template-card p{max-width:430px;margin:13px 0 0;color:#64728a;font-size:17px;line-height:1.36;font-weight:650;letter-spacing:-.02em;text-wrap:balance}
.gtm-card-preview{margin-top:28px;border:1px solid rgba(17,38,74,.08);border-radius:24px;background:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.9);overflow:hidden}
.gtm-preview-row{display:grid;grid-template-columns:1fr auto;align-items:center;gap:18px;padding:18px 20px;border-bottom:1px solid rgba(17,38,74,.07)}
.gtm-preview-row:last-child{border-bottom:0}
.gtm-preview-name{display:flex;flex-direction:column;gap:3px;color:#0b1736;font-size:16px;font-weight:830;letter-spacing:-.025em}
.gtm-preview-name small{color:#76849c;font-size:13px;font-weight:740;letter-spacing:-.01em}
.gtm-preview-pill{display:inline-flex;align-items:center;justify-content:center;height:30px;padding:0 11px;border-radius:999px;background:#f1f6ff;border:1px solid rgba(47,103,245,.14);color:#2f67f5;font-size:13px;font-weight:850;white-space:nowrap}
.gtm-flow-preview{margin-top:30px;display:flex;flex-direction:column;gap:14px}
.gtm-flow-step{display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:14px;padding:15px 17px;border:1px solid rgba(47,103,245,.12);border-radius:18px;background:#fff;box-shadow:0 12px 24px rgba(15,43,90,.045)}
.gtm-flow-step i{width:34px;height:34px;border-radius:13px;display:grid;place-items:center;background:#eef6ff;color:#2f67f5;font-style:normal;font-size:13px;font-weight:900}
.gtm-flow-step b{color:#0b1736;font-size:16px;font-weight:840;letter-spacing:-.025em}
.gtm-flow-step small{color:#7b879d;font-size:13px;font-weight:760;white-space:nowrap}
.gtm-card-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:auto;padding-top:26px}
.gtm-card-footer a{display:inline-flex;align-items:center;gap:8px;color:#0b1736;text-decoration:none;font-size:17px;font-weight:850;letter-spacing:-.025em}
.gtm-card-footer a:after{content:"→";color:#2f67f5;font-size:18px;line-height:1}
.gtm-card-footer span{color:#7d8aa2;font-size:14px;font-weight:760;letter-spacing:-.015em;text-align:right}
.gtm-template-side[data-type="workflow"] .gtm-card-metric{background:#f3f7ff;color:#0b1736}
.gtm-template-side[data-type="workflow"] .gtm-flow-step i{background:#101a34;color:#fff}
@media (max-width:1180px){.gtm-redesign-grid{grid-template-columns:1fr}.gtm-template-side{min-height:auto}.gtm-template-card{min-height:390px}}
@media (max-width:760px){.coherta-gtm-redesign{padding:18px 14px 0}.gtm-redesign-shell{padding:46px 18px 34px;border-radius:30px}.gtm-redesign-head{text-align:left}.gtm-template-side{padding:22px;border-radius:26px}.gtm-side-head{align-items:flex-start;flex-direction:column}.gtm-template-card{min-height:auto;padding:22px;border-radius:24px}.gtm-card-top,.gtm-card-footer{align-items:flex-start;flex-direction:column}.gtm-preview-row{grid-template-columns:1fr}.gtm-flow-step{grid-template-columns:34px 1fr}}

.gtm-template-section-v2 {
  --gtm-blue: #356bff;
  --gtm-blue-2: #2f62f2;
  --gtm-panel-blue: #356bff;
  --gtm-panel-blue-2: #2f62f2;
  --gtm-bg: #eef5ff;
  --gtm-bg-2: #f7fbff;
  --gtm-ink: #101d3b;
  --gtm-muted: #66748c;
  --gtm-border: #cfe0ff;
  --gtm-line: #e2ecfb;
  padding: 96px 18px;
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,255,.15), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}
.gtm-template-inner-v2 {
  width: min(1420px, 100%);
  margin: 0 auto;
}
.gtm-template-heading-v2 {
  max-width: 890px;
  margin: 0 auto 44px;
  text-align: center;
}
.gtm-template-heading-v2 h2 {
  margin: 0;
  color: var(--gtm-ink);
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 860;
}
.gtm-template-heading-v2 p {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--gtm-muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.48;
  font-weight: 590;
}
.gtm-template-shell-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.gtm-lane-v2 {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 36px;
  background: linear-gradient(180deg, #356bff 0%, #2f62f2 100%);
  box-shadow: 0 30px 80px rgba(47, 98, 242, .24);
  padding: 34px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.gtm-lane-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .7;
  pointer-events: none;
}
.gtm-lane-v2 > * {
  position: relative;
  z-index: 1;
}
.gtm-lane-head-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}
.gtm-lane-label-v2 {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}
.gtm-lane-head-v2 h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 700;
}
.gtm-lane-note-v2 {
  white-space: nowrap;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.54;
  font-weight: 500;
  padding-top: 8px;
}
.gtm-card-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.gtm-template-card-v2 {
  position: relative;
  min-height: 328px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  padding: 26px;
  box-shadow: 0 22px 60px rgba(8, 25, 70, .13);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.gtm-template-card-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 8%, rgba(53,107,255,.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(240,246,255,.35));
  opacity: .8;
}
.gtm-template-card-v2:hover {
  transform: translateY(-4px);
  border-color: #9fc3ff;
  box-shadow: 0 26px 62px rgba(16,40,84,.11);
}
.gtm-card-top-v2,
.gtm-card-main-v2,
.gtm-card-stats-v2,
.gtm-flow-preview-v2,
.gtm-card-action-v2 {
  position: relative;
  z-index: 1;
}
.gtm-card-top-v2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.gtm-card-type-v2 {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 11px 0 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gtm-blue-2);
  font-size: 11.5px;
  font-weight: 850;
}
.gtm-card-count-v2 {
  color: #6b7891;
  font-size: 14px;
  font-weight: 800;
}
.gtm-card-main-v2 h4 {
  margin: 0;
  color: var(--gtm-ink);
  font-size: 23px;
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 860;
}
.gtm-card-main-v2 p {
  margin: 10px 0 0;
  color: var(--gtm-muted);
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 650;
}
.gtm-card-stats-v2 {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gtm-line);
}
.gtm-card-stats-v2 div {
  min-width: 0;
}
.gtm-card-stats-v2 strong {
  display: block;
  color: var(--gtm-ink);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 860;
}
.gtm-card-stats-v2 span {
  display: block;
  margin-top: 6px;
  color: var(--gtm-muted);
  font-size: 13px;
  font-weight: 760;
}
.gtm-flow-preview-v2 {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--gtm-line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.gtm-flow-preview-v2 span {
  display: inline-flex;
  align-items: center;
  height: 31px;
  padding: 0 10px;
  border: 1px solid #d7e6ff;
  border-radius: 999px;
  background: #fff;
  color: var(--gtm-ink);
  font-size: 12.5px;
  font-weight: 820;
}
.gtm-flow-preview-v2 i {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #9cacc2;
  position: relative;
}
.gtm-flow-preview-v2 i::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #9cacc2;
  border-right: 2px solid #9cacc2;
  transform: translateY(-50%) rotate(45deg);
}
.gtm-card-action-v2 {
  margin-top: 18px;
  color: var(--gtm-blue);
  font-size: 15px;
  font-weight: 850;
}
.gtm-card-action-v2 span {
  display: inline-block;
  transition: transform .2s ease;
}
.gtm-template-card-v2:hover .gtm-card-action-v2 span {
  transform: translateX(3px);
}
@media (max-width: 1160px) {
  .gtm-template-shell-v2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .gtm-template-section-v2 {
    padding: 70px 14px;
  }
  .gtm-lane-v2 {
    padding: 24px;
    border-radius: 28px;
  }
  .gtm-lane-head-v2 {
    display: block;
  }
  .gtm-lane-note-v2 {
    display: inline-block;
    margin-top: 14px;
  }
  .gtm-card-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Lane-level CTA buttons inside the blue panels. */
.gtm-template-section-v2 .gtm-lane-cta-v2 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.gtm-template-section-v2 .gtm-lane-cta-v2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--gtm-blue-2);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 18px 42px rgba(8,25,70,.14), inset 0 1px 0 rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.gtm-template-section-v2 .gtm-lane-cta-v2 a:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 22px 48px rgba(8,25,70,.18), inset 0 1px 0 rgba(255,255,255,.86);
}
.gtm-template-section-v2 .gtm-lane-cta-v2 span {
  display: inline-block;
  transition: transform .2s ease;
}
.gtm-template-section-v2 .gtm-lane-cta-v2 a:hover span { transform: translateX(3px); }

/* Final card alignment pass: equal height, shared typography, tighter type-to-title spacing. */
.gtm-template-section-v2 .gtm-card-grid-v2 { align-items: stretch; }
.gtm-template-section-v2 .gtm-template-card-v2 { height: 100%; font-family: inherit; }
.gtm-template-section-v2 .gtm-card-top-v2,
.gtm-template-section-v2 .gtm-card-main-v2,
.gtm-template-section-v2 .gtm-card-stats-v2,
.gtm-template-section-v2 .gtm-flow-preview-v2,
.gtm-template-section-v2 .gtm-card-action-v2 { width: 100%; }
.gtm-template-section-v2 .gtm-card-main-v2 h4 { font-size: 23px; line-height: 1.08; }
.gtm-template-section-v2 .lead-card-v2 .gtm-card-stats-v2,
.gtm-template-section-v2 .workflow-card-v2 .gtm-flow-preview-v2 { min-height: 74px; }

/* Template closing CTA: placed directly after the template flow as a calm next step. */
.template-closing-cta {
  padding: 0 18px 92px;
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  font-family: var(--font-main, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}
.template-closing-cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid #d9e6fb;
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 8%, rgba(53,107,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,251,255,.96) 100%);
  box-shadow: 0 24px 70px rgba(14, 35, 78, .10);
}
.template-closing-cta-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #356bff;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.template-closing-cta-copy h2 {
  margin: 0;
  color: #101d3b;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 860;
}
.template-closing-cta-copy p {
  max-width: 690px;
  margin: 13px 0 0;
  color: #66748c;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 590;
}
.template-closing-cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}
.template-closing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: -.015em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.template-closing-cta-btn.primary {
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  font-weight: 500;
  box-shadow: 0 10px 22px rgba(63,109,246,.18);
}
.template-closing-cta-btn.secondary {
  color: #101d3b;
  background: #fff;
  border: 1px solid #d4e1f6;
  box-shadow: 0 14px 34px rgba(14,35,78,.08);
}
.template-closing-cta-btn:hover {
  transform: translateY(-2px);
}
.template-closing-cta-btn.primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 14px 34px rgba(63,109,246,.22);
}
.template-closing-cta-btn.secondary:hover {
  border-color: #b8cdf2;
  box-shadow: 0 18px 40px rgba(14,35,78,.11);
}
@media (max-width: 900px) {
  .template-closing-cta-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .template-closing-cta-actions {
    justify-content: flex-start;
  }
}
@media (max-width: 560px) {
  .template-closing-cta { padding: 0 14px 72px; }
  .template-closing-cta-inner { border-radius: 26px; padding: 24px; }
  .template-closing-cta-actions { align-items: stretch; flex-direction: column; }
  .template-closing-cta-btn { width: 100%; }
}

/* Rodfix efter fjernelse af kriterie-boksen: rækken har nu 6 elementer, ikke 8. */
.agent-visual-row {
  grid-template-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 126px !important;
  gap: 10px !important;
  align-items: center !important;
}
.agent-visual-row > .agent-person-card {
  min-width: 0 !important;
  width: 100% !important;
}
.agent-visual-row > .agent-flow-arrow {
  width: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
}
.agent-actions {
  width: 126px !important;
  min-width: 126px !important;
  padding-left: 12px !important;
}

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Root fix: after removing the criteria panel, the visual row must be a 3-card grid plus actions. */
.agent-visual-row{
  grid-template-columns: repeat(3, minmax(300px, 1fr)) 132px !important;
  column-gap: 22px !important;
  align-items: center !important;
  padding: 0 clamp(18px, 2.2vw, 34px) !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}
.agent-visual-row > .agent-flow-arrow{
  display:none !important;
}
.agent-visual-row > .agent-person-card{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  justify-self:stretch !important;
}
.agent-person-card{
  height: 300px !important;
  overflow:hidden !important;
}
.agent-person-row{
  height:100px !important;
  display:grid !important;
  grid-template-columns: 58px minmax(0, 1fr) auto !important;
  column-gap:14px !important;
  align-items:center !important;
  padding: 0 24px !important;
  box-sizing:border-box !important;
}
.agent-person-row .agent-status{
  display:none !important;
}
.agent-avatar{
  width:56px !important;
  height:56px !important;
  box-shadow:none !important;
  background:transparent !important;
  border:0 !important;
}
.agent-avatar img{
  border-radius:999px !important;
}
.agent-person-main{
  min-width:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}
.agent-name{
  font-size:16px !important;
  line-height:1.05 !important;
  margin:0 !important;
}
.agent-title{
  display:block !important;
  margin-top:4px !important;
  color:#53657f !important;
  font-size:13px !important;
  line-height:1.08 !important;
  font-weight:650 !important;
  letter-spacing:-0.015em !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
.agent-company{
  margin-top:5px !important;
  font-size:13px !important;
  line-height:1.05 !important;
}
.agent-micro-icon,
.agent-linkedin{
  justify-self:end !important;
  flex-shrink:0 !important;
}
.agent-actions{
  width:132px !important;
  min-width:132px !important;
  padding-left:18px !important;
  box-sizing:border-box !important;
}
.agent-action{
  grid-template-columns:54px 1fr !important;
  gap:10px !important;
}
.agent-action-bubble{
  width:54px !important;
  height:54px !important;
}
@media (max-width: 1120px){
  .agent-visual-row{
    grid-template-columns: 1fr !important;
    row-gap:14px !important;
  }
  .agent-actions{display:none !important;}
}

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Fix only the inline action labels in step 3. Keep the three-person cards intact. */
.co-agent-card .co-row-action {
  display: grid !important;
  grid-template-columns: 38px 96px !important;
  column-gap: 12px !important;
  align-items: center !important;
  justify-content: start !important;
  justify-self: end !important;
  min-width: 146px !important;
  width: 146px !important;
  font-size: 13px !important;
  font-weight: 720 !important;
  color: #122243 !important;
  white-space: nowrap !important;
}
.co-agent-card .co-row-action-bubble {
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
}
.co-agent-card .co-row-action-label {
  display: block !important;
  width: 96px !important;
  text-align: left !important;
  line-height: 1 !important;
}

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Story update: step 1 = found but not enriched, step 2 = enriched, step 3 = activated. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icon.co-muted { color: #aab6c5 !important; }
.agent-visual-row .co-agent-card:nth-of-type(1) .co-linkedin.co-empty,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-linkedin.co-empty,
.agent-visual-row .co-agent-card:nth-of-type(3) .co-linkedin.co-empty {
  background: #f7f9fc !important;
  color: #a8b3c1 !important;
  border: 2px solid #b8c3d0 !important;
  box-shadow: none !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icon:not(.co-muted) { color: #071435 !important; }
.agent-visual-row .co-agent-card:nth-of-type(2) .co-linkedin:not(.co-empty) {
  background: #0a66c2 !important;
  color: #fff !important;
  border: 0 !important;
}
.co-icons { gap: 9px !important; min-width: 66px !important; }
.co-row-action { justify-self: end !important; }

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Kun ønsket rettelse: email før telefon i step 1 og 2, og email-ikonet en anelse større. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  order: -1 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail svg,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail svg {
  width: 22px !important;
  height: 22px !important;
}

/* Final alignment: step explanations use the same 3-column rhythm as the three graphic cards. */
.home-hero-graphic-block.agent-flow-canvas .agent-step-row {
  width: min(100%, 1260px) !important;
  margin: 18px auto 0 !important;
  padding: 0 clamp(18px, 2vw, 32px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: clamp(16px, 1.65vw, 24px) !important;
  align-items: start !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-step-copy {
  border-left: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  max-width: none !important;
  min-width: 0 !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-step-copy + .agent-step-copy {
  border-left: 0 !important;
  padding-left: 0 !important;
}.home-hero-graphic-block.agent-flow-canvas .agent-step-copy h3,
.home-hero-graphic-block.agent-flow-canvas .agent-step-copy p {
  margin-left: 0 !important;
}

/* Requested: give the three step texts and the three graphics a little more distance from each other. */
.home-hero-graphic-block.agent-flow-canvas .agent-step-row {
  column-gap: clamp(30px, 3.1vw, 50px) !important;
  width: min(100%, 1300px) !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-visual-row {
  column-gap: clamp(30px, 2.4vw, 42px) !important;
}

/* Calm target input: makes the audience idea feel like something typed into the målgruppeassistent. */
.home-hero-graphic-block.agent-flow-canvas .agent-flow-map {
  height: 190px !important;
  align-items: flex-start !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-map svg {
  height: 190px !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-pill {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 156px !important;
  height: 34px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 760 !important;
  letter-spacing: 0.01em !important;
  color: #156cff !important;
  background: rgba(234, 242, 255, 0.86) !important;
  border: 1px solid rgba(189, 211, 246, 0.96) !important;
  box-shadow: 0 8px 18px rgba(47, 109, 246, 0.06) !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-target {
  position: absolute !important;
  top: 44px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  min-width: min(520px, 56vw) !important;
  height: 64px !important;
  padding: 0 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(196, 215, 242, 0.96) !important;
  box-shadow:
    0 16px 34px rgba(31, 53, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98) !important;
  color: #122243 !important;
  font-size: clamp(24px, 1.95vw, 34px) !important;
  line-height: 1 !important;
  font-weight: 740 !important;
  letter-spacing: -0.045em !important;
  white-space: nowrap !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-target::before {
  content: "";
  width: 12px;
  height: 18px;
  margin-right: 14px;
  flex: 0 0 auto;
  background: #1478ff;
  opacity: 0.94;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.home-hero-graphic-block.agent-flow-canvas .agent-target-caret {
  width: 2px;
  height: 28px;
  margin-left: 7px;
  border-radius: 999px;
  background: rgba(20, 120, 255, 0.72);
  animation: cohertaTargetCaret 1.2s steps(2, start) infinite;
}
@keyframes cohertaTargetCaret {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}
.home-hero-graphic-block.agent-flow-canvas .agent-step-row {
  margin-top: 6px !important;
}
@media (max-width: 980px) {
  .home-hero-graphic-block.agent-flow-canvas .agent-flow-target {
    min-width: 420px !important;
  }
}

/* Fix target input: no eye icon, caret sits after the last letter. */
.home-hero-graphic-block.agent-flow-canvas .agent-flow-target::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-target {
  min-width: 0 !important;
  width: auto !important;
  height: 58px !important;
  padding: 0 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  border-radius: 18px !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-target-input-text {
  display: inline-block !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-target-caret {
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 2px !important;
  height: 0.92em !important;
  margin-left: 5px !important;
  transform: translateY(1px) !important;
}

/* Balance only the målgruppeidé/input component. Nothing below the arrows is changed. */
.home-hero-graphic-block.agent-flow-canvas .agent-flow-pill {
  min-width: 0 !important;
  height: 30px !important;
  padding: 0 15px !important;
  top: 3px !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.015em !important;
  color: #245fae !important;
  background: rgba(241, 246, 255, 0.92) !important;
  border-color: rgba(202, 219, 244, 0.95) !important;
  box-shadow: 0 6px 14px rgba(42, 97, 170, 0.045) !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-flow-target {
  top: 42px !important;
  height: 56px !important;
  padding: 0 28px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(188, 209, 239, 0.98) !important;
  box-shadow: 0 14px 30px rgba(24, 48, 78, 0.075), inset 0 1px 0 rgba(255,255,255,0.98) !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-target-input-text {
  font-size: clamp(21px, 1.62vw, 27px) !important;
  line-height: 1 !important;
  font-weight: 690 !important;
  letter-spacing: -0.032em !important;
  color: #13284c !important;
}
.home-hero-graphic-block.agent-flow-canvas .agent-target-caret {
  height: 0.88em !important;
  margin-left: 4px !important;
  background: rgba(20, 108, 255, 0.62) !important;
}

/* Kun padding inde i de hvide step-bokse. Ingen ny grafik, ingen nye elementer. */
.agent-person-card {
  overflow: visible !important;
}
.agent-person-row {
  padding-left: 34px !important;
  padding-right: 34px !important;
  grid-template-columns: 34px 58px minmax(0, 1fr) 32px 32px !important;
  column-gap: 22px !important;
}
.agent-avatar {
  width: 54px !important;
  height: 54px !important;
}
.agent-person-main {
  min-width: 0 !important;
  padding-right: 10px !important;
}
.agent-name,
.agent-company {
  display: block !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.agent-micro-icon,
.agent-linkedin,
.agent-company-icon {
  justify-self: center !important;
}


/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Rodfix: fjern markørkolonnen uden at flytte ikoner ind over teksten. */
.agent-person-row {
  grid-template-columns: 52px 150px 30px 30px !important;
  column-gap: 8px !important;
  justify-content: start !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.agent-status {
  display: none !important;
}
.agent-avatar {
  width: 52px !important;
  height: 52px !important;
  justify-self: start !important;
}
.agent-person-main {
  width: 150px !important;
  max-width: 150px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: start !important;
}
.agent-name,
.agent-company {
  max-width: 150px !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.agent-company {
  margin-top: 5px !important;
}
.agent-company-icon,
.agent-micro-icon,
.agent-linkedin {
  justify-self: start !important;
  align-self: center !important;
}


/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Rodfix: kriterier-boksen er væk, så grid'et må ikke længere reservere en smal første kolonne.
   Rækken består nu kun af: step 1 kort, step 2 kort, step 3 kort, action-kolonne. */
.agent-side-panel,
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}

.agent-visual-row {
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.04fr) minmax(320px, 1.04fr) 132px !important;
  gap: clamp(16px, 1.35vw, 24px) !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 1500px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: visible !important;
}

.agent-visual-row > .agent-person-card {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 268px !important;
  overflow: hidden !important;
}

.agent-person-row {
  display: grid !important;
  grid-template-columns: 52px minmax(0, 1fr) auto auto !important;
  gap: 12px !important;
  align-items: center !important;
  height: calc(268px / 3) !important;
  padding: 0 24px !important;
  min-width: 0 !important;
}

.agent-person-row .agent-status {
  display: none !important;
}

.agent-avatar {
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  justify-self: start !important;
}

.agent-avatar::before,
.agent-avatar::after {
  display: none !important;
}

.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: start !important;
}

.agent-name,
.agent-company {
  display: block !important;
  max-width: 100% !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
  padding: 0 !important;
}

.agent-name { line-height: 1.15 !important; }
.agent-company { margin-top: 5px !important; line-height: 1.15 !important; }

.agent-company-icon,
.agent-micro-icon,
.agent-linkedin {
  justify-self: end !important;
  align-self: center !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.agent-micro-icon + .agent-linkedin {
  margin-left: 4px !important;
}

.agent-actions {
  width: 132px !important;
  min-width: 132px !important;
  margin-left: 0 !important;
  padding-left: 8px !important;
}

@media (max-width: 1100px) {
  .agent-visual-row {
    grid-template-columns: 1fr !important;
  }
  .agent-actions {
    display: none !important;
  }
}

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Kun justering af padding/afstand i agent-flowet */
.agent-visual-row {
  gap: clamp(6px, 0.65vw, 12px) !important;
  grid-template-columns: 160px minmax(350px, 1fr) minmax(350px, 1fr) minmax(390px, 1.08fr) 138px !important;
}
.agent-person-card {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.agent-person-row {
  padding-left: clamp(12px, 0.85vw, 16px) !important;
  padding-right: clamp(12px, 0.85vw, 16px) !important;
  column-gap: 8px !important;
  grid-template-columns: 30px 54px minmax(118px, 1fr) 28px 28px !important;
}
.agent-avatar {
  width: 48px !important;
  height: 48px !important;
}
.agent-status {
  width: 24px !important;
  height: 24px !important;
}
.agent-status.loading {
  width: 22px !important;
  height: 22px !important;
}
.agent-person-main {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.agent-name,
.agent-company {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.agent-micro-icon,
.agent-linkedin,
.agent-company-icon {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.agent-actions {
  margin-left: 0 !important;
}
@media (max-width: 1180px) {
  .agent-visual-row {
    gap: 10px !important;
  }
}


/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}


/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Rodfix: personrækkerne bygges nu som faste kolonner uden den fjernede markørkolonne.
   Struktur: billede -> tekstblok -> ikon -> ikon. */
.agent-status {
  display: none !important;
}

.agent-person-row {
  display: grid !important;
  grid-template-columns: 52px minmax(142px, 1fr) 32px 32px !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding-left: 22px !important;
  padding-right: 22px !important;
  box-sizing: border-box !important;
}

.agent-avatar {
  grid-column: 1 !important;
  width: 52px !important;
  height: 52px !important;
  justify-self: start !important;
}

.agent-person-main {
  grid-column: 2 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: stretch !important;
}

.agent-name,
.agent-company {
  display: block !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.agent-company { margin-top: 5px !important; }

.agent-company-icon,
.agent-micro-icon {
  grid-column: 3 !important;
  justify-self: center !important;
  align-self: center !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
}

.agent-linkedin {
  grid-column: 4 !important;
  justify-self: center !important;
  align-self: center !important;
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
}

.agent-company-icon svg,
.agent-micro-icon svg {
  width: 21px !important;
  height: 21px !important;
}


/* FINAL ROOT FIX - person cards only
   Purpose: keep the overall canvas untouched, remove the unused status column,
   and make each white person card read as: avatar -> text -> icons.
   This avoids shrinking the whole section or moving the outer frame. */
.agent-visual-row {
  grid-template-columns: 150px minmax(315px, 1fr) minmax(335px, 1.08fr) minmax(335px, 1.08fr) 124px !important;
  gap: clamp(18px, 1.45vw, 26px) !important;
  align-items: center !important;
  justify-content: center !important;
}
.agent-visual-row > .agent-flow-arrow {
  display: none !important;
}
.agent-person-card {
  height: 268px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  border-radius: 24px !important;
}
.agent-person-row {
  height: calc(268px / 3) !important;
  display: grid !important;
  grid-template-columns: 48px minmax(126px, 1fr) auto auto !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 18px 0 20px !important;
  min-width: 0 !important;
  border-bottom-color: #e3ebf6 !important;
}
.agent-person-row .agent-status {
  display: none !important;
}
.agent-avatar {
  width: 46px !important;
  height: 46px !important;
  justify-self: start !important;
  margin: 0 !important;
}
.agent-person-main {
  min-width: 0 !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.agent-name,
.agent-company {
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}
.agent-name {
  font-size: 14px !important;
  line-height: 1.12 !important;
  font-weight: 740 !important;
  letter-spacing: -0.025em !important;
}
.agent-company {
  margin-top: 4px !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 640 !important;
  letter-spacing: -0.01em !important;
}
.agent-micro-icon,
.agent-company-icon,
.agent-linkedin {
  margin: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}
.agent-micro-icon,
.agent-company-icon {
  width: 26px !important;
  height: 26px !important;
}
.agent-micro-icon svg,
.agent-company-icon svg {
  width: 21px !important;
  height: 21px !important;
}
.agent-linkedin {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 6px !important;
}
.agent-linkedin.empty {
  border-width: 2px !important;
}
.agent-actions {
  width: 124px !important;
  min-width: 124px !important;
  height: 252px !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
  gap: 22px !important;
}
.agent-actions::before {
  left: 30px !important;
  top: 38px !important;
  bottom: 38px !important;
}
.agent-action {
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 10px !important;
  font-size: 12.5px !important;
}
.agent-action::before {
  left: -30px !important;
  width: 56px !important;
}
.agent-action-bubble {
  width: 54px !important;
  height: 54px !important;
}
.agent-final-note {
  margin-top: 24px !important;
}



/* HARD ROOT FIX: rebuild the lower flow as three equal cards plus action rail.
   This bypasses the old criteria-wrapper/grid entirely. */
.agent-visual-row {
  width: min(100%, 1320px) !important;
  margin: 34px auto 0 !important;
  padding: 0 clamp(18px, 2vw, 32px) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 142px !important;
  column-gap: clamp(14px, 1.5vw, 24px) !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}
.agent-visual-row > * { min-width: 0 !important; }
.agent-visual-row .agent-person-card,
.agent-visual-row .agent-side-panel,
.agent-visual-row .agent-flow-arrow,
.agent-visual-row .agent-actions { display: none !important; }
.co-agent-card {
  height: 286px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(205,222,245,.96);
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(31,53,84,.08);
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}
.co-person-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid #e3ebf6;
  min-width: 0;
}
.co-person-row:last-child { border-bottom: 0; }
.co-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.co-person-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.co-name,
.co-title,
.co-company {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.05;
}
.co-name {
  color: #122243;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.03em;
}
.co-title {
  color: #56677f;
  font-size: 12px;
  font-weight: 640;
  letter-spacing: -0.01em;
}
.co-company {
  color: #003c9f;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: -0.01em;
}
.co-icons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 98px;
}
.co-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071435;
  flex: 0 0 auto;
}
.co-icon svg { width: 20px; height: 20px; }
.co-icon.co-muted { color: #a9b3c0; }
.co-linkedin {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #fff;
  flex: 0 0 auto;
  box-shadow: 0 7px 14px rgba(10,102,194,.12);
}
.co-linkedin svg { width: 17px; height: 17px; }
.co-linkedin.co-empty {
  background: #f7f9fc;
  color: #a8b3c1;
  border: 2px solid #b8c3d0;
  box-shadow: none;
}
.co-actions {
  position: relative;
  height: 270px;
  display: grid;
  align-content: center;
  gap: 24px;
  overflow: visible;
}
.co-actions::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 42px;
  bottom: 42px;
  border-left: 2px dashed #1680ff;
}
.co-action {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  color: #122243;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.co-action::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 50px;
  border-top: 2px dashed #1680ff;
}
.co-bubble {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,#f3f8ff 0%,#e7f1ff 100%);
  border: 1px solid #d6e5fb;
  color: #1478ff;
  box-shadow: 0 10px 22px rgba(31,53,84,.08);
}
.co-bubble svg { width: 25px; height: 25px; }
@media (max-width: 1180px) {
  .agent-visual-row { min-width: 1120px !important; }
}


/* Step 3 action replacement: actions now belong to each person row, not an external rail. */
.agent-visual-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(100%, 1260px) !important;
  column-gap: clamp(16px, 1.65vw, 24px) !important;
}
.agent-visual-row .co-actions { display: none !important; }
.co-agent-card:last-of-type .co-person-row {
  grid-template-columns: 50px minmax(0, 1fr) auto !important;
}
.co-row-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;
  min-width: 118px !important;
  color: #122243 !important;
  font-weight: 740 !important;
  font-size: 13px !important;
  white-space: nowrap !important;
}
.co-row-action-bubble {
  width: 34px !important;
  height: 34px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #eef6ff !important;
  color: #1478ff !important;
  border: 1px solid #cfe1fb !important;
  flex: 0 0 auto !important;
}
.co-row-action-bubble svg {
  width: 18px !important;
  height: 18px !important;
}
.co-row-action-label {
  display: inline-block !important;
  line-height: 1 !important;
}

/* Targeted update: add e-mail as the third enrichment datapoint in step 1 and 2. */
.agent-visual-row .co-agent-card:nth-of-type(1) .co-icons,
.agent-visual-row .co-agent-card:nth-of-type(2) .co-icons {
  gap: 8px !important;
  min-width: 98px !important;
}
.agent-visual-row .co-agent-card:nth-of-type(1) .co-mail {
  color: #a9b3c0 !important;
}
.agent-visual-row .co-agent-card:nth-of-type(2) .co-mail {
  color: #071435 !important;
}

/* Kun denne justering: mere afstand mellem de tre kolonner og samme venstrekant for step-tekst og grafik. */
.home-hero-graphic-block.agent-flow-canvas {
  --co-flow-width: min(100%, 1328px);
  --co-flow-gap: clamp(34px, 3.1vw, 58px);
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-row,
.home-hero-graphic-block.agent-flow-canvas .agent-visual-row {
  width: var(--co-flow-width) !important;
  max-width: 1328px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: var(--co-flow-gap) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-row {
  align-items: start !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy {
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy + .agent-step-copy {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-visual-row {
  margin-top: 48px !important;
  align-items: stretch !important;
}

.home-hero-graphic-block.agent-flow-canvas .co-agent-card {
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width: 1180px) {
  .home-hero-graphic-block.agent-flow-canvas .agent-step-row,
  .home-hero-graphic-block.agent-flow-canvas .agent-visual-row {
    min-width: 1120px !important;
  }
}

/* More direct, compact testimonial section inspired by lemlist, with testimonial as the primary anchor. */
.coherta-proof-section{
  width:min(100% - 56px, 1320px) !important;
  margin:54px auto 78px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:28px !important;
  font-family:inherit !important;
}
.coherta-testimonial-card{
  order:1 !important;
  width:min(100%, 1180px) !important;
  margin:0 auto !important;
  min-height:238px !important;
  grid-template-columns:150px minmax(0, 1fr) !important;
  gap:38px !important;
  align-items:center !important;
  padding:38px 58px !important;
  border-radius:24px !important;
  background:#191a20 !important;
  box-shadow:0 24px 54px rgba(9,18,38,.16) !important;
}
.coherta-testimonial-card:before{
  left:34px !important;
  top:25px !important;
  font-size:86px !important;
  color:rgba(255,255,255,.055) !important;
}
.coherta-testimonial-card:after{
  right:38px !important;
  bottom:22px !important;
  font-size:86px !important;
  color:rgba(255,255,255,.055) !important;
}
.coherta-testimonial-photo-wrap{
  width:132px !important;
  height:132px !important;
  margin-left:0 !important;
  border-radius:22px !important;
  padding:5px !important;
  align-self:center !important;
  justify-self:center !important;
  box-shadow:0 14px 32px rgba(0,0,0,.22) !important;
}
.coherta-testimonial-photo{
  border-radius:17px !important;
}
.coherta-testimonial-content{
  max-width:790px !important;
}
.coherta-testimonial-quote{
  max-width:790px !important;
  font-size:clamp(22px, 1.65vw, 28px) !important;
  line-height:1.34 !important;
  letter-spacing:-.026em !important;
  font-weight:750 !important;
  color:#fff !important;
}
.coherta-testimonial-meta{
  margin-top:22px !important;
  gap:12px !important;
  font-size:15px !important;
}
.coherta-testimonial-name{
  font-weight:760 !important;
}
.coherta-testimonial-role{
  color:rgba(255,255,255,.56) !important;
  font-weight:650 !important;
}
.coherta-proof-intro{
  order:2 !important;
  max-width:980px !important;
  margin:0 auto !important;
  text-align:center !important;
  padding:0 12px !important;
}
.coherta-proof-title{
  margin:0 auto 12px !important;
  max-width:820px !important;
  color:#0d1b3d !important;
  font-size:clamp(30px, 3.1vw, 48px) !important;
  line-height:1.05 !important;
  letter-spacing:-.045em !important;
  font-weight:820 !important;
}
.coherta-proof-text{
  max-width:780px !important;
  color:#62718e !important;
  font-size:clamp(16px, 1.25vw, 19px) !important;
  line-height:1.52 !important;
  font-weight:620 !important;
}
.coherta-proof-metric{
  margin-top:18px !important;
  max-width:820px !important;
  padding:9px 15px !important;
  gap:10px !important;
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
  color:#425272 !important;
  background:rgba(255,255,255,.72) !important;
  border-color:rgba(25,112,255,.16) !important;
  box-shadow:0 12px 28px rgba(19,68,145,.045) !important;
}
.coherta-proof-dot{
  width:7px !important;
  height:7px !important;
}
@media (max-width:900px){
  .coherta-proof-section{width:min(100% - 28px, 1320px) !important; gap:24px !important; margin:42px auto 58px !important;}
  .coherta-testimonial-card{grid-template-columns:1fr !important; gap:20px !important; padding:30px 24px !important; text-align:left !important;}
  .coherta-testimonial-photo-wrap{justify-self:start !important; width:116px !important; height:116px !important;}
  .coherta-testimonial-quote{font-size:22px !important;}
  .coherta-proof-title{font-size:32px !important;}
}

.coherta-proof-section{
  gap:24px !important;
  margin:50px auto 76px !important;
}
.coherta-proof-intro{
  order:1 !important;
  max-width:980px !important;
  margin:0 auto 2px !important;
  text-align:center !important;
  padding:0 16px !important;
}
.coherta-testimonial-card{
  order:2 !important;
}
.coherta-proof-text{
  margin:0 auto !important;
  max-width:860px !important;
  color:#44536f !important;
  font-size:clamp(18px, 1.45vw, 22px) !important;
  line-height:1.48 !important;
  letter-spacing:-.018em !important;
  font-weight:560 !important;
}
.coherta-proof-text strong{
  color:#0d1b3d !important;
  font-weight:760 !important;
}
.coherta-proof-metric{
  display:inline-flex !important;
  width:auto !important;
  max-width:760px !important;
  margin:18px auto 0 !important;
  padding:10px 16px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.86) !important;
  border:1px solid rgba(20,120,255,.18) !important;
  color:#53627c !important;
  font-size:14.5px !important;
  line-height:1.35 !important;
  font-weight:680 !important;
  box-shadow:0 12px 30px rgba(19,68,145,.05) !important;
}
.coherta-proof-dot{
  flex:0 0 auto !important;
  width:8px !important;
  height:8px !important;
  border-radius:999px !important;
  background:#1478ff !important;
  box-shadow:0 0 0 6px rgba(20,120,255,.10) !important;
}
@media (max-width:900px){
  .coherta-proof-section{gap:22px !important; margin:42px auto 58px !important;}
  .coherta-proof-text{font-size:18px !important; text-align:left !important;}
  .coherta-proof-metric{display:flex !important; border-radius:18px !important; text-align:left !important;}
}

.coherta-proof-text{
  color:#122243 !important;
  max-width:900px !important;
  font-weight:560 !important;
}
.coherta-proof-text strong{
  color:#122243 !important;
  font-weight:780 !important;
}
.coherta-proof-highlight{
  color:#1478ff !important;
  font-weight:780 !important;
  white-space:normal !important;
}
.coherta-testimonial-quote{
  max-width:820px !important;
}

.coherta-integrations-bridge{
  max-width: 1440px;
  margin: 86px auto 24px;
  padding: 0 28px;
}
.coherta-integrations-bridge-inner{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);
  align-items:center;
  gap:44px;
  border:1px solid rgba(186,211,247,.82);
  border-radius:34px;
  background:linear-gradient(135deg,#ffffff 0%,#f7fbff 56%,#eff6ff 100%);
  box-shadow:0 24px 70px rgba(24,67,128,.08);
  padding:46px 54px;
  overflow:hidden;
}
.coherta-integrations-bridge-copy h2{
  margin:0;
  max-width:640px;
  font-size:clamp(34px,3.6vw,58px);
  line-height:.98;
  letter-spacing:-.055em;
  color:#102044;
}
.coherta-integrations-bridge-copy p{
  margin:18px 0 0;
  max-width:560px;
  font-size:19px;
  line-height:1.55;
  font-weight:650;
  color:#657694;
}
.coherta-integrations-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:28px;
  padding:14px 18px 14px 20px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(188,208,237,.9);
  color:#102044;
  font-size:16px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(24,67,128,.08);
}
.coherta-integrations-cta span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:999px;
  background:#edf4ff;
  color:#196cff;
  font-size:18px;
}
.coherta-integrations-visual{
  min-height:290px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:28px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(218,230,248,.82);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 20px 50px rgba(24,67,128,.07);
}
.coherta-integrations-visual img{
  display:block;
  width:min(100%,620px);
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 22px 34px rgba(35,88,167,.13));
}
@media (max-width: 980px){
  .coherta-integrations-bridge{margin:58px auto 18px;padding:0 18px;}
  .coherta-integrations-bridge-inner{grid-template-columns:1fr;gap:28px;padding:34px 24px;}
  .coherta-integrations-bridge-copy h2{font-size:38px;}
  .coherta-integrations-bridge-copy p{font-size:17px;}
  .coherta-integrations-visual{min-height:220px;}
}

/* Mobile homepage hero: show Step 1, 2 and 3 as a vertical scroll sequence. */
@media (max-width: 760px){
  .home-hero-graphic-block.agent-flow-canvas{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding:22px 16px 24px !important;
    overflow:visible !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-flow-map{
    min-width:0 !important;
    width:100% !important;
    max-width:100% !important;
    margin-bottom:24px !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-flow-map svg{
    display:none !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-flow-pill{
    min-width:0 !important;
    width:100% !important;
    height:50px !important;
    font-size:18px !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-flow-target{
    position:static !important;
    transform:none !important;
    margin-top:12px !important;
    width:100% !important;
    white-space:normal !important;
    text-align:center !important;
    font-size:24px !important;
    line-height:1.1 !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-row{
    min-width:0 !important;
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
    margin-top:0 !important;
    padding:0 !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy{
    min-height:0 !important;
    padding:18px !important;
    border:1px solid rgba(207,218,233,.92) !important;
    border-radius:20px !important;
    background:#fff !important;
    box-shadow:0 14px 34px rgba(31,53,84,.08) !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy + .agent-step-copy{
    padding-left:18px !important;
    border-left:1px solid rgba(207,218,233,.92) !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy h3{
    font-size:28px !important;
    line-height:1.04 !important;
    letter-spacing:0 !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy p{
    margin-top:10px !important;
    max-width:none !important;
    font-size:15px !important;
    line-height:1.48 !important;
    letter-spacing:0 !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-visual-row,
  .home-hero-graphic-block.agent-flow-canvas .agent-final-note{
    display:none !important;
  }
}

:is(
  .btn,
  .home-btn,
  .activation-choice button,
  .audience-launcher,
  .audience-action,
  .audience-send,
  .audience-confirm,
  .coherta-gtm-cta,
  .template-closing-cta-btn,
  .gtm-template-section-v2 .gtm-lane-cta-v2 a,
  .coherta-integrations-cta
) {
  font-size: clamp(13.5px, 0.92vw, 14.5px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.012em;
}

/* Keep the hero step texts separated with at least 100px of visual air. */
.home-hero-graphic-block.agent-flow-canvas .agent-step-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(190px, 1fr)) !important;
  column-gap: clamp(100px, 8vw, 132px) !important;
  row-gap: 32px !important;
  align-items: start !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy {
  min-width: 0 !important;
  max-width: 260px !important;
  padding: 0 !important;
  border-left: 0 !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy:first-child {
  max-width: 320px !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy:first-child h3 {
  white-space: nowrap !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy + .agent-step-copy {
  padding-left: 0 !important;
  border-left: 0 !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy:nth-child(2) {
  justify-self: center !important;
}

.home-hero-graphic-block.agent-flow-canvas .agent-step-copy:nth-child(3) {
  justify-self: end !important;
}

@media (max-width: 980px) {
  .home-hero-graphic-block.agent-flow-canvas .agent-step-row {
    grid-template-columns: 1fr !important;
    gap: 100px !important;
  }

  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy,
  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy:nth-child(2),
  .home-hero-graphic-block.agent-flow-canvas .agent-step-copy:nth-child(3) {
    max-width: none !important;
    justify-self: stretch !important;
  }
}

/* Campaigns automatic hero animation */
.campaigns-auto-frame {
  --campaigns-text: #18345f;
  --campaigns-muted: #66758e;
  --campaigns-brand: #3f6df6;
  --campaigns-brand-dark: #2f5ce6;
  --campaigns-border: #dbe4f0;
  --campaigns-success: #1fa463;
  --campaigns-success-soft: #e9f8ef;
  --campaigns-cycle: 15s;
  --campaigns-ease: cubic-bezier(.2,.72,.18,1);
  width: min(100%, 1460px);
  margin: auto;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  border: 1px solid rgba(217,226,239,.95);
  box-shadow: 0 24px 64px rgba(20,38,72,.075), inset 0 1px 0 rgba(255,255,255,.95);
  color: var(--campaigns-text);
  overflow: hidden;
}

.home-hero-copy + .home-hero-graphic-block.campaigns-auto-frame {
  width: min(100%, 1460px);
  margin-top: clamp(36px, 4vw, 56px);
}

.campaigns-auto-frame * {
  box-sizing: border-box;
}

.campaigns-auto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 34px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.campaigns-auto-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  opacity: .42;
}

.auto-step-one { animation: stepOneFocus var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.auto-step-two { animation: stepTwoFocus var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.auto-step-three { animation: stepThreeFocus var(--campaigns-cycle) var(--campaigns-ease) infinite; }

.campaigns-auto-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--campaigns-brand), var(--campaigns-brand-dark));
  box-shadow: 0 14px 26px rgba(63,109,246,.18);
}

.campaigns-auto-icon svg {
  width: 28px;
  height: 28px;
}

.campaigns-auto-step strong {
  display: block;
  font-size: clamp(16px, 1vw, 20px);
  color: #132f59;
}

.campaigns-auto-step p {
  margin: 7px 0 0;
  max-width: 330px;
  font-size: clamp(13px, .86vw, 15px);
  line-height: 1.42;
  color: #6d7c93;
}

.campaigns-auto-canvas {
  display: grid;
  grid-template-columns: minmax(250px, .9fr) 42px minmax(300px, 1.14fr) 42px minmax(300px, 1.06fr);
  gap: clamp(10px, 1.2vw, 18px);
  align-items: center;
  overflow: visible;
}

.campaigns-auto-card {
  background: #fff;
  border: 1px solid rgba(207,219,235,.95);
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(22,39,70,.075), inset 0 1px 0 rgba(255,255,255,.98);
  overflow: hidden;
}

.campaigns-auto-person {
  min-height: 218px;
  padding: 24px 26px;
  opacity: .44;
  animation: cardOneFocus var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-person-top,
.campaigns-monitor-profile {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
}

.campaigns-monitor-profile {
  grid-template-columns: 70px minmax(0, 1fr);
  padding: 24px 25px 21px;
}

.campaigns-person-top img,
.campaigns-monitor-profile img {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(20,38,72,.13);
}

.campaigns-person-top strong,
.campaigns-monitor-profile strong {
  display: block;
  font-size: clamp(17px, 1vw, 20px);
  color: #10264a;
}

.campaigns-person-top span,
.campaigns-monitor-profile span {
  display: block;
  margin-top: 5px;
  font-size: clamp(13px, .86vw, 15px);
  font-weight: 750;
  color: #40536f;
}

.campaigns-person-top small,
.campaigns-monitor-profile small {
  display: block;
  margin-top: 4px;
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 700;
  color: var(--campaigns-brand);
}

.campaigns-auto-frame i {
  font-style: normal;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0a66c2;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 15px;
}

.campaigns-auto-connect {
  width: 100%;
  height: 56px;
  margin-top: 28px;
  border: 0;
  border-radius: 16px;
  background: #f1f4ff;
  color: var(--campaigns-brand);
  font-size: clamp(14px, .92vw, 16px);
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: default;
  animation: connectState var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-auto-connect::before {
  content: "";
  width: 17px;
  height: 17px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15 12a4 4 0 1 0-8 0 4 4 0 0 0 8 0Zm-6 6c-3.3 0-6 1.7-6 3.8V22h12v-.2c0-2.1-2.7-3.8-6-3.8Zm10.5-8.5V6h-2v3.5H14v2h3.5V15h2v-3.5H23v-2h-3.5Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.connecting-label,
.connected-label {
  display: none;
}

.campaigns-auto-link {
  height: 18px;
  position: relative;
  overflow: visible;
  opacity: .9;
  z-index: 4;
}

.link-two { z-index: 8; }

.campaigns-auto-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 10px;
  top: 8px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(63,109,246,.25), var(--campaigns-brand));
  transform: scaleX(0);
  transform-origin: left center;
}

.campaigns-auto-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--campaigns-brand);
  border-right: 2px solid var(--campaigns-brand);
  transform: translateX(-8px) rotate(45deg);
  opacity: 0;
}

.link-one::before { animation: drawArrowOne var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.link-one::after { animation: arrowHeadOne var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.link-two::before { animation: drawArrowTwo var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.link-two::after { animation: arrowHeadTwo var(--campaigns-cycle) var(--campaigns-ease) infinite; }

.campaigns-auto-message {
  min-height: 286px;
  opacity: 0;
  visibility: hidden;
  animation: cardTwoFocus var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-message-head,
.campaigns-monitor-head {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--campaigns-border);
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 850;
  color: #10264a;
}

.campaigns-monitor-head {
  justify-content: flex-start;
  font-size: clamp(17px, 1.1vw, 21px);
  font-weight: 900;
}

.campaigns-message-text {
  padding: 22px 26px 8px;
}

.campaigns-message-text p {
  margin: 0 0 8px;
  color: #071632;
  font-size: clamp(13px, .86vw, 15px);
  line-height: 1.36;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  max-width: max-content;
}

.msg-line-one { animation: typeLineOne var(--campaigns-cycle) steps(10,end) infinite; }
.msg-line-two { animation: typeLineTwo var(--campaigns-cycle) steps(38,end) infinite; }
.msg-line-three { animation: typeLineThree var(--campaigns-cycle) steps(44,end) infinite; }
.msg-line-four { animation: typeLineFour var(--campaigns-cycle) steps(38,end) infinite; }
.msg-line-five { animation: typeLineFive var(--campaigns-cycle) steps(35,end) infinite; }

.campaigns-auto-send {
  float: right;
  height: 52px;
  margin: 4px 24px 22px 0;
  padding: 0 21px;
  border: 0;
  border-radius: 15px;
  background: var(--campaigns-brand);
  color: #fff;
  font-size: clamp(14px, .9vw, 16px);
  font-weight: 850;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 14px 24px rgba(63,109,246,.20);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 4px, 0);
  animation: sendState var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-auto-send svg {
  width: 19px;
  height: 19px;
}

.sent-label { display: none; animation: sentText var(--campaigns-cycle) steps(1,end) infinite; }
.send-label { animation: sendText var(--campaigns-cycle) steps(1,end) infinite; }

.campaigns-auto-monitor {
  position: relative;
  min-height: 244px;
  opacity: 0;
  visibility: hidden;
  animation: cardThreeFocus var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-auto-monitor::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 2px solid transparent;
  pointer-events: none;
  animation: monitorRing var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.campaigns-monitor-event,
.campaigns-monitor-mail {
  margin: 0 25px 22px;
  padding-top: 16px;
  border-top: 1px solid #e8eef7;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.campaigns-monitor-mail {
  padding-top: 14px;
  margin-top: -6px;
}

.campaigns-monitor-event { animation: monitorEvent var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.campaigns-monitor-mail { animation: monitorMail var(--campaigns-cycle) var(--campaigns-ease) infinite; }

.campaigns-monitor-event span,
.campaigns-monitor-mail span {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.campaigns-monitor-event span {
  background: #eff4ff;
  color: var(--campaigns-brand);
}

.campaigns-monitor-mail span {
  background: var(--campaigns-success-soft);
  color: var(--campaigns-success);
}

.campaigns-monitor-event svg,
.campaigns-monitor-mail svg {
  width: 20px;
  height: 20px;
}

.campaigns-monitor-event strong,
.campaigns-monitor-mail strong {
  font-size: 14px;
  color: #10264a;
}

.campaigns-monitor-event small,
.campaigns-monitor-mail small {
  font-size: 13px;
  font-weight: 850;
}

.campaigns-monitor-event small { color: #7f8da3; }
.campaigns-monitor-mail small { color: var(--campaigns-success); }
.campaigns-auto-monitor .profile-line em,
.campaigns-auto-monitor .title-line em {
  font-style: normal;
}

.campaigns-auto-monitor .profile-line,
.campaigns-auto-monitor .title-line {
  position: relative;
  display: block;
  min-height: 1.35em;
}

.campaigns-auto-monitor .profile-line em,
.campaigns-auto-monitor .title-line em {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.campaigns-auto-monitor .profile-current { opacity: 1; visibility: visible; animation: profileCurrent var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.campaigns-auto-monitor .profile-updated { opacity: 0; visibility: hidden; animation: profileUpdated var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.campaigns-auto-monitor .title-current { opacity: 1; visibility: visible; animation: titleCurrent var(--campaigns-cycle) var(--campaigns-ease) infinite; }
.campaigns-auto-monitor .title-updated { opacity: 0; visibility: hidden; animation: titleUpdated var(--campaigns-cycle) var(--campaigns-ease) infinite; }

.link-two .time-passing {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translate(-50%, -50%);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(207,219,235,.95);
  box-shadow: 0 10px 24px rgba(22,39,70,.08);
  color: #40536f;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  opacity: 0;
  z-index: 12;
  animation: timePassing var(--campaigns-cycle) var(--campaigns-ease) infinite;
}

.link-two .time-passing::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(63,109,246,.22);
  border-top-color: var(--campaigns-brand);
  animation: timeSpin 1.25s linear infinite;
}

@keyframes timeSpin { to { transform: rotate(360deg); } }
@keyframes timePassing { 0%,54%,67%,100% { opacity: 0; transform: translate(-50%,-44%) scale(.96); } 56%,64% { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
@keyframes titleCurrent { 0%,55%,100% { opacity: 1; transform: translate3d(0,0,0); visibility: visible; } 58%,94% { opacity: 0; transform: translate3d(0,-4px,0); visibility: hidden; } }
@keyframes titleUpdated { 0%,55%,100% { opacity: 0; transform: translate3d(0,4px,0); visibility: hidden; } 58%,94% { opacity: 1; transform: translate3d(0,0,0); visibility: visible; } }
@keyframes profileCurrent { 0%,68%,100% { opacity: 1; transform: translate3d(0,0,0); visibility: visible; } 69%,94% { opacity: 0; transform: translate3d(0,-4px,0); visibility: hidden; } }
@keyframes profileUpdated { 0%,68%,94%,100% { opacity: 0; transform: translate3d(0,4px,0); visibility: hidden; } 69%,90% { opacity: 1; transform: translate3d(0,0,0); visibility: visible; } }
@keyframes stepOneFocus { 0%,15.7%,100% { opacity: 1; transform: translate3d(0,-3px,0); } 19.6%,96% { opacity: .42; transform: translate3d(0,0,0); } }
@keyframes stepTwoFocus { 0%,19% { opacity: .42; transform: translate3d(0,0,0); } 19.6%,41.8% { opacity: 1; transform: translate3d(0,-3px,0); } 45.7%,100% { opacity: .42; transform: translate3d(0,0,0); } }
@keyframes stepThreeFocus { 0%,51.6%,100% { opacity: .42; transform: translate3d(0,0,0); } 52.3%,92% { opacity: 1; transform: translate3d(0,-3px,0); } 96% { opacity: .42; transform: translate3d(0,0,0); } }
@keyframes mobileStepOneFocus { 0%,15.7%,100% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); } 19.6%,96% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } }
@keyframes mobileStepTwoFocus { 0%,19%,100% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } 19.6%,41.8% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); } 45.7%,96% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } }
@keyframes mobileStepThreeFocus { 0%,51.6%,100% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } 52.3%,92% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); } 96% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } }
@keyframes mobileCardOneFocus { 0%,15.7%,100% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); box-shadow: 0 0 0 4px rgba(63,109,246,.09), 0 24px 52px rgba(63,109,246,.12), inset 0 1px 0 rgba(255,255,255,.98); } 19.6%,96% { opacity: 0; visibility: hidden; transform: translate3d(0,6px,0); box-shadow: 0 18px 46px rgba(22,39,70,.075), inset 0 1px 0 rgba(255,255,255,.98); } }
@keyframes mobileCardTwoFocus { 0%,19%,100% { opacity: 0; visibility: hidden; transform: translate3d(0,6px,0); box-shadow: 0 18px 46px rgba(22,39,70,.075), inset 0 1px 0 rgba(255,255,255,.98); } 19.6%,41.8% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); box-shadow: 0 0 0 4px rgba(63,109,246,.09), 0 24px 52px rgba(63,109,246,.12), inset 0 1px 0 rgba(255,255,255,.98); } 45.7%,96% { opacity: 0; visibility: hidden; transform: translate3d(0,6px,0); } }
@keyframes mobileCardThreeFocus { 0%,51.6%,100% { opacity: 0; visibility: hidden; transform: translate3d(0,6px,0); border-color: rgba(207,219,235,.95); } 52.3%,66% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); border-color: rgba(63,109,246,.28); box-shadow: 0 0 0 4px rgba(63,109,246,.07), 0 22px 50px rgba(63,109,246,.08), inset 0 1px 0 rgba(255,255,255,.98); } 69%,90% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); border-color: rgba(31,164,99,.58); box-shadow: 0 0 0 5px rgba(31,164,99,.09), 0 22px 50px rgba(31,164,99,.10), inset 0 1px 0 rgba(255,255,255,.98); } 94%,96% { opacity: 0; visibility: hidden; transform: translate3d(0,6px,0); } }
@keyframes cardOneFocus { 0%,15.7%,100% { opacity: 1; transform: translate3d(0,-2px,0); box-shadow: 0 0 0 4px rgba(63,109,246,.09), 0 24px 52px rgba(63,109,246,.12), inset 0 1px 0 rgba(255,255,255,.98); } 19.6%,96% { opacity: .44; transform: translate3d(0,0,0); box-shadow: 0 18px 46px rgba(22,39,70,.075), inset 0 1px 0 rgba(255,255,255,.98); } }
@keyframes connectState { 0%,5.2%,100% { background: #f1f4ff; color: var(--campaigns-brand); box-shadow: none; } 6.5%,14.4% { background: #eaf0ff; color: var(--campaigns-brand); box-shadow: 0 0 0 4px rgba(63,109,246,.10); } 15.7%,96% { background: var(--campaigns-success-soft); color: var(--campaigns-success); box-shadow: 0 0 0 4px rgba(31,164,99,.10); } }
@keyframes drawArrowOne { 0%,16.3% { transform-origin: left center; transform: scaleX(0); opacity: 0; } 18.3% { transform-origin: left center; opacity: 1; } 19.6%,94% { transform-origin: left center; transform: scaleX(1); opacity: 1; } 97% { transform-origin: right center; transform: scaleX(0); opacity: .65; } 100% { transform-origin: right center; transform: scaleX(0); opacity: 0; } }
@keyframes arrowHeadOne { 0%,17.6% { opacity: 0; transform: translateX(-8px) rotate(45deg); } 19.6%,94% { opacity: 1; transform: translateX(0) rotate(45deg); } 97%,100% { opacity: 0; transform: translateX(-8px) rotate(45deg); } }
@keyframes cardTwoFocus { 0%,19%,100% { opacity: 0; visibility: hidden; transform: translate3d(-6px,0,0); box-shadow: 0 18px 46px rgba(22,39,70,.075), inset 0 1px 0 rgba(255,255,255,.98); } 19.6%,41.8% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); box-shadow: 0 0 0 4px rgba(63,109,246,.09), 0 24px 52px rgba(63,109,246,.12), inset 0 1px 0 rgba(255,255,255,.98); } 45.7%,94% { opacity: .44; visibility: visible; transform: translate3d(0,0,0); } 97% { opacity: 0; visibility: visible; transform: translate3d(-6px,0,0); } }
@keyframes typeLineOne { 0%,20.3% { width: 0; } 23.5%,100% { width: 9ch; } }
@keyframes typeLineTwo { 0%,22.9% { width: 0; } 28.1%,100% { width: 38ch; } }
@keyframes typeLineThree { 0%,27.4% { width: 0; } 32.7%,100% { width: 43ch; } }
@keyframes typeLineFour { 0%,32% { width: 0; } 36.6%,100% { width: 38ch; } }
@keyframes typeLineFive { 0%,35.9% { width: 0; } 39.9%,100% { width: 35ch; } }
@keyframes sendState { 0%,37.9% { opacity: 0; visibility: hidden; transform: translate3d(0,4px,0); } 39.9%,41.8% { opacity: 1; visibility: visible; transform: translate3d(0,0,0); box-shadow: 0 0 0 4px rgba(63,109,246,.12), 0 14px 24px rgba(63,109,246,.20); } 45.7%,100% { opacity: .64; visibility: visible; transform: translate3d(0,0,0); } }
@keyframes sendText { 0%,41.1% { display: inline; } 41.8%,100% { display: none; } }
@keyframes sentText { 0%,41.1% { display: none; } 41.8%,100% { display: inline; } }
@keyframes drawArrowTwo { 0%,47% { transform-origin: left center; transform: scaleX(0); opacity: 0; } 49.7% { transform-origin: left center; opacity: 1; } 52.3%,90% { transform-origin: left center; transform: scaleX(1); opacity: 1; } 94% { transform-origin: right center; transform: scaleX(0); opacity: .65; } 100% { transform-origin: right center; transform: scaleX(0); opacity: 0; } }
@keyframes arrowHeadTwo { 0%,49.7% { opacity: 0; transform: translateX(-8px) rotate(45deg); } 52.3%,90% { opacity: 1; transform: translateX(0) rotate(45deg); } 94%,100% { opacity: 0; transform: translateX(-8px) rotate(45deg); } }
@keyframes cardThreeFocus { 0%,51.6%,100% { opacity: 0; visibility: hidden; transform: translate3d(-6px,0,0); border-color: rgba(207,219,235,.95); } 52.3%,66% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); border-color: rgba(63,109,246,.28); box-shadow: 0 0 0 4px rgba(63,109,246,.07), 0 22px 50px rgba(63,109,246,.08), inset 0 1px 0 rgba(255,255,255,.98); } 69%,90% { opacity: 1; visibility: visible; transform: translate3d(0,-2px,0); border-color: rgba(31,164,99,.58); box-shadow: 0 0 0 5px rgba(31,164,99,.09), 0 22px 50px rgba(31,164,99,.10), inset 0 1px 0 rgba(255,255,255,.98); } 94% { opacity: 0; visibility: visible; transform: translate3d(-6px,0,0); } }
@keyframes monitorRing { 0%,66% { border-color: transparent; } 69%,90% { border-color: rgba(31,164,99,.70); } 94%,100% { border-color: transparent; } }
@keyframes monitorEvent { 0%,66%,100% { opacity: 0; transform: translate3d(0,10px,0); } 69%,90% { opacity: 1; transform: translate3d(0,0,0); } 94% { opacity: 0; transform: translate3d(0,10px,0); } }
@keyframes monitorMail { 0%,72%,100% { opacity: 0; transform: translate3d(0,10px,0); } 75%,90% { opacity: 1; transform: translate3d(0,0,0); } 94% { opacity: 0; transform: translate3d(0,10px,0); } }

@media (max-width: 1100px) {
  .campaigns-auto-steps,
  .campaigns-auto-canvas {
    grid-template-columns: 1fr;
  }

  .campaigns-auto-steps {
    gap: 16px;
    margin-bottom: 28px;
  }

  .campaigns-auto-frame .campaigns-auto-steps {
    display: grid;
  }

  .campaigns-auto-frame .campaigns-auto-step {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .campaigns-auto-frame .auto-step-one { animation-name: mobileStepOneFocus; }
  .campaigns-auto-frame .auto-step-two { animation-name: mobileStepTwoFocus; }
  .campaigns-auto-frame .auto-step-three { animation-name: mobileStepThreeFocus; }

  .campaigns-auto-link {
    display: none;
  }

  .campaigns-auto-frame .campaigns-auto-canvas {
    display: grid;
  }

  .campaigns-auto-frame .campaigns-auto-canvas > .campaigns-auto-card {
    grid-area: 1 / 1;
  }

  .campaigns-auto-frame .campaigns-auto-person { animation-name: mobileCardOneFocus; }
  .campaigns-auto-frame .campaigns-auto-message { animation-name: mobileCardTwoFocus; }
  .campaigns-auto-frame .campaigns-auto-monitor { animation-name: mobileCardThreeFocus; }

  .link-two .time-passing {
    display: none;
  }

  .campaigns-auto-send {
    float: none;
    margin: 12px 22px 22px auto;
  }
}

@media (max-width: 640px) {
  .campaigns-auto-frame {
    padding: 18px;
    border-radius: 24px;
  }

  .campaigns-auto-step {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .campaigns-auto-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .campaigns-person-top,
  .campaigns-monitor-profile {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .campaigns-person-top img,
  .campaigns-monitor-profile img {
    width: 58px;
    height: 58px;
  }

  .campaigns-person-top i {
    display: none;
  }

  .campaigns-auto-message,
  .campaigns-auto-monitor,
  .campaigns-auto-person {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .campaigns-auto-frame *,
  .campaigns-auto-frame *::before,
  .campaigns-auto-frame *::after {
    animation: none !important;
    transition: none !important;
  }

  .campaigns-auto-step,
  .campaigns-auto-card,
  .campaigns-message-text p,
  .campaigns-monitor-event,
  .campaigns-monitor-mail {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .campaigns-auto-connect {
    background: var(--campaigns-success-soft);
    color: var(--campaigns-success);
  }

  .campaigns-auto-send {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .home-main {
    overflow-x: hidden;
  }

  .home-hero-actions {
    width: 100%;
    max-width: 100%;
    margin: 28px auto 0;
    justify-content: center;
  }

  .home-btn,
  .home-cta .home-btn {
    width: min(100%, 260px);
    min-width: 0;
    padding-inline: 20px;
  }

  .campaigns-auto-frame {
    max-width: 100%;
  }

  .campaigns-auto-canvas,
  .campaigns-auto-card,
  .campaigns-auto-message {
    min-width: 0;
    max-width: 100%;
  }

  .campaigns-message-text {
    padding: 20px 20px 8px;
  }

  .campaigns-message-text p {
    width: auto;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    animation: none;
  }

  .campaigns-auto-send {
    width: calc(100% - 40px);
    margin: 12px 20px 22px;
    justify-content: center;
  }
}
