@charset "utf-8";@font-face {
    font-family: albra_bold;
    font-style: normal;
    font-weight: 700;
    src: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Bold.woff) format("woff")
}

@font-face {
    font-family: albra_regular;
    font-style: normal;
    font-weight: 400;
    src: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Regular.woff) format("woff")
}

@font-face {
    font-family: albra_light;
    font-style: normal;
    font-weight: 200;
    src: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Light.woff) format("woff"),url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Light.woff2) format("woff2"),url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Light.otf) format("otf"),url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Light.ttf) format("ttf")
}

@font-face {
    font-family: albra_black;
    font-style: normal;
    font-weight: 900;
    src: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Black.woff) format("woff")
}

@font-face {
    font-family: "albra_serif";
    font-style: normal;
    font-weight: 400;
    src: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Telenet-Albra-Serif-Bold.woff) format("woff")
}

@font-face {
    font-family: "Material Icons";
    font-weight: 400;
    src: url(https://static.telenet.be/assets/fonts/bloomspeak/MaterialIcons-Regular.woff) format("woff")
}

:root {
    --tn-yellow: #FFC421;
    --tn-black: #000000;
    --tn-onyx: #252321;
    --tn-white: #ffffff;
    --tn-cloud: #E8E6E4;
    --tn-titanium: #B6B4B2;
    --tn-gray-800: #E8E6E4;
    --tn-lemon: #fff8e2;
    --tn-jeans: #c7d3e1;
    --focus: #252321;
    --container: 1200px;
    --radius: 4px;
    --shadow: 0 6px 24px rgba(0,0,0,.08);
    --h1: clamp(2rem, 3.2vw, 3rem);
    --h2: clamp(1.6rem, 2.2vw, 2.2rem);
    --h3: clamp(1.25rem, 2vw, 1.5rem);
    --lead: clamp(1.05rem, 1.4vw, 1.2rem);
    --body: 1rem
}

html,body {
    margin: 0;
    padding: 0
}

body {
    font-family: albra_regular,helvetica,verdana,arial,sans-serif;
    font-size: 16px;
    color: var(--tn-black);
    background: var(--tn-white);
    line-height: 1.6;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-family: albra_bold;
    font-size: var(--h1);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -.02em
}

h2 {
    font-family: albra_bold;
    font-size: var(--h2);
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

h3 {
    font-family: albra_bold;
    font-size: var(--h3);
    line-height: 1.25;
    margin: 0 0 8px
}

p {
    font-size: var(--body);
    margin: 0 0 12px
}

.mkto-lead {
    font-size: var(--lead);
    color: var(--tn-gray-800)
}

.mkto-container {
    max-width: var(--container);
    margin-inline:auto;padding-inline:20px}

.mkto-section {
    padding: 60px 0;
}

.mkto-section.mkto-tight {
    padding: 40px 0
}

.mkto-grid {
    display: grid;
    gap: 24px
}

.mkto-flex {
    display: flex;
    flex-direction: row
}

.mkto-two {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.mkto-two1 {
    grid-template-columns: 2fr 1fr
}

.mkto-two2 {
    grid-template-columns: 1fr 2fr
}

.mkto-three {
    grid-template-columns: repeat(3,minmax(0,1fr))
}

.mkto-four {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

@media (max-width: 960px) {
    .mkto-two,.mkto-two1,.mkto-two2,.mkto-three,.mkto-four {
        grid-template-columns:1fr
    }
}

.mkto-center {
    text-align: center
}

.mkto-right {
    text-align: right
}

.mkto-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
}

.mkto-muted {
    color: var(--tn-titanium)
}

.active {
    background-color: #f3f3f3
}

.mkto-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.05s ease,box-shadow 0.2s ease
}

.mkto-btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px
}

.mkto-btn:active {
    transform: translateY(1px)
}

.mkto-btn-primary {
    background: var(--tn-yellow);
    color: #000;
    box-shadow: var(--shadow);
    border: 2px solid var(--tn-yellow)
}

.mkto-btn-primary:hover {
    filter: saturate(1.1) brightness(.98)
}

.mkto-btn-primary-long {
    width: -webkit-fill-available!important
}

.mkto-btn-secondary {
    background: none;
    border: 2px solid var(--tn-black);
    color: var(--tn-black)
}

.mkto-btn-link {
    background: #fff0;
    border: none;
    color: var(--tn-black);
    text-decoration: underline;
    font-weight: 600
}

.mkto-chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--tn-cloud);
    border: 1px solid var(--tn-cloud);
    font-weight: 600;
    font-size: .9rem;
    margin: 10px
}

