:root {
    --color-beige: #F8F8EE;
    --color-primary-bg: #35342E;
    --color-accent-green: #6B8F63;
    --color-white: #FFFFFF;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: #F8F8EE;
}

p {
    opacity: 0.7;
}

/* ── Scroll reveal utility ──
   The JS only ever toggles the .visible class on scroll; without this
   rule the .reveal elements would never animate in. */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─────────────────────────────
   SHARED UTILITIES
───────────────────────────── */

.eyebrow {
    color: #0b0b0b;
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: left;
    font-family: var(--font-body);
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 0;
}

.section-header--centered .eyebrow,
.section-header--centered .section-header__title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 16px;
}

.section-header__title {
    font-size: 48px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

.button--outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F8F8EE;
    color: #171717;
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-body-1-family), sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.button--outline:hover {
    transform: translateY(-2px);
}

/* ─────────────────────────────
   CORNER DECORATIONS
   (used by the hero card and the closing CTA card)
───────────────────────────── */

.corner-decoration {
    position: absolute;
    width: 54px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

.corner-decoration--top-left {
    top: -80px;
    left: -80px;
}

.corner-decoration--top-right {
    top: -80px;
    right: -80px;
}

.corner-decoration--bottom-left {
    bottom: -60px;
    left: -80px;

}

.corner-decoration--bottom-right {
    bottom: -60px;
    right: -80px;
}

@media (max-width: 580px) {
    .backed-certification {
        padding: 60px 20px 60px !important;
    }
}

@media (max-width: 767px) {
    .corner-decoration {
        width: 44px;
    }

    .corner-decoration--top-left {
        top: -50px;
        left: -30px;
    }

    .corner-decoration--top-right {
        top: -50px;
        right: -30px;
    }

    .corner-decoration--bottom-left {
        bottom: -30px;
        left: -30px;
    }

    .corner-decoration--bottom-right {
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 768px) {
    .hero .corner-decoration {
        display: none;
    }
}

/* ─────────────────────────────
   ACTION BUTTONS (shared component)
   Used by both the hero and the closing CTA. Default theme is white/dark;
   the hero overrides the accent color and adds a caption label below.
───────────────────────────── */

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-family: var(--font-body-1-family), sans-serif;
    animation: fadeUp .8s .5s ease both;
}

.action-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* top corner brackets */
.action-button::before,
.action-button::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 14px;
    height: 14px;
    z-index: 2;
    pointer-events: none;
}

.action-button::before {
    left: -8px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-radius: 3px 0 0 0;
}

.action-button::after {
    right: -8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0 3px 0 0;
}

.action-button__link {
    text-decoration: none;
    display: flex;
}

.action-button__card {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 13px 20px 12px;
    border-radius: 9px;
    border: 1px solid #fff;
    text-align: left;
    transition: .2s ease;
}

/* bottom corner brackets */
.action-button__card::before,
.action-button__card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.action-button__card::before {
    left: -8px;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    border-radius: 0 0 0 3px;
}

.action-button__card::after {
    right: -8px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    border-radius: 0 0 3px 0;
}

.action-button__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
    border-color: #3a3a3a;
}

.action-button__title {
    font-family: var(--font-body-1-family), sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    transition: .2s ease;
}

.action-button__label {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: .02em;
}

/* variants */
.action-button__card--primary {
    background: #fff;
}

.action-button__card--primary .action-button__title {
    color: #000;
}

.action-button__card--secondary {
    background: transparent;
}

@media (max-width: 767px) {
    .action-buttons {
        gap: 30px;
    }

    .action-button__card {
        width: 75%;
        max-width: 320px;
    }
}

@media (max-width: 580px) {
    .action-buttons {
        gap: 48px;
        flex-direction: column;
        max-width: fit-content;
        margin: 30px auto 0;
    }

    .action-button__card {
        padding: 13px 15px 12px;
    }
}

/* ─────────────────────────────
   HERO
───────────────────────────── */

.hero {
    background-color: #F8F8EE;
    position: relative;
    overflow: hidden;
    align-items: stretch;
    font-family: var(--font-display-family), system-ui, sans-serif;
    margin: 15px auto 0;
    padding: 90px 64px;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-hero-2.webp) no-repeat;
    background-size: contain;
}

@media (min-width:1550px) {
    .hero {
        background-position: 50% 902px;
    }
}

@media (max-width: 1549px) {
    .hero {
        background-position: 50% 795px;
    }
}

.hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    gap: 40px;
    max-height: 840px;
}

@media (min-width: 1540px) {
    .hero__inner {
        padding: 90px 0;
    }
}

