
/* =========================
   CHAT-TOGGLE positionieren
========================= */
#wa-chat-widget #chat-toggle {
    position: fixed;
    right: 10px !important;
    bottom: 320px !important;  
}

/* =========================
   CHAT-FENSTER
========================= */
#wa-chat-widget #chat-window {
    position: fixed;
    right: 90px;
    bottom: 250px !important;  
    display: flex;
    flex-direction: column;    
    width: 400px;
    height: 525px; 
    overflow: hidden;    
}


:root {
    --tyrolbot-bg: #ffffff;
    --tyrolbot-text: #111111;
    --tyrolbot-muted: #676767;
    --tyrolbot-line: rgba(17, 17, 17, 0.1);
    --tyrolbot-accent: #111111;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.tyrolbot-site {
    min-height: 100vh;
    background: var(--tyrolbot-bg);
    color: var(--tyrolbot-text);
    font-family: Arial, Helvetica, sans-serif;
}

.tyrolbot-container {
    width: min(calc(100% - 48px), 1400px);
    margin-inline: auto;
}


/* =========================
   HEADER
========================= */
.tyrolbot-header {
    width: 100%;
    padding: 22px 0;
    background: #fff;
}

.tyrolbot-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.tyrolbot-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.tyrolbot-header .tyrolbot-logo img {
    display: block;
    width: auto;
    height: 44px;
    max-width: 250px;
}

.tyrolbot-navigation {
    margin-left: auto;
}

