/* -------------------------------- */

/* overall */

/* -------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

:root {

    svg,
    img[src$=".svg"] {
        shape-rendering: geometricPrecision;
    }

    /* If your icons use <path> or <circle> inside the SVG */
    svg path,
    svg circle,
    svg polyline {
        vector-effect: non-scaling-stroke;
    }

}



body {
    background-size: cover;
    background-position: center;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

section {
    box-sizing: border-box;
}

/* -------------------------------- */

/* section: header */

/* -------------------------------- */

.navbar-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 20px;
    transition: all 0.2s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    padding: 0.75rem 0.75rem;
    border-radius: 0.5rem;

    box-sizing: border-box;
    transition: all 0.2s ease;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.navbar-container .logo img {
    height: 45px;
    transition: transform 0.8s ease-in-out;
    display: block;
}

.spinning {
    animation: logo-spin 0.8s ease-in-out;
}

@keyframes logo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* When scrolled, remove the top padding of the wrapper */
.navbar-wrapper.scrolled {
    padding-top: 0;
}

/* When scrolled, make the container full width and remove rounded corners */
.navbar-wrapper.scrolled .navbar-container {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex: 1;
    gap: 50px;
    color: rgb(36, 36, 36);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    justify-content: center;
}

.nav-links .bold {
    color: rgb(22, 22, 22);
    font-weight: 700;
}

.nav-buttons {
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.nav-buttons .btn {
    background: linear-gradient(to bottom right, #00d7ff, #4054ff);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.nav-buttons .btn:hover {
    color: rgb(255, 255, 255);
    filter: brightness(1.1);
}

.nav-links a {
    color: rgb(36, 36, 36);
    text-decoration: none;
    transition: color 0.2s ease;
}


.nav-links a:visited {
    color: rgb(36, 36, 36);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1400;
    padding-right: 10px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #1d1e20;
    transition: 0.3s;
}

.dropdown-menu {
    visibility: hidden;
}


.nav-menu-wrapper {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75vw;
    height: 100vh;
    background: rgb(253, 253, 253);
    border-right: #fff 2px solid;
    z-index: 1250;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-menu-wrapper.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);

}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 0;
    flex-grow: 1;
    justify-content: center;
    width: 100%;

}

.mobile-nav-links a {
    text-decoration: none;
    color: #1d1e20;
    font-size: 1.25rem;
    font-weight: 500;
}

.btn-mobile {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: white;
    border-radius: 0.5rem;
    z-index: 1;
    width: 100%;
    font-size: 1.25rem;
    margin-top: auto;
    margin-bottom: 100px;

}


.btn-mobile {
    background-image: linear-gradient(to top left, #1e67d6, #05d0ea);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}


.btn-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0.5rem;
    padding: 2px;
    background: linear-gradient(to top left, #1e67d6, #05d0ea);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}



.nav-menu-wrapper .logo {
    width: 100%;
}

.nav-menu-wrapper .logo img {
    width: 60px;
    height: 60px;
}

/* -------------------------------- */

/* section: hero */

/* -------------------------------- */


#hero {
    height: 100vh;
    margin-top: -90px;
    padding-top: 90px;
    background-image:
        linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%),
        url("../img/hero-bg/desktop-bg/hero-bg-desktop-100.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;

}

#hero .container-hero {
    min-width: 350px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    height: 100%;
    padding: 20px;
    max-width: 1200px;
}

#hero .container-hero .wrapper-text {
    max-width: 50%;
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    color: rgb(255, 255, 255);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.);
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 0.75rem 1.25rem;
    align-self: flex-end;


    background: white;
    background-image: linear-gradient(to top left, #1e67d6, #05d0ea);
    -webkit-background-clip: text;
    background-clip: text;
    

}

#hero .container-hero .wrapper-text::before  {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(to top left, #1e67d6, #05d0ea);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

#hero .container-hero .wrapper-text .hero-title {
    font-size: 2rem;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
    line-height: 1.2;
}


/* -------------------------------- */

/* section: tera-hook */

/* -------------------------------- */

#tera-hook {
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(0deg, #e9f1ff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

#tera-hook .container-promo {
    min-width: 350px;
    max-width: 1200px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
    gap: 25px;

}