.hero__content {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 1024px) {
    .hero__content {
        padding: 40px 5px 60px;
    }
}

.hero__content .eyebrow {
    text-align: center;
    margin-bottom: 20px;
}

.hero__title {
    font-size: clamp(46px, 4.5vw, 64px);
    text-align: center;
    font-weight: 800;
    line-height: 110%;
    color: #1A1A1A;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    /* max-width: 650px; */
    animation: fadeUp .8s .2s ease both;
}

.hero__title-light {
    font-weight: 400;
    color: #1A1A1A;
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5A5A5A;
    margin: 0 auto 36px;
    text-align: center;
    max-width: 680px;
    font-family: 'Inter', system-ui, sans-serif;
}

.hero__bg-shape--left-top {
    position: absolute;
    left: -140px;
    top: 160px;
}

.hero__bg-shape--left-bottom {
    position: absolute;
    left: -40px;
    top: 400px;
}

.hero__bg-shape--right-top {
    position: absolute;
    right: -140px;
    top: 160px;
}

.hero__bg-shape--right-bottom {
    position: absolute;
    right: -40px;
    top: 400px;
}

.hero__globe {
    position: absolute;
    bottom: 0;
    width: 300px;
    height: 250px;
}

.hero__globe--left {
    left: 170px;
}

.hero__globe--right {
    right: 170px;
}

/* hero-specific accent color for its action buttons (green instead of white) */
.hero .action-button__card--primary {
    background-color: #1C312E;
}

.hero .action-button__card--primary .action-button__title {
    color: #fff;
    font-weight: 500;
}

.hero .action-button__title {
    color: #1C312E;
    font-weight: 500;
}

.hero .action-button__card {
    border: 1px solid #1C312E33;
    padding: 10px 15px;
}

.hero .action-button::before {
    border-top: 1px solid #0C9B54;
    border-left: 1px solid #0C9B54;
    top: -10px;
    left: -10px;
}

.hero .action-button::after {
    border-top: 1px solid #0C9B54;
    border-right: 1px solid #0C9B54;
    top: -10px;
    right: -10px;
}

.hero .action-button__card::before {
    border-bottom: 1px solid #0C9B54;
    border-left: 1px solid #0C9B54;
    bottom: -10px;
    left: -10px;
}

.hero .action-button__card::after {
    border-bottom: 1px solid #0C9B54;
    border-right: 1px solid #0C9B54;
    bottom: -10px;
    right: -10px;
}

.hero .action-button__label {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #1C312E;
    text-align: center;
    letter-spacing: .02em;
}

.hero .action-buttons {
    gap: 60px;
    margin-top: 10px;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0/pricing-hero-banner-element.png) no-repeat center;
}

@media (max-width: 580px) {
    .hero .action-buttons {
        background-image: url(/wp-content/themes/liceumai-theme/assets/images/2.0/pricing-hero-banner-element-1.png);
        background-position: center;
        flex-direction: column;
        gap: 60px;
    }

    .action-button__card {
        width: 80%;
    }

    .hero .action-button::before {
        left: 113px;
    }

    .hero .action-button::after {
        right: 113px;
    }
}

@media (max-width: 1024px) {
    .hero__content {
        flex: 0 0 60%;
    }

    .hero__globe {
        bottom: -130px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 0 20px;
    }

    .hero__inner {
        flex-direction: column;
        padding: 0;
        gap: 10px;
        max-height: 100%;
    }

    .hero__content {
        max-width: 100%;
        flex: none;
        padding: 50px 0;
        text-align: center;
        margin: auto;
    }

    .hero__subtitle {
        font-size: 16px;
        max-width: 397px;
        margin: 0 auto 30px;
    }
}

@media (min-width: 581px) and (max-width: 768px) {
    .hero__subtitle {
        font-size: 16px;
        max-width: 397px;
    }
}

@media (max-width: 580px) {
    .hero {
        padding: 0;
    }

    .hero__title {
        max-width: 390px;
        font-size: 36px;
    }
}

/* ─────────────────────────────
   PRICING PLANS
───────────────────────────── */

.pricing-plans {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: #35342E;
}

.pricing-plans__outer,
.pricing-plans__container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.pricing-plans__grid {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background-image: url(../../images/2.0/pricing/Group.png);
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center;
}

.pricing-plans__content {
    padding: 140px 10px;
}

.pricing-plans__content h2 {
    color: #f5f3ee;
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-size: 64px;
    line-height: 0.95;
    font-weight: 700;
    margin: 0 0 24px;
    letter-spacing: -3px;
}

.pricing-plans__content .eyebrow {
    color: #f2f0ea;
    margin-bottom: 20px;
}