.tyrolbot-navigation__list {
    display: flex;
    align-items: center;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tyrolbot-navigation a,
.tyrolbot-header__cta {
    color: inherit;
    text-decoration: none;
}

.tyrolbot-navigation a {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.tyrolbot-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--tyrolbot-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.tyrolbot-navigation a:hover::after,
.tyrolbot-navigation a:focus-visible::after {
    transform: scaleX(1);
}

.tyrolbot-header__cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 22px;
    border: 1px solid var(--tyrolbot-text);
    font-size: 0.95rem;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.tyrolbot-header__cta:hover {
    background: var(--tyrolbot-text);
    color: #fff;
}

/* =========================
   HERO #00b7ad - heller 02c29c
========================= */
/* Hintergrundgrafik Hero */
.tyrolbot-hero {
    position: relative;
    overflow: hidden;
}

.tyrolbot-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    background-image:
        url("../Images/istockphoto-1329773736-.png");

    background-repeat: no-repeat;
    background-position: right top;
    background-size: 850px auto;

    opacity: 0.15;

    pointer-events: none;
    z-index: 0;

    animation:
        tyrolbotLines
        12s
        ease-in-out
        infinite
        alternate;
}

.tyrolbot-hero .tyrolbot-container {
    position: relative;
    z-index: 1;
}


.tyrolbot-hero {
    padding:
        clamp(15px, 2vw, 30px)
        0
        clamp(80px, 7vw, 150px);
}

.tyrolbot-hero .tyrolbot-container {
    max-width: 1200px;
    margin: 0 auto;
    transform: translateY(20px);
}

.tyrolbot-hero__kicker {
    margin: 0 0 14px;
    color: #02c29c;
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tyrolbot-hero__title {
    max-width: 480px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2.6rem, 3.1vw, 3.8rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.tyrolbot-hero__lead {
   max-width: 820px;
    margin: 22px 0 0;
    color: #111;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.55;
}


/* Vorteile */
.tyrolbot-hero__benefits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 34px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.tyrolbot-hero__benefits li {
    position: relative;
    padding-left: 27px;
    font-size: 1rem;
    line-height: 1.4;
}

.tyrolbot-hero__benefits li::before {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 0;
    color: #02c29c;
    font-size: 1.45rem;
    font-weight: 700;
}



/* title zusatz */
.tyrolbot-hero__service {
	margin-top: 28px;
	max-width: 720px;
}

.tyrolbot-hero__service-title {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
}

.tyrolbot-hero__additional {
	margin: 0;
	font-size: 17px;
	line-height: 1.5;
	max-width: 720px;
}

.tyrolbot-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	padding: 14px 24px;
	background: #00b894;
	color: #fff;
	border: 1px solid #00b894;
	text-decoration: none;
	transition:
		background-color .2s ease,
		border-color .2s ease;
}

.tyrolbot-hero__cta:hover,
.tyrolbot-hero__cta:focus-visible {
	background: #009f80;
	border-color: #009f80;
	color: #fff;
}


/* Hero mobil */
@media (max-width: 700px) {

    .tyrolbot-hero {
        padding: 64px 0 80px;
    }

    .tyrolbot-hero__title {
        max-width: 100%;
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .tyrolbot-hero__lead {
        margin-top: 24px;
    }

    .tyrolbot-hero__benefits {
        display: grid;
        gap: 12px;
        margin-top: 26px;
    }
  
}




/* =========================
   INHALT / FOOTER
========================= */
.tyrolbot-content {
    width: 100%;
}

.tyrolbot-footer {
    padding: 40px 0;
    border-top: 1px solid var(--tyrolbot-line);
}


/* =========================
   FOCUS
========================= */
.tyrolbot-navigation a:focus-visible,
.tyrolbot-header__cta:focus-visible,
.tyrolbot-hero__cta:focus-visible,
.tyrolbot-logo:focus-visible {
    outline: 3px solid var(--tyrolbot-text);
    outline-offset: 4px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .tyrolbot-header__inner {
        flex-wrap: wrap;
    }

    .tyrolbot-navigation {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .tyrolbot-navigation__list {
        flex-wrap: wrap;
        gap: 16px 24px;
    }

    .tyrolbot-hero {
        padding: 90px 0 110px;
    }
}

@media (max-width: 600px) {

    .tyrolbot-container {
        width: min(calc(100% - 32px), 1400px);
    }

    .tyrolbot-header {
        padding: 18px 0;
    }

    .tyrolbot-header__cta {
        padding-inline: 16px;
    }

    .tyrolbot-navigation__list {
        gap: 12px 20px;
    }

    .tyrolbot-hero {
        padding: 72px 0 90px;
    }

    .tyrolbot-hero__kicker {
        margin-bottom: 18px;
    }

    .tyrolbot-hero__lead {
        margin-top: 26px;
    }
}


/* =========================
   DASHBOARD DEMO
========================= */
.tyrolbot-dashboard-demo {
    padding: 150px 0 150px;
    background: #1c303a;
    color: #fff;
}


/* =========================
   DASHBOARD INTRO
========================= */
.tyrolbot-dashboard-demo__intro {
    max-width: 760px;
     margin: 0 0 44px;
}

.tyrolbot-dashboard-demo__kicker {
    margin: 0 0 12px;
    color: #02c29c;
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tyrolbot-dashboard-demo__headline {
    margin: 0;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(2rem, 2.6vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.tyrolbot-dashboard-demo__lead {
    max-width: 720px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.55;
}


.tyrolbot-demo {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}


/* =========================
   LINKE NAVIGATION
========================= */
.tyrolbot-demo__navigation {
    display: flex;
    flex-direction: column;
    min-height: 650px;
    padding: 28px 20px 22px;
    background: #1c303a;
    color: #fff;
}

.tyrolbot-demo__navigation-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tyrolbot-demo__navigation-item {
    display: flex;
    align-items: center;
    gap: 13px;

    width: 100%;
    min-height: 48px;
    padding: 10px 14px;

    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);

    font: inherit;
    font-size: 15px;
    text-align: left;

    cursor: pointer;
}

.tyrolbot-demo__navigation-item:hover {
    color: #fff;
}

.tyrolbot-demo__navigation-item.is-active {
    background: #02c29c;
    color: #fff;
}


/* Icons */
.tyrolbot-demo__navigation-icon {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    color: #02c29c;
}

.tyrolbot-demo__navigation-item.is-active
.tyrolbot-demo__navigation-icon {
    color: #fff;
}

.tyrolbot-demo__navigation-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* =========================
   NAVIGATION FOOTER
========================= */
.tyrolbot-demo__navigation-footer {
    margin-top: auto;
    padding: 26px 14px 0;
    font-size: 12px;
}

.tyrolbot-demo__note {
    margin-bottom: 22px;
}

.tyrolbot-demo__note strong,
.tyrolbot-demo__note span {
    display: block;
}

.tyrolbot-demo__note span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
}

.tyrolbot-demo__client {
    margin-bottom: 18px;
}

.tyrolbot-demo__client strong,
.tyrolbot-demo__client span {
    display: block;
}

.tyrolbot-demo__client span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.6);
}


/* Statistik */

.tyrolbot-demo__stats {
    margin: 0;
}

.tyrolbot-demo__stats > div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 0;
}

.tyrolbot-demo__stats dt,
.tyrolbot-demo__stats dd {
    margin: 0;
}


/* =========================
   SCREENSHOT
========================= */
.tyrolbot-demo__content {
    min-width: 0;
    background: #f7f8f8;
}

.tyrolbot-demo__panel {
    width: 100%;
}

.tyrolbot-demo__panel[hidden] {
    display: none;
}

.tyrolbot-demo__panel img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================
   FOCUS
========================= */
.tyrolbot-demo__navigation-item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .tyrolbot-demo {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .tyrolbot-demo__navigation {
        padding-inline: 14px;
    }

    .tyrolbot-demo__navigation-item {
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .tyrolbot-demo {
        display: block;
    }

    .tyrolbot-demo__navigation {
        min-height: auto;
        padding: 16px;
    }

    .tyrolbot-demo__navigation-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .tyrolbot-demo__navigation-footer {
        display: none;
    }

	.tyrolbot-dashboard-demo {
		padding: 55px 0 60px;
	}

	.tyrolbot-dashboard-demo__intro {
		margin-bottom: 28px;
	}

	.tyrolbot-dashboard-demo__headline {
		font-size: clamp(1.9rem, 8vw, 2.5rem);
	}

	.tyrolbot-dashboard-demo__lead {
		font-size: 1rem;
	}

}



/* =========================================
   TYROLBOT – SO FUNKTIONIERT ES
========================================= */
.agchat-process-section {
    padding: 150px 0;
    background: #ffffff;
}


.agchat-process-intro,
.agchat-process-grid {
    width: min(calc(100% - 48px), 1120px);
    margin-left: auto;
    margin-right: auto;
}

.agchat-process-intro {
    margin-bottom: clamp(45px, 6vw, 70px);
}

.agchat-process-kicker {
    display: block;
    margin-bottom: 14px;

    color: #13bfae;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.agchat-process-heading-smaller {
    margin: 0;
    max-width: 720px;

    color: #080808;
    font-size: clamp(28px, 3.8vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.agchat-process-lead {
    max-width: 650px;
    margin: 22px 0 0;

    color: #626262;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
}


/* =========================================
   GRID
========================================= */
.agchat-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}

/* =========================================
   KARTE
========================================= */
.agchat-process-card {
    position: relative;
    min-height: 335px;
    padding: clamp(38px, 4vw, 65px) clamp(26px, 3vw, 48px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    text-align: center;
    background: #ffffff;

    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.agchat-process-card:hover {
    background: #fafafa;
}


/* =========================================
   NUMMER IM HINTERGRUND
========================================= */
.agchat-process-number {
    position: absolute;
    top: 42px;
    right: 28px;

    color: #f3f3f3;
    font-size: clamp(82px, 8vw, 132px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;

    pointer-events: none;
    user-select: none;
}


/* =========================================
   ICON
========================================= */
.agchat-process-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;
    margin-bottom: 28px;
}

.agchat-process-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #111111;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.agchat-process-icon svg path:first-child {
    stroke: #13bfae;
}


/* =========================================
   TYPOGRAFIE
========================================= */
.agchat-process-title {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: #0b0b0b;
    font-size: clamp(18px, 1.7vw, 24px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
	max-width: 330px;
}

.agchat-process-text {
    position: relative;
    z-index: 2;
    
	max-width: 300px;
    margin: 0;

    color: #6b6b6b;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {

    .agchat-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agchat-process-card {
        min-height: 315px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 575px) {

    .agchat-process-section {
        padding: 70px 0;
    }

    .agchat-process-grid {
        grid-template-columns: 1fr;
    }

    .agchat-process-card {
        min-height: auto;
        padding: 55px 26px;
    }

    .agchat-process-number {
        top: 28px;
        right: 22px;
        font-size: 92px;
    }

    .agchat-process-title {
        font-size: 19px;
    }

    .agchat-process-text {
        font-size: 15px;
    }
}




/* =========================================
   TYROLBOT – ZIELGRUPPEN
========================================= */
.agchat-target-groups {
    padding: 140px 0;
    overflow: hidden;
    background: #182b35;
}


/* =========================================
   EINLEITUNG
========================================= */
.agchat-target-intro,
.agchat-target-grid {
    width: min(calc(100% - 48px), 1200px);
    margin-left: auto;
    margin-right: auto;
}

.agchat-target-intro {
    margin-bottom: clamp(45px, 6vw, 75px);
}

.agchat-target-kicker {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 15px;

    color: #13c5b3;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.agchat-target-kicker-logo {
    display: block;
    width: auto;
    height: 1.55em;
    flex-shrink: 0;
    transform: translateY(-1px);
}

.agchat-target-heading {
    max-width: 780px;
    margin: 0;

    color: #ffffff;
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.agchat-target-lead {
    max-width: 680px;
    margin: 22px 0 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
}


/* =========================================
   GRID
========================================= */

.agchat-target-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}


/* =========================================
   KARTE
========================================= */

.agchat-target-card {
    position: relative;
    min-height: 460px;
    padding: clamp(38px, 4vw, 58px);

    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);

    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    transition: background-color 0.3s ease;
}

.agchat-target-card:hover {
    background: rgba(255, 255, 255, 0.045);
}


/* =========================================
   NUMMER
========================================= */

.agchat-target-number {
    position: absolute;
    top: 24px;
    right: 26px;

    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(86px, 9vw, 140px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;

    pointer-events: none;
    user-select: none;
}


/* =========================================
   ICON
========================================= */

.agchat-target-icon {
    position: relative;
    z-index: 2;

    width: 64px;
    height: 64px;
    margin-bottom: 30px;
}

.agchat-target-icon svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: #13c5b3;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   TEXTE
========================================= */

.agchat-target-title {
    position: relative;
    z-index: 2;

    margin: 0 0 16px;

    color: #ffffff;
    font-size: clamp(20px, 1.7vw, 25px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.agchat-target-text {
    position: relative;
    z-index: 2;

    max-width: 330px;
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.65;
}


/* =========================================
   LISTE
========================================= */

.agchat-target-list {
    position: relative;
    z-index: 2;

    margin: 0;
    padding: 0;
    list-style: none;
}

.agchat-target-list li {
    position: relative;

    margin: 0;
    padding: 10px 0 10px 24px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.45;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agchat-target-list li::before {
    content: "✓";

    position: absolute;
    top: 10px;
    left: 0;

    color: #13c5b3;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .agchat-target-grid {
        grid-template-columns: 1fr;
    }

    .agchat-target-card {
        min-height: auto;
    }

    .agchat-target-text {
        max-width: 600px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 575px) {

    .agchat-target-groups {
        padding: 70px 0;
    }

    .agchat-target-intro,
    .agchat-target-grid {
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
    }

    .agchat-target-heading {
        font-size: clamp(30px, 9vw, 42px);
    }

    .agchat-target-card {
        padding: 45px 26px;
    }

    .agchat-target-number {
        top: 20px;
        right: 18px;
        font-size: 92px;
    }

    .agchat-target-icon {
        width: 56px;
        height: 56px;
    }

    .agchat-target-title {
        font-size: 20px;
    }
}




/* =========================
   TYROLBOT – BEISPIELBILDER
========================= */
.agchat-examples {
    padding: 130px 0 140px;
    background: #ffffff;
}


.agchat-examples__intro {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.agchat-section-kicker {
    display: block;
    margin-bottom: 18px;

    color: #00a98f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.agchat-examples__heading {
    margin: 0;

    color: #080808;
    font-size: clamp(34px, 4.5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.agchat-examples__text {
    max-width: 680px;
    margin: 24px auto 0;

    color: #5d6469;
    font-size: clamp(17px, 1.5vw, 18px);
    line-height: 1.65;
}


/* =========================
   GRID
========================= */
.agchat-examples__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px;

    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
}


/* =========================
   BILDER
========================= */
.agchat-examples__item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

.agchat-examples__item--center {
    max-width: 400px;
}

.agchat-examples__item img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================
   TABLET
========================= */
@media (max-width: 950px) {

    .agchat-examples__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px;
    }

    .agchat-examples__item,
    .agchat-examples__item--center {
        width: min(100%, 360px);
    }
}


/* =========================
   MOBILE
========================= */
@media (max-width: 650px) {

    .agchat-examples__grid {
        grid-template-columns: 1fr;
        gap: 28px;

        width: min(calc(100% - 32px), 1200px);
    }

    .agchat-examples__item,
    .agchat-examples__item--center {
        width: min(100%, 420px);
    }
}
@media (max-width: 575px) {
    .agchat-examples {
        padding: 70px 0;
    }

    .agchat-examples__intro {
        margin-bottom: 35px;
    }
}








/* =========================
   TYROLBOT – PREISE
========================= */
.agchat-pricing {
    position: relative;
    overflow: hidden;

    padding:
        clamp(90px, 9vw, 145px)
        24px
        clamp(90px, 10vw, 160px);

    background: #192f39;
    color: #ffffff;
}

.agchat-pricing::before {
    position: absolute;
    top: 0;
    left: 50%;

    width: min(calc(100% - 48px), 1080px);
    height: 1px;

    background: rgba(255, 255, 255, 0.14);
    content: "";
    transform: translateX(-50%);
}

.agchat-pricing__inner {
    position: relative;
    z-index: 1;

    width: min(100%, 1180px);
    margin: 0 auto;
}


/* =========================
   ÜBERSCHRIFT
========================= */

.agchat-pricing__header {
    max-width: 790px;
    margin-bottom: clamp(55px, 6vw, 85px);
}

.agchat-pricing__kicker {
    display: block;
    margin-bottom: 18px;

    color: #21d7c3;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.agchat-pricing__heading {
    margin: 0;

    color: #ffffff;
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.agchat-pricing__intro {
    max-width: 800px;
    margin: 24px 0 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
}


/* =========================
   LOGO / LABEL ANGLEICHEN
========================= */

.agchat-pricing__label--logo,
.agchat-price-card__label {
    display: flex;
    align-items: flex-start;
    height: 32px;
    margin-bottom: 18px;
}

.agchat-pricing__card-logo {
    display: block;
    width: 140px;
    max-width: 100%;
    height: auto;
}


/* =========================
   PREISKARTEN
========================= */

/* =========2 Spalten================ 
.agchat-pricing__grid {
    display: grid;

    width: min(1250px, calc(100vw - 64px));
    margin: 14px 0 14px 50%;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 0;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
}
*/

.agchat-pricing__grid {
    display: grid;
    width: min(1250px, calc(100vw - 64px));
    margin: 14px 0 14px 50%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateX(-50%);
}


.agchat-price-card {
    position: relative;
    display: flex;

    width: 100%;
    min-width: 0;
    height: 100%;
    margin: 0;

    padding: clamp(42px, 3vw, 54px) clamp(30px, 2.4vw, 40px);

    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);

    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.agchat-price-card:hover {
    background: rgba(255, 255, 255, 0.045);
}

.agchat-price-card:last-child {
    border-right: 0;
}


/* =========================
   GROSSE NUMMER
========================= */
.agchat-price-card__number {
    position: absolute;
    top: 10px;
    right: 20px;

    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(72px, 7vw, 112px);
    font-weight: 500;
    line-height: 1;

    pointer-events: none;
    user-select: none;
}


/* =========================
   KARTENINHALT
========================= */
.agchat-price-card__content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

.agchat-price-card__label {
    color: #21d7c3;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.agchat-price-card__title {
    margin: 0;

    color: #ffffff;
    font-size: clamp(21px, 1.7vw, 26px);
    font-weight: 500;
    line-height: 1.17;
    letter-spacing: -0.025em;
}

.agchat-price-card__text {
    margin: 18px 0 0;

    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================
   PREIS
========================= */
.agchat-price-card__price {
    margin: 28px 0 8px;
    padding-bottom: 20px;

    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.price-from {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-weight: 500;
}

.price-value {
    color: #ffffff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
}

.price-period {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}


/* =========================
   EINRICHTUNG
========================= */
.agchat-price-card__setup {
    margin-top: 0;
    padding-top: 0;
}

.agchat-price-card__setup-title {
    margin-bottom: 4px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.agchat-price-card__setup-text {
    max-width: 420px;
    padding-bottom: 1rem;

    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================
   LEISTUNGEN
========================= */
.agchat-price-card__features {
    display: grid;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.agchat-price-card__features li {
    position: relative;
    padding: 11px 0 11px 21px;
    color: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14.5px;
    line-height: 1.4;
}

.agchat-price-card__features li::before {
    position: absolute;
    top: 11px;
    left: 0;
    color: #21d7c3;
    font-weight: 700;
    content: "✓";
}


/* =========================
   BUTTON
========================= */
.agchat-price-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    max-width: 100%;
    min-height: 50px;

    margin-top: auto;
    padding: 13px 22px;

    background: transparent;
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 2px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.agchat-price-card__button:hover,
.agchat-price-card__button:focus-visible {
    background: #21d7c3;
    color: #122a33;
    border-color: #21d7c3;
}

.agchat-price-card__button:focus-visible {
    outline: 3px solid rgba(33, 215, 195, 0.35);
    outline-offset: 4px;
}


/* =========================
   FOOTER
========================= */
.agchat-pricing__footer {
    max-width: 950px;
    margin: 60px auto 0;
    text-align: center;
}

.agchat-pricing__footer p {
    margin: 0;

    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   ABSCHLUSS CTA
========================= */
.agchat-pricing__final-cta {
    max-width: 820px;
    margin: clamp(80px, 8vw, 120px) auto 0;
    padding-top: clamp(60px, 6vw, 85px);

    border-top: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
}

.agchat-pricing__final-heading {
    max-width: 650px;
    margin: 0 auto;

    color: #ffffff;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.agchat-pricing__final-text {
    max-width: 650px;
    margin: 22px auto 0;

    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.6;
}



/* =========================
   TABLET
========================= */
@media (max-width: 980px) {

    .agchat-pricing__grid {
        width: 100%;
        margin: 0;

        grid-template-columns: 1fr;

        transform: none;
    }

    .agchat-price-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .agchat-price-card:last-child {
        border-bottom: 0;
    }
}


/* =========================
   MOBIL
========================= */

@media (max-width: 620px) {

    .agchat-pricing {
        padding: 75px 16px 85px;
    }

    .agchat-pricing::before {
        width: calc(100% - 32px);
    }

    .agchat-price-card {
        padding: 36px 24px;
    }

    .agchat-price-card__features {
        grid-template-columns: 1fr;
    }
}





/* =========================================
   TYROLBOT – FOOTER
========================================= */
:root {
    --tyrolbot-footer-height: 330px;
}


/* Footer hinter dem Seiteninhalt */
/* Footer hinter dem Seiteninhalt */
#dsn_footer {
    position: sticky;
    bottom: 0;
    z-index: 0;

    background: #f5f6f6;
    color: #000000;

    font-family: Arial, Helvetica, sans-serif;
}

#dsn_footer * {
    font-family: inherit;
}

/* Hauptinhalt liegt über dem Footer */
#main-content {
    position: relative;
    z-index: 2;
    background: #ffffff;
}


/* =========================================
   FOOTER-INHALT
========================================= */
#dsn_footer .footer-content {
    padding-top: 60px;
    padding-bottom: 55px;
}

#dsn_footer .wf-container-2xl {
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
}


/* Logo */
#dsn_footer .logo-footer {
    padding-bottom: 20px;
}

#dsn_footer .logo-footer img {
    display: block;
    width: 200px;
    height: auto;
}


/* Überschriften */
#dsn_footer .subtitle {
    padding-bottom: 16px;
    color: #000000;
	margin-top: 20px;
}

#dsn_footer .subtitle span {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.08em;
}


/* Texte */
#dsn_footer .col-contact p,
#dsn_footer .col-address p {
    margin: 0 0 8px;
    line-height: 1.4;
}

#dsn_footer .col-contact p {
    font-size: 1rem;
}

#dsn_footer .col-address p {
    font-size: 0.95rem;
}

#dsn_footer .col-contact p:last-child,
#dsn_footer .col-address p:last-child {
    margin-bottom: 0;
}


/* Links */
#dsn_footer a {
    color: #000000;
    text-decoration: none;
}

#dsn_footer a:hover,
#dsn_footer a:focus-visible {
    color: #13bfae;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    :root {
        --tyrolbot-footer-height: 420px;
    }

    #dsn_footer .footer-content {
        padding-top: 50px;
        padding-bottom: 45px;
    }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {

    :root {
        --tyrolbot-footer-height: 560px;
    }

    #dsn_footer .wf-container-2xl {
        width: min(calc(100% - 32px), 1200px);
    }

    #dsn_footer .logo-footer {
        margin-bottom: 24px;
    }

    #dsn_footer .subtitle {
        margin-top: 28px;
    }
}