.container-promo .wrapper-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.container-promo .wrapper-text .section-title {
    font-size: 4.25rem;
    font-weight: 400;
    color: #1d1e20;

}

.container-promo .wrapper-text .section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
    margin-top: 20px;
}

.container-promo .wrapper-text .section-cta {
    display: flex;
    justify-content: center;
    margin-top: 25px;


}

.container-promo .wrapper-text .section-cta .btn {
    background-image: linear-gradient(to top left, #1e67d6, #05d0ea);
    border-radius: 50px;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 500;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    max-width: fit-content;
    min-width: 250px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    gap: 8px;

}

.container-promo .wrapper-text .section-cta .btn:hover {
    color: rgb(255, 255, 255);
    filter: brightness(1.1);
}

.container-promo .wrapper-text .section-cta a {
    color: #1d1e20;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;

}



/* -------------------------------- */

/* section: tera-features*/

/* -------------------------------- */

#tera-features {
    min-height: 75vh;
    background-color: #fff;
    display: flex;
    justify-content: center;
    padding: 40px;
}

#tera-features .container-features {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;

    min-width: 350px;
    max-width: 1200px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    gap: 5vh;
}

#tera-features .wrapper-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
}

.heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.heading .section-title {
    font-size: 5rem;
    font-weight: 400;
    color: #1d1e20;
    margin-top: 100px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to top left, #1e67d6 25%, #05d0ea 75%);
}

.heading .section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: #1d1e20;
    margin-bottom: 50px;
}

.wrapper-text .data-privacy .data-privacy-text {
    font-size: 1rem;
    font-weight: 300;
    color: #1d1e20;
    margin-bottom: 50px;
}

.wrapper-text .data-privacy .data-privacy-text .bold {
    font-weight: 600;
}


.wrapper-features-desktop {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.wrapper-features-desktop .tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    cursor: pointer;
    max-width: 900px;
}

.wrapper-features-desktop .tabs .tab {
    flex: 1;
    padding: 15px 15px;
    border-bottom: 2px solid #f2f3f6;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}


.wrapper-features-desktop .tabs .tab:hover {
    background-color: #f3f7fc;
}

.wrapper-features-desktop .tabs .tab.active {
    background-color: #f3f7fc;
    border-bottom: 2px solid;
    border-image-source: linear-gradient(to top left, #1e67d6 25%, #05d0ea 75%);
    border-image-slice: 1;

}

.wrapper-features-desktop .content {
    display: none;
    text-align: center;
    flex-direction: row;
    align-items: stretch;
    gap: 15px;
}

.wrapper-features-desktop .content.active {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: 30px;
    width: 100%;
}

.wrapper-features-desktop .content .img-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.wrapper-features-desktop .content .img-container {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}


.wrapper-features-desktop .content .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.wrapper-features-desktop .content .img-container:hover img {
    transform: scale(1.1);
}

.wrapper-features-desktop .content .wrapper-feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    text-align: left;
    width: 55%;
    gap: 15px;
}

.wrapper-features-desktop .content .wrapper-feature-text .features-title {
    font-size: 2.25rem;
    font-weight: 400;
}

.wrapper-features-desktop .content .wrapper-feature-text .features-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: #1d1e20;
}

.wrapper-features-mobile {
    display: none;
}

.wrapper-features-mobile .container-accordion {
    margin: 0 auto;
    max-width: 768px;
    padding: 0;
}

.wrapper-features-mobile .container-accordion li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
}

.wrapper-features-mobile .container-accordion li label {
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;

}


.wrapper-features-mobile .container-accordion li label .feature-title {
    margin: 0;
    border-left: 2px solid #f3f7fc;
    padding: 15px 10px;
    font-size: 1.5rem;
}

.wrapper-features-mobile .container-accordion input[type="radio"] {
    display: none;
}


.wrapper-features-mobile .container-accordion li .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;

}

.wrapper-features-mobile .container-accordion li .content .wrapper-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}


.wrapper-features-mobile .container-accordion li .content .wrapper-content img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.wrapper-features-mobile .container-accordion input[type="radio"]:checked+label .feature-title {
    background-color: #f3f7fc;
    border-left: 2px solid #05d0ea;
}