.pricing-plans__description {
    color: #F8F8EE;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 36px;
}

.pricing-plans__fees {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 40px;
    width: 70%;
}

.pricing-plans__fee {
    flex: 1;
    position: relative;
}

.pricing-plans__fee+.pricing-plans__fee {
    padding-left: 60px;
}

.pricing-plans__fee:first-child::after {
    content: "";
    position: absolute;
    right: -22px;
    top: 6px;
    width: 1px;
    height: 68px;
    background: rgba(255, 255, 255, 0.18);
}

.pricing-plans__fee-value {
    color: #fff;
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-plans__fee-label {
    color: #d7d4cb;
    font-size: 16px;
    line-height: 1.4;
    font-family: var(--font-body-1-family), sans-serif;
}

.pricing-plans__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    margin-left: -120px;
    overflow: hidden;
    height: 100%;
}

.pricing-plans__visual-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pricing-plans__frame {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-left: 50px;
}

.pricing-plans__ellipse {
    position: absolute;
    right: 90px;
    height: 1247px;
    rotate: 3deg;
}

.pricing-plans__orbit {
    --orbit-size: 2019px;
    --orbit-radius: 1033px;
    --item-size: 124px;
    position: absolute;
    right: 110px;
    margin-top: -25px;
    width: var(--orbit-size);
    height: var(--orbit-size);
    border-radius: 50%;
    z-index: 2;
}

.pricing-plans__orbit-item {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--item-size);
    height: var(--item-size);
    margin-left: calc(var(--item-size) / -2);
    margin-top: calc(var(--item-size) / -2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 56, 50, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #F4F1EA;
    font-size: 38px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 30px rgb(57 57 57 / 48%);
    transition: box-shadow 0.4s ease;
}

.pricing-plans__orbit-item img {
    width: 35%;
    height: 55%;
    object-fit: contain;
}

@media (max-width: 580px) {
    .pricing-plans__visual {
        margin-left: 0 !important;
    }

    .pricing-plans__content {
        margin: 30px auto 70px !important;
    }
}

@media (max-width: 1024px) {
    .pricing-plans__grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 0;
        justify-content: flex-end;
        background-position: bottom;
        padding: 0;
    }

    .pricing-plans__content {
        text-align: center;
        margin: 0 auto;
        z-index: 3;
        padding: 15px 10px 60px;
    }

    .pricing-plans__content h2 {
        text-align: center;
    }

    .pricing-plans__description {
        text-align: center;
        margin: 0 auto 36px;
    }

    .pricing-plans__fees {
        width: 100%;
    }

    .pricing-plans__fee+.pricing-plans__fee {
        padding: 0;
    }

    .pricing-plans__visual-inner {
        rotate: -90deg;
        margin: 180px 0 115px;
    }

    .pricing-plans__visual {
        overflow: unset;
        justify-content: center;
        margin-left: -10px;
    }

    .pricing-plans__frame {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-plans {
        padding: 0;
    }

    .pricing-plans__content {
        padding: 15px 10px 40px;
    }

    .pricing-plans__grid {
        padding: 0;
        background-position: bottom;
        background-size: 105%;
    }

    .pricing-plans__content .eyebrow {
        font-size: 15px;
    }

    .pricing-plans__content h2 {
        font-size: 75px;
    }

    .pricing-plans__description {
        font-size: 16px;
    }

    .pricing-plans__fees {
        gap: 26px;
    }
}

@media (max-width: 576px) {
    .pricing-plans__content .eyebrow {
        font-size: 15px;
    }

    .pricing-plans__content h2 {
        font-size: 36px;
        line-height: 1.1em;
        letter-spacing: 0.01em;
    }

    .pricing-plans__grid {
        background-position: center;
    }
}

/* ─────────────────────────────
   PAYMENT METHODS
───────────────────────────── */

.payment-methods {
    padding: 90px 32px;
}

.payment-methods .section-header__title {
    font-size: 48px;
    font-family: 'Stack Sans Notch';
    line-height: 110%;
}

.payment-methods .section-header {
    max-width: 1440px;
    margin: auto;
}

.payment-methods__inner {
    max-width: 1440px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.payment-methods__partners {
    text-align: center;
}

.payment-methods__partners img {
    width: 100%;
}

@media (max-width: 786px) {
    .payment-methods .section-header__title {
        font-size: 36px;
        padding: 20px;
        max-width: 510px;
    }

    .payment-methods__inner {
        flex-direction: column-reverse;
        padding: 40px 0;
    }
}

@media (max-width: 580px) {
    .payment-methods {
        padding: 40px 15px;
    }
}

/* ─────────────────────────────
   CTA
───────────────────────────── */

.cta {
    padding: 120px 48px;
    background: #21251f;
    text-align: center;
}

.cta__card {
    position: relative;
    z-index: 2;
    background: #557961;
    border-radius: 24px;
    padding: 50px 48px 100px;
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid #557961;
}

.cta__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/wp-content/themes/liceumai-theme/assets/images/CTA-bg.png') center / 75% no-repeat;
}