/* =========================================
   TYROLBOT FOOTER – GRID
========================================= */
#dsn_footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

#dsn_footer .row > * {
    box-sizing: border-box;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

/* ab 576px */
@media (min-width: 576px) {

    #dsn_footer .col-sm-3 {
        width: 25%;
    }

    #dsn_footer .col-sm-6 {
        width: 50%;
    }

    #dsn_footer .col-sm-9 {
        width: 75%;
    }
}

/* ab 768px */
@media (min-width: 768px) {

    #dsn_footer .col-md-4 {
        width: 33.333333%;
    }

    #dsn_footer .col-md-6 {
        width: 50%;
    }

    #dsn_footer .col-md-8 {
        width: 66.666667%;
    }
}

/* ab 992px */
@media (min-width: 992px) {

    #dsn_footer .col-lg-4 {
        width: 33.333333%;
    }

    #dsn_footer .col-lg-6 {
        width: 50%;
    }

    #dsn_footer .col-lg-8 {
        width: 66.666667%;
    }
}

/* ab 1200px */
@media (min-width: 1200px) {

    #dsn_footer .col-xl-5 {
        width: 41.666667%;
    }

    #dsn_footer .col-xl-7 {
        width: 58.333333%;
    }
}





/* =========================
   TYROLBOT REQUEST HERO
========================= */
.tyrolbot-request-hero__container {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}