.mkto-visuals {
    object-fit: cover;
    border-radius: var(--radius);
    width: 100%
}

.mkto-card {
    background: var(--tn-white);
    border: 1px solid var(--tn-cloud);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: clip
}

.mkto-card-pad {
    padding: 22px
}

.mkto-site-header {
    background: #fff;
    position: relative;
    top: 0;
    z-index: 50
}

.mkto-site-header .mkto-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.mkto-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 50px;
    font-weight: 800
}

.mkto-brand img {
    height: 50px;
    width: auto;
    display: block
}

.mkto-lang-switch {
    display: flex;
    align-items: center;
    gap: 12px
}

.mkto-lang-switch a {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    padding: 6px 10px;
    border-radius: 8px
}

.mkto-lang-switch a.mkto-active,.mkto-lang-switch a:hover {
    background: var(--tn-cloud)
}

.mkto-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 64px
}

.mkto-nav-cta {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px
}

@media (max-width: 560px) {
    .mkto-site-header .mkto-cta-wrap {
        display:none
    }
}

.mkto-hero {
    position: relative
}

.mkto-hero .mkto-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.mkto-hero .mkto-badge {
    background-color: var(--tn-onyx);
    color: var(--tn-white);
    padding: 5px
}

.mkto-badge2 {
    position: absolute;
    top: -20px;
    right: 10px
}

.mkto-hero .mkto-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius)
}

.mkto-hero .mkto-copy {
    background: var(--tn-white);
    border-radius: var(--radius);
    padding: 0!important
}

@media (max-width: 960px) {
    .mkto-hero .mkto-wrap {
        grid-template-columns:1fr
    }
}
.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1; /* duwt de footer naar beneden als er weinig content is */
  min-height: 100vh;
}
.mkto-usp {
    display: flex;
    gap: 16px;
    flex-direction: row
}

.mkto-usp .mkto-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--tn-white);
    border: 1px solid var(--tn-cloud);
    border-radius: var(--radius);
    width: -webkit-fill-available
}

.mkto-usp .mkto-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 6px;
    background: var(--tn-yellow);
    display: grid;
    place-items: center;
    font-weight: 900
}

@media (max-width: 960px) {
    .mkto-usp {
        display:flex;
        gap: 16px;
        flex-direction: column!important
    }
}

.mkto-arrow-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.mkto-arrow-list li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0
}

.mkto-arrow-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .3rem;
    width: 18px;
    height: 18px;
    background-image: url(https://www.b2b.telenet.be/rs/839-XUN-065/images/Icon-TelenetArrow.png);
    background-size: contain;
    background-repeat: no-repeat
}

.mkto-plans {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat($ {
        NumberofProducts
    }

    ,1fr);align-items: stretch
}

@media (max-width: 960px) {
    .mkto-plans {
        grid-template-columns:1fr
    }
}

.mkto-plan {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 12px;
    border-radius: var(--radius);
    padding: 22px;
    background: var(--tn-cloud);
    box-sizing: border-box;
    position: relative
}

.mkto-plan .mkto-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    background: var(--tn-jeans);
    color: #000;
    border-radius: 4px;
    font-weight: 800
}

.mkto-plan .mkto-head {
    min-height: 84px
}

.mkto-plan .mkto-head h3 {
    margin: 0 0 4px
}

.mkto-plan .mkto-head .mkto-muted {
    display: block
}

.mkto-plan .mkto-price {
    font-size: 2rem;
    font-weight: 900;
    min-height: 40px;
    display: flex;
    align-items: flex-end
}

.mkto-plan .mkto-features {
    margin: 0
}

.mkto-plan .mkto-cta {
    align-self: end
}

.mkto-plan--featured {
    background: var(--tn-onyx);
    border-color: var(--tn-black);
    box-shadow: var(--shadow);
    color: var(--tn-white)
}

.mkto-compare {
    width: 100%;
    border-collapse: collapse
}

.mkto-compare th,.mkto-compare td {
    border: 1px solid var(--tn-cloud);
    padding: 12px;
    text-align: left
}

.mkto-compare th {
    background: var(--tn-lemon)
}