.cta__heading {
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    position: relative;
    line-height: 1.1;
    max-width: 500px;
    margin: 32px auto;
}

.cta__description {
    font-size: 18px;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    width: 50%;
    margin: 0 auto;
    font-weight: 400;
}

@media (max-width: 786px) {
    .cta__description {
        width: 100%;
    }

    .hero__bg {
        display: none;
    }
}

@media (max-width: 767px) {
    .cta {
        padding: 80px 20px;
    }

    .cta__card {
        padding: 70px 24px;
        border-radius: 28px;
    }
}

@media (max-width: 580px) {
    .cta__heading {
        font-size: 36px;
    }

    .cta__card {
        padding: 40px 15px;
    }

    .corner-decoration {
        display: none;
    }

    .hero {
        background-position: 50% 740px;
        background-size: contain;
    }

    .hero__content {
        padding: 90px 0 !important;
    }
}


.aboutus-marquee-banner {
    background-color: #35342E;
    color: #F8F8EE;
    font-size: 14px;
    padding: 15px 150px;
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.02em;
    font-weight: 400;
}

@media(max-width:1024px) {
    .aboutus-marquee-banner {
        padding: 15px 25px;
    }
}

@media(max-width:730px) {
    .aboutus-marquee-banner {
        display: grid;
    }

    .aboutus-marquee-banner span {
        margin-top: 15px;
    }
}

.organization-tree {
    padding: 100px 20px;
    background: #CBF3CE;
}

.org-inner {
    max-width: 1280px;
    margin: auto;
}

.org-inner h2 {
    font-size: 48px;
    font-family: 'Stack Sans Notch';
    line-height: 110%;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 16px;
}

.organization-tree .section-label {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    color: #4B7A48;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.organization-tree h2 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 48px;
    color: #121417;
    font-weight: 600;
    margin: 0 auto 80px;
}

.founding-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 0.92;
    background: #ccc;
}

.team-card .management {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.team-card:hover .management {
    transform: scale(1);
}


.team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .25) 35%,
            rgba(0, 0, 0, 0) 65%);
}

.team-top {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.linkedin-icon {
    width: 18px !important;
    height: 18px !important;
    margin-bottom: -5px;
    transition: transform 0.8s ease;
}

.team-card:hover .linkedin-icon {
    margin-bottom: 0px;
}

.team-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
    top: 5px;
    transition: transform 0.8s ease;
}

.team-card:hover .team-bottom {
    top: 1px;
}

.team-left h3 {
    margin: 7px 0 0px;
    font-size: 16px;
    font-weight: 500;
}

.team-left p,
.team-right p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    opacity: .95;
}

.team-right {
    text-align: right;
}

@media (max-width:991px) {

    .organization-tree {
        padding: 80px 20px;
    }

    .organization-tree h2 {
        font-size: 38px;
    }

    .founding-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:767px) {

    .organization-tree {
        padding: 64px 16px;
    }

    .organization-tree h2 {
        font-size: 30px;
        margin-bottom: 32px;
    }

    .founding-team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-left h3 {
        font-size: 17px;
    }

    .team-left p,
    .team-right p {
        font-size: 13px;
    }

}

.team-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Blurry glass background */
.team-overlay::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;

    background: rgba(20, 20, 20, .22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    mask-image: linear-gradient(to top, #000 70%, transparent);
    -webkit-mask-image: linear-gradient(to top, #000 70%, transparent);

    z-index: 0;
}

/* Dark fade into image */
.team-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .15) 28%,
            transparent 55%);
    z-index: 0;
}

/* Keep content above blur */
.team-top,
.team-bottom {
    position: relative;
    z-index: 1;
}

.team-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    color: #fff;
}

.how_it_strated {
    padding: 100px 20px 200px;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0//about-us-3.webp) no-repeat #CBF3CE;
    background-position: 50% 780px;
    background-size: auto;
    position: relative;
}

.how_it_works_content .heading {
    margin: 0 0 16px;
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 585px;
    margin: 10px auto 30px;
}

.how_it_works_content {
    text-align: center;
}

.how_it_works_content .eyebrow {
    text-align: center;
    color: #121417;
}