/* =========================
   TYROLBOT REQUEST HERO
========================= */
.tyrolbot-request-hero__intro {
    position: relative;
    z-index: 2;
    max-width: 760px;

    padding:
        clamp(40px, 4vw, 60px)
        0
        clamp(15px, 2vw, 25px);
}


.tyrolbot-request-hero__eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #00bfae;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.tyrolbot-request-hero__heading {
    max-width: 700px;
    margin: 0;
    color: #0c0c0c;
    font-size: clamp(38px, 3.8vw, 58px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.045em;
}


.tyrolbot-request-hero__lead {
    max-width: 680px;

    margin: 22px 0 0;

    color: #626a70;

    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.6;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

    .tyrolbot-request-hero__container {
        width: min(calc(100% - 32px), 1180px);
    }

    .tyrolbot-request-hero__intro {
        padding:
            45px
            0
            55px;
    }

    .tyrolbot-request-hero__heading {
        font-size: clamp(34px, 9vw, 46px);
    }

    .tyrolbot-request-hero__lead {
        margin-top: 18px;
    }
}





/* =========================================
   TYROLBOT – ANFRAGEFORMULAR
========================================= */
.tyrolbot-request-form-wrap {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 5px 30px 80px;
}

/* -----------------------------------------
   Anfrage-Typ
----------------------------------------- */
.tyrolbot-request-type {
    max-width: 560px;
    margin-bottom: 35px;
}