@media (max-width: 760px) {
    .mkto-card-pad {
        /* padding:0!important; */
    }

    .mkto-btn {
        width: 100%
    }

    .mkto-visual {
        order: -1
    }

    .mkto-compare thead {
        display: none
    }

    .mkto-compare tr {
        display: block;
        border: 1px solid var(--tn-cloud);
        margin-bottom: 14px;
        border-radius: var(--radius);
        overflow: hidden
    }

    .mkto-compare td {
        display: flex;
        justify-content: space-between;
        gap: 10px
    }

    .mkto-compare td::before {
        content: attr(data-label);
        font-weight: 600
    }
}

.mkto-quote {
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.mkto-quote img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover
}

blockquote {
    margin: 0;
    font-size: 1.05rem
}

.mkto-logo-wall {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
    align-items: center
}

.mkto-logo-wall img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1) opacity(.9)
}

@media (max-width: 960px) {
    .mkto-logo-wall {
        grid-template-columns:repeat(3,1fr)
    }
}

.mkto-video {
    position: relative;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--tn-cloud)
}

.mkto-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.mkto-faq-item {
    border: 1px solid var(--tn-titanium);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.mkto-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    background: var(--tn-white);
    border: 0;
    font-weight: 700;
    text-align: left;
    cursor: pointer
}

.mkto-faq-a {
    padding: 0 16px 16px;
    display: none
}

.mkto-faq-item[open] .mkto-faq-a {
    display: block
}

.mkto-form-wrap {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 24px
}

@media (max-width: 960px) {
    .mkto-form-wrap {
        grid-template-columns:1fr
    }
}

.mktoForm,.mktoForm * {
    font-family: albra_regular,helvetica,verdana,arial,sans-serif!important
}

.mktoForm .mktoFormRow {
    margin-bottom: 10px
}

.mkto-privacy {
    font-size: .9rem;
    color: var(--tn-titanium)
}

#sticky-cta {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 60;
    display: none
}

#sticky-cta .mkto-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--tn-onyx);
    color: var(--tn-white);
    padding: 12px;
    box-shadow: var(--shadow);
    justify-content: flex-end
}

#sticky-cta .mkto-bar .mkto-btn-primary {
    margin-left: 0
}

footer {
    background: var(--tn-lemon);
    /* position: fixed; */
    /* bottom: 0px; */
    /* width: -webkit-fill-available; */
    /* padding: 0px !important; */
}

footer .container>div {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0
}

@media (max-width: 42em) {
    footer .container>div {
        flex-direction:column
    }
}

footer img,footer p {
    color: #291d18
}

footer img {
    height: 28px;
    width: 24px
}

footer .social {
    margin-bottom: 30px;
    width: 100%
}

@media (max-width: 42em) {
    footer .social {
        margin-top:30px
    }
}

footer .social a {
    display: block;
    float: left
}

footer .social a:not(:last-child) {
    margin-right: 30px
}

footer .footer-links {
    width: 100%
}

footer .footer-links a {
    cursor: pointer;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none
}

footer .footer-links a:hover {
    text-decoration: underline
}

footer .row {
    border-bottom: 1px solid #766f6b;
    padding-bottom: 8px;
    width: 100%
}

footer .row span {
    line-height: 24px;
    text-decoration: underline
}

#onetrust-reject-all-handler {
    background-color: #fff!important;
    color: #000!important;
    border: 1px solid #000!important;
    border-radius: 4px!important
}

#onetrust-accept-btn-handler {
    background-color: #ffb61b!important;
    color: #000!important;
    border: none!important;
    border-radius: 4px!important
}

#onetrust-pc-btn-handler {
    color: #000!important
}

.save-preference-btn-handler {
    background-color: #ffb61b!important;
    color: #000!important;
    border: none!important;
    border-radius: 4px!important;
    font-weight: 800!important
}

.mkto-voicecloud-benefits {
    font-family: albra_regular,helvetica,verdana,arial,sans-serif;
    padding: 60px 20px
}

.mkto-voicecloud-benefits .vc-wrap {
    max-width: var(--container);
    margin: 0 auto
}

.mkto-voicecloud-benefits .vc-head {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
    text-align: left
}

.mkto-voicecloud-benefits .vc-eyebrow {
    font-family: albra_regular,helvetica,verdana,arial,sans-serif;
    display: inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    color: var(--tn-black);
    background: var(--tn-jeans);
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 700;
    width: fit-content
}