.story_card {
    position: relative;
    width: 554px;
    height: auto;
    padding: 64px 0 80px;
    margin: auto;
    border-radius: 48px;
    overflow: visible;
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-1.webp") center/cover no-repeat;
    z-index: 2;
    margin-top: 90px;
}

/* Existing top overlay */
.story_card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-2.webp") center/cover no-repeat;
    z-index: 0;
    pointer-events: none;
}

/* NEW tilted card behind */
.story_card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-1.webp") center/cover no-repeat;
    transform: rotate(-10deg) translate(-12px, 10px);
    transform-origin: center;
    opacity: .45;
    filter: brightness(.9);
    z-index: -1;
}

/* Keep content above overlays */
.story_card>* {
    position: relative;
    z-index: 2;
}

.story_card .heading_3 {
    margin: 0 0 16px;
    font-family: var(--font-display-family), system-ui, sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-align: center;
    max-width: 585px;
    margin: 10px auto 30px;
    color: #fff;
}

.story_card p {
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    padding: 0 60px
}

.story_card .cta-btn-cards {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-top: 48px;
    /* flex-wrap: wrap; */
}

.story_card .cta-btn-card-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Corner Marks */

.story_card .cta-btn-card-wrap::before,
.story_card .cta-btn-card-wrap::after,
.story_card .cta-btn-card::before,
.story_card .cta-btn-card::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
}

/* top left */

.story_card .cta-btn-card-wrap::before {
    left: -16px;
    top: -16px;
    border-left: 1px solid rgba(255, 255, 255, .7);
    border-top: 1px solid rgba(255, 255, 255, .7);
}

/* top right */

.story_card .cta-btn-card-wrap::after {
    right: -16px;
    top: -16px;
    border-right: 1px solid rgba(255, 255, 255, .7);
    border-top: 1px solid rgba(255, 255, 255, .7);
}

/* bottom left */

.story_card .cta-btn-card::before {
    left: -16px;
    bottom: -16px;
    border-left: 1px solid rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

/* bottom right */

.story_card .cta-btn-card::after {
    right: -16px;
    bottom: -16px;
    border-right: 1px solid rgba(255, 255, 255, .7);
    border-bottom: 1px solid rgba(255, 255, 255, .7);
}

/* Button */

.story_card .cta-btn-card {
    width: 140px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: .3s;
}

.story_card .cta-btn-card.active {
    background: #F8F3E8;
    color: #202020;
    border-color: #F8F3E8;
}

.story_card .cta-btn-card:hover {
    transform: translateY(-3px);
}

.story_card .cta-btn-card span {
    font-size: 16px;
    font-weight: 700;
}

.story_card .cta-btn-card svg {
    flex-shrink: 0;
}

.story_card .cta-btn-label {
    margin-top: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

@media(max-width:767px) {

    .story_card .cta-btn-cards {
        gap: 30px;
    }

    .story_card .cta-btn-card {
        width: 100%;
        max-width: 260px;
    }

}

@media(max-width:580px) {
    .how_it_strated {
        background-position: 50% 1119px;
        background-size: contain;
    }
}

@media(max-width:600px) {
    .story_card {
        width: 100%;
        height: auto;
        padding: 40px 0px;
    }

    .story_card .cta-btn-cards {
        flex-direction: column-reverse;
        padding: 0 42px;
    }

    .story_card p {
        padding: 0 20px;
    }

    .story_card::before,
    .story_card::after {
        display: none;
    }
}

.our_impact {
    padding: 100px 20px 30px;
    background: #21251F;
    position: relative;
}

.our_impact_inner {
    max-width: 1180px;
    margin: auto;
}

.our_impact .eyebrow,
.our_impact .heading {
    color: #F8F8EE;
    text-align: center;
}

.our_impact .heading {
    max-width: 340px;
    margin: 10px auto 60px;
}

/* =======================
        Stats
======================= */

.impact-stats {
    width: 100%;
    max-width: 636px;
    margin: 0 auto 120px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 80px;
    position: relative;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0//about-us-5.webp) no-repeat;
    background-size: 50px;
    background-position: center;
}

.impact-card {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 275px;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-4.webp) no-repeat #35342E;
    background-size: auto;
    align-content: end;
}

.impact-card img {
    display: block;
    width: 100%;
}

/* =======================
        Partners
======================= */

.impact-partners {
    margin: 0 auto 120px;
    max-width: 900px;
    text-align: center;
}

.impact-partners h4 {
    color: #fff;
    margin-bottom: 40px;
}

.partners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
}

.partners-list span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.7;
    font-family: var(--font-body-1-family), sans-serif;
}

/* =======================
      Trust Section
======================= */