.tyrolbot-request-type label {
    display: block;
    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 600;
}

.tyrolbot-request-type select {
    width: 100%;
}


/* -----------------------------------------
   Formular-Abschnitte
----------------------------------------- */
.tyrolbot-form-section {
    padding: 0 0 55px;
    margin-bottom: 50px;

    border-bottom: 1px solid #dfe4e6;
}


/* Abschnittsüberschrift */
.tyrolbot-form-section__head {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 0;

    align-items: start;

    /* vorher 38px */
    margin-bottom: 30px;
}

.tyrolbot-form-section__head > span {
    font-size: 54px;
    line-height: 1;
    font-weight: 300;
    color: #dfe4e6;
}

.tyrolbot-form-section__head h2 {
    margin: 0 0 7px;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;
}

.tyrolbot-form-section__head p {
    margin: 0;
    color: #747d82;
}


/* -----------------------------------------
   2-spaltiges Formular
----------------------------------------- */
.tyrolbot-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 32px;
}


/* -----------------------------------------
   Felder
----------------------------------------- */
.tyrolbot-form-field {
    min-width: 0;
}

.tyrolbot-form-field label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.tyrolbot-form-field input,
.tyrolbot-form-field select,
.tyrolbot-form-field textarea,
.tyrolbot-request-type select {
    display: block;
    width: 100%;
    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #d5dcdf;
    border-radius: 0;
    background: #fff;

    font: inherit;
    color: #182d36;

    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.tyrolbot-form-field input,
.tyrolbot-form-field select,
.tyrolbot-request-type select {
    min-height: 48px;
}

.tyrolbot-form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.tyrolbot-form-field input:focus,
.tyrolbot-form-field select:focus,
.tyrolbot-form-field textarea:focus,
.tyrolbot-request-type select:focus {
    border-color: #00bca8;
    box-shadow: 0 0 0 2px rgba(0, 188, 168, .10);
}


/* -----------------------------------------
   Anmerkungen
----------------------------------------- */
.tyrolbot-form-field--full {
    margin-top: 30px;
}


/* -----------------------------------------
   Datenschutz + Button
----------------------------------------- */
.tyrolbot-request-form__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.tyrolbot-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    max-width: 760px;

    font-size: 13px;
    line-height: 1.5;
    color: #687277;
}