.mkto-voicecloud-benefits .vc-title {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--tn-black);
    margin: 0
}

.mkto-voicecloud-benefits .vc-grid {
    display: grid;
    gap: 18px
}

@media (min-width: 768px) {
    .mkto-voicecloud-benefits .vc-grid {
        grid-template-columns:repeat($ {
            NumberofUSP
        }

        ,1fr)}
}

.mkto-voicecloud-benefits .vc-card {
    background: var(--tn-white);
    border: 1px solid var(--tn-cloud);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    gap: 14px;
    transition: transform 0.2s ease,box-shadow 0.2s ease
}

.mkto-voicecloud-benefits .vc-card:focus-within,.mkto-voicecloud-benefits .vc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgb(0 0 0 / .09)
}

.mkto-voicecloud-benefits .vc-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background-color: var(--tn-yellow);
    border: 1px solid var(--tn-cloud)
}

.mkto-voicecloud-benefits .vc-h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--tn-black);
    margin: 0
}

.mkto-voicecloud-benefits .vc-p {
    margin: 0;
    color: var(--tn-onyx);
    line-height: 1.55;
    font-size: 15px
}

.mkto-voicecloud-benefits .vc-small {
    color: var(--tn-titanium);
    margin-top: -4px
}

@media (prefers-reduced-motion:reduce) {
    .mkto-voicecloud-benefits .vc-card {
        transition: none
    }

    .mkto-voicecloud-benefits .vc-card:hover {
        transform: none
    }
}

.hospitality-3col {
    padding: 60px 0;
    background: var(--tn-cloud)
}

.tnb-section {
    padding: 60px 20px
}

.tnb-section--problem {
    background-color: var(--tn-cloud);
    color: var(--tn-onyx)
}

.tnb-container {
    max-width: var(--container);
    margin: 0 auto
}

.tnb-eyebrow {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tn-titanium);
    margin: 0 0 8px
}

.tnb-section-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 16px;
    color: var(--tn-onyx)
}

.tnb-problem-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px
}

.tnb-problem-highlight {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 8px;
    background-color: var(--tn-white);
    border-left: 4px solid var(--tn-yellow)
}

.tnb-problem-title {
    font-size: 18px;
    margin: 0 0 12px
}

.tnb-problem-list {
    padding-left: 20px;
    margin: 0 0 12px
}

.tnb-problem-list li {
    margin-bottom: 4px
}

.tnb-problem-cta {
    margin: 0;
    font-weight: 600
}

<!--=====Hero Risicoscan Styles (1x per template plaatsen)=====-->.hero-risicoscan {
    padding: 24px 16px
}

.hero-risicoscan__inner {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 40px 48px;
    background: radial-gradient(circle at top left,#3a3025 0%,#252321 40%,#111111 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 18px 40px rgb(0 0 0 / .35)
}

.hero-risicoscan__content {
    flex: 1 1 60%;
    min-width: 0
}

.hero-risicoscan__content h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 700
}

.hero-risicoscan__content p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #f2f2f2
}

.hero-risicoscan__cta {
    margin-top: 28px
}

.mkto-btn-secondary-white {
    background: none;
    border: 2px solid var(--tn-white);
    color: var(--tn-white)
}

.hero-risicoscan__image-wrapper {
    flex: 0 0 320px;
    display: flex;
    justify-content: flex-end
}

.hero-risicoscan__image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: cover
}

@media (max-width: 900px) {
    .hero-risicoscan__inner {
        flex-direction:column;
        align-items: flex-start;
        padding: 32px 24px;
        gap: 24px
    }

    .hero-risicoscan__image-wrapper {
        width: 100%;
        justify-content: center
    }

    .hero-risicoscan__image-wrapper img {
        max-width: 260px
    }

    .mkto-service {
        padding: 10px!important
    }
}

@media (max-width: 600px) {
    .hero-risicoscan__inner {
        padding:24px 18px
    }

    .hero-risicoscan__content h1 {
        font-size: 1.7rem
    }

    .hero-risicoscan__btn {
        width: 100%;
        text-align: center
    }
}

.tnb-ai-feature {
    padding: 40px 16px;
    background-color: var(--tn-white)
}

.tnb-ai-feature__wrap {
    max-width: 1200px;
    margin: 0 auto
}

.tnb-ai-feature__tabs {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px
}

.tnb-ai-feature__tabs ul {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    background-color: var(--tn-cloud);
    list-style: none;
    margin: 0
}