.trust-section-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.trust-left {
    flex: 1;
}

.trust-left .eyebrow {
    text-align: left;
    margin-bottom: 18px;
}

.trust-left h3 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-family: var(--font-display-family), system-ui, sans-serif;
    margin: 0;
}

.trust-left p {
    color: #fff;
    margin-bottom: 30px;
    max-width: 520px;
    font-size: 18px;
    font-weight: normal;
    max-width: 460px;
}

.trust-left .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 325px;
}

.trust-left .trust-list li {
    color: #F8F8EE;
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    opacity: .7;
}

.trust-left .trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background-size: contain !important;
}

.trust-left .trust-list li:nth-child(1):before {
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-vector-1.webp") no-repeat center;
}

.trust-left .trust-list li:nth-child(2):before {
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-vector-2.webp") no-repeat center;
}

.trust-left .trust-list li:nth-child(3):before {
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-vector-3.webp") no-repeat center;
}

.trust-left .trust-list li:nth-child(4):before {
    background: url("/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-vector-4.webp") no-repeat center;
}



.trust-right {
    width: 320px;
}

.trust-right img {
    width: 100%;
    display: block;
}

/* =======================
      Responsive
======================= */

@media(max-width:991px) {

    .trust-section {
        flex-direction: column;
    }

}

@media(max-width:767px) {

    .impact-stats {
        grid-template-columns: 1fr;
        width: 320px;
        background: none;
        gap: 20px;
    }

    .partners-list {
        gap: 18px;
    }

    .trust-right {
        width: 260px;
    }

    .trust-left h3 {
        font-size: 36px;
    }

    .trust-list {
        grid-template-columns: 1fr;
    }

    .trust-section-sec {
        flex-direction: column;
    }

}

.hv2-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px;
}

span.hv2-stat-number {
    font-family: Inter;
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #F8F8EE;
}

span.hv2-stat-label {
    font-family: Inter;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 165%;
    letter-spacing: 0%;
    color: #F8F8EE;
    opacity: .7;
}

img.trusted-element-center {
    width: 70%;
    position: absolute;
    left: 15%;
    top: 40px;
    pointer-events: none;
}

img.trusted-element-left {
    position: absolute;
    width: 330px;
    left: 0;
    pointer-events: none;
}

img.trusted-element-right {
    position: absolute;
    width: 330px;
    right: 0;
    pointer-events: none;
}

img.trusted-element-midle-left {
    position: absolute;
    top: 50%;
    left: 100px;
    pointer-events: none;
}

img.trusted-element-midle-right {
    position: absolute;
    top: 50%;
    right: 100px;
    pointer-events: none;
}

img.trusted-element-ele-left {
    position: absolute;
    left: 10%;
    bottom: -75px;
    width: 300px;
}

img.trusted-element-ele-right {
    position: absolute;
    right: 10%;
    bottom: -75px;
    width: 300px;
}

@media (max-width:580px) {
    img.trusted-element-center {
        display: none;
    }

    .trusted-element {
        width: 135%;
        top: 30px;
        left: -19%;
        pointer-events: none;
    }
}

@media (max-width:768px) {

    img.trusted-element-left,
    img.trusted-element-right,
    img.trusted-element-midle-left,
    img.trusted-element-midle-right,
    img.trusted-element-ele-left,
    img.trusted-element-ele-right {
        display: none;
    }

}

.backed-certification {
    padding: 120px 20px 120px;
    background: #21251F;
    position: relative;
}

.backed-certification-inner {
    max-width: 1180px;
    margin: auto;
}

.partner-hidden {
    display: none;
}

.partners-list.show-all .partner-hidden {
    display: inline-flex;
}

.partners-more-btn {
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}

.cta-btn-label {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    letter-spacing: .02em;
}

.cta__card .corner-decoration--bottom-left {
    bottom: -80px;
    left: -80px;
}


.cta__card .corner-decoration--bottom-right {
    bottom: -80px;
    right: -80px;
}

/* ==========================================================================
   1. TRUST / DATA-HANDLING SECTION
   ========================================================================== */

.trust-section {
    /* background: var(--color-beige); */
    padding: 0 64px 90px 64px;
    display: flex;
    justify-content: center;
}

.trust-section-inner {
    width: 100%;
    max-width: 1160px;
    margin: auto;
}

.trust-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-card {
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
}

.trust-card--reverse {
    flex-direction: row-reverse;
}

/* ---- visual (icon) panel ---- */

.trust-card-visual {
    flex: 0 0 54%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.08), transparent 55%), var(--color-dark-green);
    overflow: hidden;
    min-height: 260px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.trust-card-icon {
    position: relative;
    z-index: 2;
    width: 72px;
    height: 72px;
}