.tyrolbot-checkbox input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    flex: 0 0 auto;
}

.tyrolbot-request-submit {
    flex: 0 0 auto;

    min-height: 50px;
    padding: 0 28px;

    border: 0;
    background: #00bca8;
    color: #fff;

    font: inherit;
    font-weight: 600;

    cursor: pointer;
    transition: opacity .2s ease;
}

.tyrolbot-request-submit:hover {
    opacity: .82;
}

.tyrolbot-request-submit:focus-visible {
    outline: 3px solid #182d36;
    outline-offset: 3px;
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 767px) {

    .tyrolbot-request-hero__intro {
        padding:
            35px
            0
            30px;
    }
	
	.tyrolbot-request-form-wrap {
        padding: 20px 20px 60px;
    }

    .tyrolbot-request-type {
        margin-bottom: 35px;
    }

    .tyrolbot-form-section {
        padding-bottom: 45px;
        margin-bottom: 45px;
    }

    .tyrolbot-form-section__head {
        grid-template-columns: 52px 1fr;
        margin-bottom: 26px;
    }

    .tyrolbot-form-section__head > span {
        font-size: 40px;
    }

    .tyrolbot-form-section__head h2 {
        font-size: 24px;
    }

    .tyrolbot-form-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .tyrolbot-request-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .tyrolbot-request-submit {
        width: 100%;
    }
}