.tnb-ai-feature__tabs li {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: .9rem;
    color: var(--tn-onyx);
    opacity: .8;
    white-space: wrap;
    text-align:center;
    cursor: pointer
}

.tnb-ai-feature__tabs li.is-active {
    background-color: var(--tn-yellow);
    color: var(--tn-black);
    font-weight: 600;
    opacity: 1
}

.tnb-ai-feature__inner {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
    gap: 40px;
    align-items: center
}

.tnb-ai-feature__left {
    min-width: 0
}

.tnb-ai-feature__gradient-card {
    background: radial-gradient(circle at top left,var(--tn-jeans) 0%,#7b87a3 35%,var(--tn-onyx) 100%);
    border-radius: 32px;
    padding: 40px 32px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden
}

.tnb-ai-feature__mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px
}

.tnb-ai-feature__mockup img {
    display: block;
    max-width: 320px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgb(0 0 0 / .35)
}

.tnb-ai-feature__chat-card {
    background-color: var(--tn-white);
    border-radius: 20px;
    padding: 16px 18px 14px;
    max-width: 280px;
    width: 100%;
    box-shadow: 0 18px 40px rgb(0 0 0 / .28)
}

.tnb-ai-feature__chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.tnb-ai-feature__chat-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    color: var(--tn-black);
    background: linear-gradient(135deg,var(--tn-yellow),var(--tn-lemon))
}

.tnb-ai-feature__chat-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--tn-onyx)
}

.tnb-ai-feature__chat-bubbles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px
}

.tnb-ai-feature__bubble {
    border-radius: 14px;
    padding: 8px 10px;
    font-size: .75rem;
    line-height: 1.4
}

.tnb-ai-feature__bubble--user {
    align-self: flex-end;
    background-color: var(--tn-yellow);
    color: var(--tn-black)
}

.tnb-ai-feature__bubble--bot {
    align-self: flex-start;
    background-color: #f3f3f3;
    color: var(--tn-onyx)
}

.tnb-ai-feature__chat-input {
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    background-color: var(--tn-cloud);
    padding: 6px 10px 6px 12px;
    font-size: .75rem;
    color: var(--tn-onyx);
    opacity: .9
}

.tnb-ai-feature__chat-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: var(--tn-yellow);
    font-size: .8rem
}

.tnb-ai-feature__right h2 {
    margin: 0 0 12px;
    font-size: clamp(1.8rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    color: var(--tn-onyx)
}

.tnb-ai-feature__right p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b4947
}

.tnb-ai-feature__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px
}

.tnb-ai-feature__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: var(--tn-onyx)
}

.tnb-ai-feature__list .check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    flex-shrink: 0;
    border: 2px solid var(--tn-yellow);
    box-sizing: border-box;
    position: relative
}

.tnb-ai-feature__list .check::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background-color: var(--tn-yellow)
}

.tnb-ai-feature__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: .7rem;
    margin-left: 4px;
    background-color: var(--tn-lemon);
    color: var(--tn-onyx);
    border: 1px solid var(--tn-yellow);
    font-weight: 600
}

.tnb-ai-feature__panel {
    display: none;
    transition: opacity 0.2s ease-out,transform 0.2s ease-out;
    opacity: 0;
    transform: translateY(4px)
}

.tnb-ai-feature__panel.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

@keyframes tnb-pulse {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 18px 40px rgb(0 0 0 / .28)
    }

    40% {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 22px 50px rgb(0 0 0 / .33)
    }

    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 18px 40px rgb(0 0 0 / .28)
    }
}

.tnb-ai-feature__chat-card.is-pulsing {
    animation: tnb-pulse 0.35s ease-out
}

@media (max-width: 960px) {
    .tnb-ai-feature__inner {
        grid-template-columns:1fr;
        gap: 32px
    }

    .tnb-ai-feature__gradient-card {
        padding: 28px 20px
    }

    .tnb-ai-feature__mockup {
        flex-direction: column
    }

    .tnb-ai-feature__mockup img {
        max-width: 260px
    }

    .tnb-ai-feature__chat-card {
        max-width: 260px
    }
}

@media (max-width: 640px) {
    .tnb-ai-feature {
        padding:32px 12px
    }

    .tnb-ai-feature__tabs ul {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch
    }

    .tnb-ai-feature__tabs li {
        font-size: .8rem
    }
}