.trust-card-icon svg {
    width: 100%;
    height: 100%;
}

/* ---- content panel ---- */

.trust-card-content {
    flex: 1;
    background: var(--color-primary-bg);
    color: var(--color-white);
    padding: 44px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-card-title {
    font-family: var(--font-display-family, var(--font-heading)), system-ui, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 24px;
    color: var(--color-white);
}

.trust-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 24px;
    max-width: 420px;
}

/* feature list (card A) */

.trust-list {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.trust-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0px;
    border-top: 1px solid var(--tf-border-soft);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.trust-list-item:first-child {
    border-top: none;
    padding-top: 0;
}

.trust-list-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    color: var(--color-accent-green);
}

.trust-list-icon svg {
    width: 100%;
    height: 100%;
}

/* checklist (card B) */

.trust-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
}

.trust-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.trust-checklist-item svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: var(--color-accent-green);
}

.trust-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    padding: 12px 20px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
}

.trust-download-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.trust-download-btn svg {
    width: 14px;
    height: 14px;
}

/* badge visual for card B */

/* .trust-card-visual--badge {
        background:
            radial-gradient(circle at 65% 60%, rgba(255, 255, 255, 0.10), transparent 55%),
            var(--color-dark-green);
    } */

.trust-badge {
    position: relative;
    z-index: 2;
    width: 150px;
    height: 195px;
    background: linear-gradient(160deg, #dce7ff 0%, #9fb3e6 45%, #5a6fae 100%);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.30);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
}

.trust-badge::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 34px;
    border-radius: 6px;
    background: var(--color-primary-bg);
}

.trust-badge-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.trust-badge-check svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

/* ---------------- Responsive: tablet ---------------- */

@media (max-width: 1200px) {
    .trust-section {
        padding: 56px 24px;
    }
}