.tyrolbot-request-message {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.5;
}

.tyrolbot-request-submit:disabled {
    opacity: .6;
    cursor: wait;
}

/* =========================
   SCROLL TO TOP
========================= */
.tyrolbot-scroll-top {
    position: fixed;
    right: 0px;
    bottom: 28px;
    z-index: 20;

    width: 65px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;
     
	background:#00b894;
    color: #fff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    border: 0;
    outline: 0;
    box-shadow: none;
    appearance: none;


    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}

.tyrolbot-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tyrolbot-scroll-top:hover {
    background: #18323c;
    color: #fff;
}

.tyrolbot-scroll-top:focus-visible {
    outline: 3px solid #00bfae;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    .tyrolbot-scroll-top {
        right: 18px;
        bottom: 18px;
        width: 42px;
        height: 42px;
    }
}










/* =========================================
   TYROLBOT – IMPRESSUM
========================================= */
.tyrolbot-legal {
    padding: clamp(40px, 4vw, 60px) 0 65px;
}

.tyrolbot-legal__container {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
}


/* =========================
   INTRO
========================= */
.tyrolbot-legal__intro {
    margin-bottom: 26px;
}

.tyrolbot-legal__kicker {
    display: block;
    margin-bottom: 12px;

    color: #00bca8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tyrolbot-legal__heading {
    margin: 0;

    color: #0c0c0c;
    font-size: clamp(38px, 3.8vw, 56px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.04em;
}


/* =========================
   WEBSITEBETREIBER
========================= */
.tyrolbot-legal__operator {
    max-width: 1050px;
    margin-bottom: 42px;
}

.tyrolbot-legal__section-label {
    display: block;
    margin-bottom: 9px;

    color: #00bca8;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tyrolbot-legal__operator h2 {
    margin: 0 0 6px;
    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}


/* Adresse / Telefon / E-Mail */
.tyrolbot-legal__operator-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 22px;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.5;
}

.tyrolbot-legal__operator-details span {
    display: inline-block;
}


/* UID + WKO */
.tyrolbot-legal__operator-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 22px;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================
   ENTWICKLUNG & VERTRIEB
========================= */
.tyrolbot-legal__partners {
    padding: 0;
    border: 0;
}

.tyrolbot-legal__partners .tyrolbot-legal__section-label {
    display: none;
}