.wrapper-features-mobile .container-accordion input[type="radio"]:checked+label+.content {
    max-height: 900px;
    padding: 0 20px;
    border-left: 2px solid;
    border-image-source: linear-gradient(to top left, #1e67d6 25%, #05d0ea 75%);
    border-image-slice: 1;
}

.wrapper-features-mobile .container-accordion li .content .wrapper-content .feature-heading {
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 10px;
    padding: 10px;
}

.wrapper-features-mobile .container-accordion li .content .wrapper-content .feature-text {
    font-size: 1.15rem;
    margin-bottom: 10px;
    padding: 10px;
}


/* -------------------------------- */

/* section: asd-challenges */

/* -------------------------------- */


#asd-challenges {
    min-height: 75vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

#asd-challenges .container-asd-challenges {
    min-width: 350px;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    gap: 5vh;

}

.container-asd-challenges .wrapper-text {
    flex-direction: column;
    align-self: center;
    justify-content: flex-end;
    /* This aligns the image to the end (right side) of the wrapper div */
    align-self: center;
    /* Keeps it vertically centered */
    width: 50%;
}

.container-asd-challenges .wrapper-text .section-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: #1d1e20;

}

.container-asd-challenges .wrapper-text .section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
    margin-top: 20px;
}

.container-asd-challenges .wrapper-text .section-subtitle .bold {
    font-weight: 600;
}

.container-asd-challenges .wrapper-text .section-refs {
    font-size: 0.85rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
    margin-top: 20px;

}

.container-asd-challenges .wrapper-text .section-refs a {
    text-decoration: none;
    color: #1d1e20;
}

.container-asd-challenges .wrapper-text .section-refs a:visited {
    color: #1d1e20;
}



.container-asd-challenges .wrapper-img {
    display: flex;
    align-self: center;
    justify-content: flex-end;
    align-self: center;
    pointer-events: none;
    width: 50%;
}

.container-asd-challenges .wrapper-img img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
    border-radius: 10px;
}



/* -------------------------------- */

/* section: tera-asd */

/* -------------------------------- */

#tera-asd {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: radial-gradient(circle, #ffffff 0%, #f0f2ff 100%);
    overflow: hidden;
}


#tera-asd .container-asd {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
}

#tera-asd .container-asd .section-title {
    font-size: 3rem;
    font-weight: 400;
    color: #1d1e20;
    margin: 0;
}

#tera-asd .container-asd .section-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.6;
    margin-top: 24px;
}

/* -------------------------------- */

/* section: tera-note-capturing */

/* -------------------------------- */


#tera-note-capturing {
    min-height: 80vh;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 40px;
}

#tera-note-capturing .container-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 50px;
}

#tera-note-capturing .container-section .wrapper-text {
    display: flex;
    max-width: 400px;
    width: 100%;
    flex-direction: column;
    text-align: left;
}

#tera-note-capturing .container-section .wrapper-text .section-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: #1d1e20;
    margin-bottom: 20px;

}

#tera-note-capturing .container-section .wrapper-text .section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
}

#tera-note-capturing .wrapper-text .section-subtitle .highlight {
    font-weight: 400;
}

.container-video {
    position: relative;
    max-width: 750px;
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    right: 5px;
}

.video-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    pointer-events: none;

}

.video-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-subs {
    min-height: 75px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.8rem 0.5rem;
    border-radius: 0.5rem;
    color: rgb(235, 235, 235);
    font-weight: 300;
    font-size: 1.15rem;


    width: 90%;
    max-width: 700px;
    text-align: center;
    z-index: 10;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

#typing-text::after {
    content: '|';
    animation: blink 0.8s infinite;
    color: #ffffff;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.video-subs .highlight {
    font-weight: 600;
    font-size: 1.15rem;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
}


.video-content {
    text-align: center;
    color: #1d1e20;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}



/* -------------------------------- */

/* section: tera-report-generation */

/* -------------------------------- */

#tera-report-generation {
    min-height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 40px;
}

#tera-report-generation .container-section {
    min-width: 350px;
    max-width: 1200px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    gap: 5vh;
}

#tera-report-generation .container-section .wrapper-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    text-align: center;
}

#tera-report-generation .container-section .wrapper-text .section-title {
    font-size: 2.75rem;
    font-weight: 400;
    color: #1d1e20;
}

#tera-report-generation .container-section .wrapper-text .section-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: #1d1e20;
}