@media (max-width: 991px) {
    .trust-card {
        min-height: 0;
    }

    .trust-card-visual {
        flex: 0 0 220px;
        min-height: 360px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .trust-card-content {
        padding: 32px;
    }

    .trust-card-title {
        font-size: 26px;
    }
}

/* ---------------- Responsive: mobile ---------------- */

@media (max-width: 768px) {
    .trust-section {
        padding: 40px 16px;
    }

    .trust-cards {
        gap: 16px;
    }

    .trust-card,
    .trust-card--reverse {
        flex-direction: column;
    }

    .trust-card-visual {
        flex: 0 0 auto;
        width: 100%;
        /* min-height: 190px; */
    }

    .trust-card-visual::before {
        width: 220px;
        height: 220px;
    }

    .trust-card-visual::after {
        width: 300px;
        height: 300px;
    }

    .trust-card-icon {
        width: 56px;
        height: 56px;
    }

    .trust-card-content {
        padding: 26px 22px 30px;
    }

    .trust-card-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .trust-card-desc {
        max-width: unset;
    }

    .trust-download-btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badge {
        width: 120px;
        height: 156px;
    }
}

/* .trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 325px;
} */

.how-footer {
    margin-top: 16px;
    border-radius: 12px;
    background: #2A2925;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
}

.description-how {
    max-width: 430px;
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: right;
}

@media (max-width: 580px) {
    .how-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .description-how {
        text-align: left;
        margin-top: 10px;
    }

    .section-contact-us {
        padding: 50px 15px;
    }
}

/* ── Contact heading ── */
.section-contact-us {
    padding: 100px 24px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-us-heading .heading-h1 {
    font-size: 56px;
    font-weight: 500;
    color: #10241f;
    margin: 0 0 14px;
}

.contact-us-heading .body-3-medium {
    color: #5a6b66;
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto 40px;
}

@media (max-width:768px) {
    .contact-us-heading .heading-h1 {
        font-size: 44px;
    }

    .contact-us-heading .body-3-medium {
        font-size: 16px;
    }
}

/* ── Form card ── */
.contact-us-form-wrapper {
    position: relative;
    background: #21251F;
    border: 1px solid #1d2d44;
    border-radius: 20px;
    padding: 36px;
    max-width: 550px;
    margin: 0 auto;
}

.contact-us-form-brackets>div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: rgba(29, 158, 117, 0.45);
}

.contact-us-form-top-left-bracket {
    top: -8px;
    left: -8px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.contact-us-form-top-right-bracket {
    top: -8px;
    right: -8px;
    border-top: 1px solid;
    border-right: 1px solid;
}

.contact-us-form-bottom-left-bracket {
    bottom: -8px;
    left: -8px;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.contact-us-form-bottom-right-bracket {
    bottom: -8px;
    right: -8px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.contact-us-form-title {
    color: #e8f5f0;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.contact-us-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-us-form-row-input-block {
    flex: 1;
    text-align: left;
}

.contact-us-form-input-label {
    color: #F8F8EE;
    font-size: 12px;
    margin-bottom: 6px;
    letter-spacing: 2%;
    opacity: .8;
}

.contact-us-form-input,
.contact-us-form-textarea {
    width: 100%;
    background: #131910;
    border: 1px solid #1d2d44;
    border-radius: 8px;
    padding: 12px 14px;
    color: #e8e8e8;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-us-form-textarea {
    resize: vertical;
}

.contact-us-form-input::placeholder,
.contact-us-form-textarea::placeholder {
    color: #4d5e6b;
}

.contact-us-form-info {
    font-family: Inter;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF99;
    padding: 15px 0;
    text-align: left;
}

.contact-us-form-submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F8F8EE;
    border: none;
    border-radius: 8px;
    padding: 13px;
    color: #21251F;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* ── Info cards row ── */
.contact-us-info-cards {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 150px;
    flex-wrap: wrap;
}

.contact-us-info-card {
    border-radius: 12px;
    padding: 25px;
    flex: 1;
    height: 150px;
    min-width: 193px;
    background: url(/wp-content/themes/liceumai-theme/assets/images/2.0/about-us-4.webp) no-repeat #35342E;
    background-size: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.contact-us-info-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(29, 158, 117, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-us-info-card-text {
    color: #e8f5f0;
    font-size: 15px;
    text-decoration: none;
}

/* ── Data handling / NDA cards ── */
.data-handling {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-handling-card {
    background: #143028;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.data-handling-card--dark {
    background: #10151f;
}

.data-handling-icon {
    flex-shrink: 0;
    width: 140px;
}

.data-handling-icon img {
    width: 100%;
    height: auto;
}

.data-handling-content h3 {
    color: #eafaf3;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 16px;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    color: #a9c6ba;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(29, 158, 117, 0.2);
    border: 1px solid #1d9e75;
}

.download-nda-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #5dcaa5;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(29, 158, 117, 0.4);
    border-radius: 8px;
    padding: 10px 16px;
}

/* ── Trust & Safety ── */
.trust-safety {
    background: #0a0e17;
    padding: 80px 24px;
    text-align: center;
}

.trust-safety-inner {
    max-width: 700px;
    margin: 0 auto;
}

.trust-safety .eyebrow {
    color: #5dcaa5;
    letter-spacing: 1px;
    font-size: 12px;
    margin-bottom: 12px;
}

.trust-safety .heading {
    color: #eafaf3;
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 12px;
}

.trust-safety p {
    color: #7a9e90;
    font-size: 14px;
    margin: 0 0 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-badge img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.trust-badge span {
    color: #a9c6ba;
    font-size: 12px;
}

@media (max-width: 580px) {
    .contact-us-info-cards {
        flex-direction: column;
        margin-top: 110px;
    }

    .contact-us-info-card {
        flex: none;
        height: 115px;
    }
}

@media (max-width: 768px) {
    .contact-us-form-row {
        flex-direction: column;
    }

    .data-handling-card {
        flex-direction: column;
        text-align: center;
    }

    .data-handling-icon {
        width: 100px;
    }
}


.why-choose-liceum-brackets {
    position: absolute;
    inset: 0;
    pointer-events: none;
    height: 100%;
}

.why-choose-liceum-upper-left,
.why-choose-liceum-upper-right,
.why-choose-liceum-lower-left,
.why-choose-liceum-lower-right {
    position: absolute;
    width: 8px;
    height: 8px;
}

.why-choose-liceum-upper-left {
    top: -10px;
    left: -10px;
    border-top: 2px solid rgb(0 0 0 / 22%);
    border-left: 2px solid rgb(0 0 0 / 22%);
}

.why-choose-liceum-upper-right {
    top: -10px;
    right: -10px;
    border-top: 2px solid rgb(0 0 0 / 22%);
    border-right: 2px solid rgb(0 0 0 / 22%);
}

.why-choose-liceum-lower-left {
    bottom: -10px;
    left: -10px;
    border-bottom: 2px solid rgb(0 0 0 / 22%);
    border-left: 2px solid rgb(0 0 0 / 22%);
}

.why-choose-liceum-lower-right {
    bottom: -10px;
    right: -10px;
    border-bottom: 2px solid rgb(0 0 0 / 22%);
    border-right: 2px solid rgb(0 0 0 / 22%);
}