.tyrolbot-legal__partners-heading {
    margin: 0;
    color: #111;
    font-size: clamp(24px, 2vw, 29px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.tyrolbot-legal__partners-intro {
    margin: 7px 0 18px;

    color: #333;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================
   PARTNER
========================= */
.tyrolbot-legal__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(60px, 9vw, 150px);
    max-width: 1000px;
}

.tyrolbot-legal__partner {
    min-height: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.tyrolbot-legal__partner + .tyrolbot-legal__partner {
    border: 0;
}

.tyrolbot-legal__partner h3 {
    margin: 0 0 4px !important;
    padding: 0 !important;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
}

.tyrolbot-legal__partner h3 + p {
    margin: 0 !important;
    padding: 0 !important;
}

.tyrolbot-legal__partner p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
    line-height: 1.4;
}

.tyrolbot-legal__partner p + p {
    margin-top: 6px !important;
}

/* =========================
   LINKS
========================= */
.tyrolbot-legal a {
    color: #007f76;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    .tyrolbot-legal {
        padding: 40px 0 55px;
    }

    .tyrolbot-legal__container {
        width: min(calc(100% - 32px), 1180px);
    }

    .tyrolbot-legal__intro {
        margin-bottom: 26px;
    }

    .tyrolbot-legal__heading {
        font-size: clamp(34px, 9vw, 46px);
    }

    .tyrolbot-legal__operator {
        margin-bottom: 38px;
    }

    .tyrolbot-legal__operator-details,
    .tyrolbot-legal__operator-meta {
        display: block;
    }

    .tyrolbot-legal__operator-details span,
    .tyrolbot-legal__operator-meta span,
    .tyrolbot-legal__operator-meta a {
        display: block;
        margin-bottom: 4px;
    }

    .tyrolbot-legal__partners-heading {
        font-size: 24px;
    }

    .tyrolbot-legal__partners-intro {
        margin-bottom: 20px;
    }

    .tyrolbot-legal__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tyrolbot-legal__partner + .tyrolbot-legal__partner {
        padding-top: 22px;
        border-top: 1px solid #dfe4e6;
    }
}


/* =========================
   Inhalt
========================= */
.tyrolbot-legal__content {
    max-width: 1180px;
    margin: 20px auto 0;
}


/* Überschriften H2 */
.tyrolbot-legal__content h2 {
    margin: 20px 0 7px;
    font-size: 18px;
    font-weight: 600;
}

.tyrolbot-legal__content h2:first-child {
    margin-top: 0;
}


/* Überschriften H3 */
.tyrolbot-legal__content h3 {
    margin: 20px 0 7px;
    font-size: 18px;
    font-weight: 600;
}


/* Texte */
.tyrolbot-legal__content p {
    max-width: 1180px;
    margin: 0 0 10px;
    line-height: 1.4;
	font-size: 15px;
}






/* =========================
   WEBSITE-WISSEN
========================= */

.tyrolbot-demo__content
.tyrolbot-demo__panel.tyrolbot-demo__panel--website {
    width: 100%;
    height: 100%;
    min-height: 610px;
    padding: 55px 60px;
    box-sizing: border-box;
    background: #f7f8f9;
    color: #172235;
}

.tyrolbot-demo__panel[hidden] {
    display: none !important;
}


.tyrolbot-demo__panel--website
.tyrolbot-demo__website-info {
    width: 100%;
    max-width: 850px;
}


/* Kicker */

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-kicker {
    display: block;
    margin: 0 0 12px;
    color: #00bfa6;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* Überschrift */

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-heading {
    margin: 0 0 16px;
    color: #172235;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}


/* Einleitung */

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-text {
    max-width: 720px;
    margin: 0 0 38px;
    color: #66717d;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================
   DATEN
========================= */

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin: 0 0 30px;
    border: 1px solid #dfe4e8;
    background: #fff;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-data > div {
    padding: 22px 24px;
    border-right: 1px solid #dfe4e8;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-data > div:last-child {
    border-right: 0;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-data span {
    display: block;
    margin: 0 0 7px;
    color: #89929d;
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-data strong {
    display: block;
    color: #172235;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}


/* =========================
   HINWEIS
========================= */

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-note {
    width: 100%;
    padding: 24px 28px;
    box-sizing: border-box;
    border: 1px solid #d9e6e5;
    border-left: 4px solid #00bfa6;
    background: #eef7f5;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-note strong {
    display: block;
    margin: 0 0 7px;
    color: #172235;
    font-size: 15px;
    font-weight: 600;
}

.tyrolbot-demo__panel--website
.tyrolbot-demo__website-note p {
    margin: 0;
    color: #66717d;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 1024px) {

    .tyrolbot-demo__content
    .tyrolbot-demo__panel.tyrolbot-demo__panel--website {
        padding: 40px 35px;
    }
}

@media (max-width: 767px) {

    .tyrolbot-demo__content
    .tyrolbot-demo__panel.tyrolbot-demo__panel--website {
        min-height: 0;
        padding: 30px 22px;
    }

    .tyrolbot-demo__panel--website
    .tyrolbot-demo__website-heading {
        font-size: 24px;
    }

    .tyrolbot-demo__panel--website
    .tyrolbot-demo__website-data {
        grid-template-columns: 1fr;
    }

    .tyrolbot-demo__panel--website
    .tyrolbot-demo__website-data > div {
        border-right: 0;
        border-bottom: 1px solid #dfe4e8;
    }

    .tyrolbot-demo__panel--website
    .tyrolbot-demo__website-data > div:last-child {
        border-bottom: 0;
    }
}


/* =========================
   DATENSCHUTZ
========================= */

.tyrolbot-privacy .tyrolbot-legal__intro,
.tyrolbot-privacy .tyrolbot-legal__operator,
.tyrolbot-privacy .tyrolbot-legal__content {
    width: 100%;
    max-width: none;
}

/* Verantwortlicher */

.tyrolbot-privacy .tyrolbot-legal__operator {
    margin-bottom: 35px;
}

/* Überschriften */

.tyrolbot-privacy .tyrolbot-legal__content h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: 1.35rem;
    line-height: 1.3;
}

.tyrolbot-privacy .tyrolbot-legal__content h2:first-child {
    margin-top: 0;
}

.tyrolbot-privacy .tyrolbot-legal__content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.35;
}

/* Fließtext */

.tyrolbot-privacy .tyrolbot-legal__content p {
    width: 100%;
    max-width: none;
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Abstand zum Footer */

.tyrolbot-privacy {
    padding-bottom: 0px;
}

.tyrolbot-privacy .tyrolbot-legal__content > *:last-child {
    margin-bottom: 0;
}