#tera-report-generation .container-section .wrapper-text .section-subtitle .highlight {
    font-weight: 400;
}


#tera-report-generation .container-section .wrapper-report {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

}

#tera-report-generation .container-section .wrapper-report img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    border-radius: 15px;
}

#tera-report-generation .container-section .wrapper-cta {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

#tera-report-generation .container-section .wrapper-cta {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(to bottom, #f0f7ff, #fff);
    border-radius: 15px;
    min-height: 35vh;
}

#tera-report-generation .container-section .wrapper-cta .cta-text {
    text-align: left;
    font-weight: 400;
    color: #1d1e20;
    max-width: 75%;
    font-size: 2.5rem;
    line-height: 1.2;
}

#tera-report-generation .container-section .wrapper-cta .cta-text .highlight {
    font-weight: 400;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to top left, #1e67d6 25%, #05d0ea 75%);
}


#tera-report-generation .container-section .wrapper-cta .cta-btn {
    background-image: linear-gradient(to top left, #1e67d6, #05d0ea);
    border-radius: 50px;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 500;
    font-size: 1.35rem;
    transition: all 0.3s ease;
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    max-width: fit-content;
    min-width: 150px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    gap: 8px;
}

.cta-btn:hover {
    color: rgb(255, 255, 255);
    filter: brightness(1.1);

}

/* -------------------------------- */

/* section: asd-use-case */

/* -------------------------------- */

#asd-use-case {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;

    background-color: #f0f7ff;

    background-image:
        /* 1. Soft purple/lavender glow from top left */
        radial-gradient(at 10% 10%, rgba(199, 210, 254, 0.4) 0px, transparent 40%),
        /* 2. Soft sky blue glow from bottom right */
        radial-gradient(at 90% 90%, rgba(186, 230, 253, 0.4) 0px, transparent 40%),
        /* 3. Subtle center brightening */
        radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, transparent 100%);

    background-attachment: fixed;
}

#asd-use-case .container-use-case {
    min-width: 350px;
    max-width: 1200px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    gap: 5vh;

}

#asd-use-case .container-use-case .text-heading {
    font-size: 3rem;
    font-weight: 400;
    color: #1d1e20;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 30vh;
}

#asd-use-case .container-use-case .wrapper-use-case {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    align-self: flex-start;
    justify-content: center;
    gap: 5vh;
    margin-bottom: 15vh;
}

.wrapper-use-case .wrapper-text {
    flex-direction: column;
    align-self: center;
    justify-content: flex-end;
    align-self: flex-start;
    pointer-events: none;
    width: 50%;
}

.wrapper-use-case .wrapper-text .section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #1d1e20;

}

.wrapper-use-case .wrapper-text .section-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
    margin-top: 20px;
}

.wrapper-use-case .wrapper-img {
    display: flex;
    align-self: center;
    justify-content: flex-end;
    align-self: flex-start;
    pointer-events: none;
    width: 50%;
}

.wrapper-use-case .wrapper-img img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
    border-radius: 10px;
}

.container-use-case .wrapper-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    min-height: 400px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
}

.headline-container {
    line-height: 1.2;
    color: #fff;
    max-width: 1000px;


}

.container-use-case .wrapper-cta .cta-text {
    font-size: 4rem;
    font-weight: 400;
    color: #1d1e20;
    text-align: center;
    display: inline;

}

.sliding-window {
    display: inline-block;
    vertical-align: bottom;
    height: 5rem;
    overflow: hidden;
    color: #a7f3d0;
    text-align: center;
}

.sliding-window .word-list {
    display: block;
    animation: slide-smooth-loop 12s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

.sliding-window .word-list .word {
    display: block;
    font-size: 1.5rem;
    white-space: nowrap;
    padding-bottom: 0.2em;

    font-size: 4rem;
    font-weight: 400;
    color: #1d1e20;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to top left, #1e67d6 25%, #05d0ea 75%);

}

@keyframes slide-smooth-loop {

    0%,
    12% {
        transform: translateY(0%);
    }

    16.66%,
    28.66% {
        transform: translateY(-16.66%);
    }

    33.33%,
    45.33% {
        transform: translateY(-33.33%);
    }

    50%,
    62% {
        transform: translateY(-50%);
    }

    66.66%,
    78.66% {
        transform: translateY(-66.66%);
    }

    83.33%,
    100% {
        transform: translateY(-83.33%);
    }
}


.container-use-case .wrapper-cta .cta-btn {
    background: linear-gradient(to top left, #128C7E, #25D366);
    border-radius: 50px;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-weight: 500;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    max-width: fit-content;
    min-width: 250px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;


}

.container-use-case .wrapper-cta .cta-btn:hover {
    color: rgb(255, 255, 255);
    filter: brightness(1.1);

}




/* -------------------------------- */

/* section: footer*/

/* -------------------------------- */

.main-footer {
    background-color: #fff;
    padding: 25px 0;
    width: 100%;
    min-height: 75px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.footer-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    min-height: 100px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 0.85rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
}

.footer-tagline a {
    text-decoration: none;
    color: #1d1e20;
}

.footer-bottom {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    align-self: center;

    gap: 20px;
    max-width: 900px;
}

.footer-bottom .footer-tagline {
    font-size: 0.75rem;
    font-weight: 300;
    color: #1d1e20;
    line-height: 1.5;
    text-align: center;
}


/* -------------------------------- */
/* Media queries  */
/* -------------------------------- */


/* Mobile */
@media (max-width: 768px) {


    /* -------------------------------- */

    /* header */

    /* -------------------------------- */

    .nav-links,
    .nav-buttons {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 1300;
        margin-left: auto;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
        opacity: 0;
    }

    /* -------------------------------- */

    /* section: hero */

    /* -------------------------------- */


    #hero {
        padding: 20px;
        background-image:
            linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%),
            url("../img/hero-bg/mob-bg/hero-bg-mob-100.png");
    }

    #hero .container-hero {
        padding: 10px;
    }

    #hero .container-hero .wrapper-text {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1rem;
        
    }

    #hero .container-hero .wrapper-text .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: 400;

    }

    /* -------------------------------- */

    /* section: tera-hook */

    /* -------------------------------- */

    #tera-hook {
        padding: 20px;
    }

    #tera-hook .container-promo {
        flex-direction: column-reverse;
        padding: 10px;

    }

    #tera-hook .container-promo .wrapper-text {
        width: 100%;

    }

    #tera-hook .container-promo .wrapper-text .section-title {
        font-size: 2.5rem;
        font-weight: 400;

    }

    #tera-hook .container-promo .wrapper-text .section-subtitle {
        font-size: 1.25rem;

    }


    #tera-hook .container-promo .wrapper-text .section-cta {
        width: 100%;

    }


    #tera-hook .container-promo .wrapper-text .section-cta .btn {
        align-items: center;
        margin-bottom: 50px;
        display: block;
        width: 100%;

    }

    /* -------------------------------- */

    /* section: tera-features */

    /* -------------------------------- */

    #tera-features {
        padding: 20px;
    }

    #tera-features .container-features {
        padding: 10px;
    }

    #tera-features .container-features .wrapper-text .heading .section-title {
        font-size: 2.5rem;
        text-align: left;
        font-weight: 400;
    }

    #tera-features .container-features .wrapper-text .heading .section-subtitle {
        font-size: 1.25rem;
        text-align: left;
        margin-bottom: 25px;
    }

    #tera-features .container-features .wrapper-features {
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
    }

    #tera-features .container-features .wrapper-features .feature-item {
        align-items: center;
    }

    #tera-features .container-features .wrapper-features .feature-item .features-title {
        text-align: center;
        font-size: 1.75rem;
    }

    #tera-features .container-features .wrapper-features .feature-item .features-text {
        text-align: center;
        font-size: 1.25rem;
    }

    #tera-features .wrapper-text .data-privacy .data-privacy-text {
        font-size: 1.1rem;
    }

    .wrapper-features-desktop {
        display: none;

    }

    .wrapper-features-mobile {
        display: block;

    }

    /* -------------------------------- */

    /* section: tera-note-capturing */

    /* -------------------------------- */


    #tera-note-capturing {
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    #tera-note-capturing .container-section {
        flex-direction: column;
        padding: 10px;
    }

    #tera-note-capturing .container-section .wrapper-text .section-title {
        font-size: 2.25rem;
        font-weight: 400;


    }

    #tera-note-capturing .container-section .wrapper-text .section-subtitle {
        font-size: 1.25rem;

    }

    #tera-note-capturing .container-section .container-video .video-subs {
        min-height: 120px;
    }

    /* -------------------------------- */

    /* section: tera-report-generation */

    /* -------------------------------- */

    #tera-report-generation {
        padding: 20px;
    }

    #tera-report-generation .container-section {
        padding: 10px;
    }

    #tera-report-generation .container-section .wrapper-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        text-align: left;
    }

    #tera-report-generation .container-section .wrapper-text .section-title {
        font-size: 2.25rem;
        font-weight: 400;
    }

    #tera-report-generation .container-section .wrapper-text .section-subtitle {
        font-size: 1.25rem;
    }

    #tera-report-generation .container-section .wrapper-img img {
        max-width: 100%;
    }

    .img-desktop {
        display: none;
    }

    .img-mobile {
        display: block;
        max-width: 100%;
        height: auto;
    }

    #tera-report-generation .container-section .wrapper-cta {
        display: flex;
        flex-direction: column;
        margin-top: 25px;
    }

    #tera-report-generation .container-section .wrapper-cta {
        padding: 30px 20px;
        min-height: 100px;

    }

    #tera-report-generation .container-section .wrapper-cta .cta-text {
        max-width: 100%;
        font-size: 1.75rem;
        margin-bottom: 25px;
        text-align: center;

    }

    #tera-report-generation .container-section .wrapper-cta a {
        width: 100%;
        display: block;
    }

    #tera-report-generation .container-section .wrapper-cta .cta-btn {
        max-width: 100%;
        width: 100%;
        display: block;
    }
    
    /* -------------------------------- */

    /* section: tera-asd */

    /* -------------------------------- */

    #tera-asd  {
        padding: 20px;
        min-height: 75vh;
    }

    #tera-asd .container-asd  {
        padding: 10px;
    }
    #tera-asd .container-asd .section-title {
        font-size: 2.25rem;
    }


    /* -------------------------------- */

    /* section: asd-challenges */

    /* -------------------------------- */
    #asd-challenges {
        padding: 20px;
    }

    #asd-challenges .container-asd-challenges {
        flex-direction: column;
        padding: 10px;


    }

    .container-asd-challenges .wrapper-text {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        margin-top: 50px;
    }

    .container-asd-challenges .wrapper-text .section-title {
        font-size: 2.25rem;
        font-weight: 400;

    }

    .container-asd-challenges .wrapper-text .section-subtitle {
        font-size: 1.25rem;

    }

    .container-asd-challenges .wrapper-img {
        display: flex;
        justify-content: center;
        align-self: center;
        width: 100%;
        margin-bottom: 50px;
    }


    /* -------------------------------- */

    /* section: asd-use-case */

    /* -------------------------------- */

    #asd-use-case {
        padding: 20px;
    }

    #asd-use-case .container-use-case {
        padding: 10px;

    }

    #asd-use-case .container-use-case .text-heading {
        font-size: 2.25rem;
        margin-top: 50px;
        font-weight: 400;
    }

    #asd-use-case .container-use-case .wrapper-use-case {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        align-self: flex-start;
        justify-content: center;
        gap: 5vh;
        margin-bottom: 5vh;
    }

    .wrapper-use-case .wrapper-text {
        width: 100%;

    }

    .wrapper-use-case .wrapper-img {
        width: 100%;
    }

    #asd-use-case .container-use-case .wrapper-cta {
        width: 100%;
        display: block;
    }

    #asd-use-case .container-use-case .wrapper-cta a {
        width: 100%;
    }


    #asd-use-case .container-use-case .wrapper-cta .cta-text {
        font-size: 2rem;
        width: 100%;
        font-weight: 400;
    }

    #asd-use-case .container-use-case .wrapper-cta .headline-container .sliding-window {
        height: 2.5rem;
        margin-left: -10px;
    }


    #asd-use-case .container-use-case .wrapper-cta .headline-container .sliding-window .word-list .word {
        font-size: 2rem;
    }

    #asd-use-case .container-use-case .wrapper-cta .cta-btn {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 100%;
        max-width: 100%;
    }

    /* -------------------------------- */

    /* section: footer*/

    /* -------------------------------- */


    .footer-container {
        justify-content: center;
    }

}