
:root {
    --suse-dark: #071f1c;
    --suse-dark-soft: #0b3029;
    --suse-green: #30ba78;
    --suse-green-light: #73e2a7;
    --suse-mint: #b8f3d1;
    --suse-orange: #ff7a3d;
    --suse-blue: #1877e8;

    --suse-white: #ffffff;
    --suse-text: #15211f;
    --suse-text-soft: #626c69;
    --suse-border: #e1e9e5;
    --suse-bg-light: #f5faf7;

    --suse-shadow: 0 22px 60px rgba(7, 31, 28, 0.11);
    --suse-card-shadow: 0 14px 35px rgba(7, 31, 28, 0.07);
}


.suse-container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}


.suse-section-label {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 17px;
    color: var(--suse-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1;
    text-transform: uppercase;
}


.suse-section-label::before {
    width: 32px;
    height: 2px;
    content: "";
    background: currentColor;
}


.suse-section-label-light {
    color: var(--suse-green-light);
}


.suse-about-section {
    position: relative;
    padding: 75px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(48, 186, 120, 0.1),
            transparent 28%
        ),
        var(--suse-white);
}


.suse-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 60px;
    align-items: center;
}



.suse-about-content h2 {
    max-width: 650px;
    margin: 0;
    color: var(--suse-text);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 750;
    letter-spacing: -2px;
    line-height: 1.12;
}


.suse-about-content h2 span {
    display: block;
    color: var(--suse-green);
}


.suse-about-content > p {
    margin: 20px 0 0;
    color: BLACK;
    font-size: 15px;
    line-height: 1.15;
}


.suse-about-content .suse-about-lead {
    color: var(--suse-text);
    font-size: 18px;
   
}


.suse-about-content strong {
    color: var(--suse-dark-soft);
}



.suse-peer-note-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 13px;
    color: var(--suse-white);
    background: var(--suse-green);
    box-shadow: 0 12px 25px rgba(48, 186, 120, 0.24);
}



.suse-visual-title h3 {
    max-width: 360px;
    margin: 0;
    color: var(--suse-white);
    font-size: 27px;
    line-height: 1.35;
}


/* Moderator cards */

.suse-moderator-card {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(11px);
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.suse-moderator-card:hover {
    transform: translateX(7px);
    border-color: rgba(115, 226, 167, 0.4);
    background: rgba(255, 255, 255, 0.13);
}


.suse-card-number {
    color: var(--suse-green-light);
    font-size: 15px;
    font-weight: 700;
}


.suse-moderator-card h4 {
    margin: 0 0 3px;
    color: black;
    font-size: 16px;
}


.suse-moderator-card p {
    margin: 0;
    color: black;
    font-size: 12px;
    line-height: 0.9;
}


.suse-moderator-card-two {
    margin-left: 24px;
}


.suse-moderator-card-three {
    margin-left: 48px;
}


/* =========================================================
   ABOUT SECTION VIDEO
========================================================= */

.suse-about-video-wrap {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}


.suse-about-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(48, 186, 120, 0.2);
    border-radius: 28px;
    background: #071f1c;
    box-shadow:
        0 28px 70px rgba(7, 31, 28, 0.2),
        0 0 0 8px rgba(48, 186, 120, 0.04);
    isolation: isolate;
}


/* Decorative glow behind video */

.suse-about-video-frame::before {
    position: absolute;
    top: -70px;
    right: -70px;
    z-index: 2;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    content: "";
    background: rgba(48, 186, 120, 0.25);
    filter: blur(25px);
    pointer-events: none;
    animation: suseVideoGlow 5s ease-in-out infinite;
}


/* Animated border shine */

.suse-about-video-frame::after {
    position: absolute;
    top: -70%;
    left: -40%;
    z-index: 4;
    width: 38%;
    height: 240%;
    content: "";
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent
        );
    transform: rotate(18deg);
    pointer-events: none;
    animation: suseVideoShine 5.5s ease-in-out infinite;
}


/* Video itself */

.suse-about-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
}


/* Soft overlay for better visual depth */

.suse-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(7, 31, 28, 0.02) 0%,
            rgba(7, 31, 28, 0.08) 55%,
            rgba(7, 31, 28, 0.62) 100%
        );
}


/* Video label */

.suse-video-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 5;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(7, 31, 28, 0.62);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}


.suse-video-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #73e2a7;
    box-shadow: 0 0 0 5px rgba(115, 226, 167, 0.14);
    animation: suseVideoPulse 1.8s ease-in-out infinite;
}


/* Hover movement */

.suse-about-video-frame {
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.suse-about-video-frame:hover {
    transform: translateY(-8px);
    box-shadow:
        0 36px 85px rgba(7, 31, 28, 0.26),
        0 0 0 9px rgba(48, 186, 120, 0.055);
}


/* Animations */

@keyframes suseVideoGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}


@keyframes suseVideoShine {

    0% {
        left: -55%;
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    70% {
        left: 120%;
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}


@keyframes suseVideoPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(115, 226, 167, 0.14);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 0 8px rgba(115, 226, 167, 0.06);
    }
}


@media (max-width: 950px) {

    .suse-about-video-wrap {
        max-width: 720px;
        margin-inline: auto;
    }


    .suse-about-video-frame {
        aspect-ratio: 16 / 9;
    }
}


@media (max-width: 620px) {

    .suse-about-video-wrap {
        width: 100%;
    }


    .suse-about-video-frame {
        aspect-ratio: 4 / 5;
        border-radius: 20px;
    }


    .suse-video-badge {
        right: 14px;
        bottom: 14px;
        padding: 8px 12px;
        font-size: 9px;
    }
}


/* Respect reduced-motion preferences */

@media (prefers-reduced-motion: reduce) {

    .suse-about-video-frame::before,
    .suse-about-video-frame::after,
    .suse-video-dot {
        animation: none;
    }


    .suse-about-video-frame:hover {
        transform: none;
    }
}

.suse-discussion-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}


.suse-discussion-heading h2 {
    margin: 0;
    color: var(--suse-white);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 750;
    letter-spacing: -1.7px;
    line-height: 1.15;
}


.suse-discussion-heading h2 span {
    color: var(--suse-green-light);
}


.suse-discussion-heading > p {
    max-width: 300px;
    margin: 18px auto 0;
    color: white;
    font-size: 15px;
    line-height: 1.75;
}

.suse-discussion-card-featured .suse-discussion-icon {
    margin-bottom: 0;
}

@media (max-width: 950px) {

    .suse-about-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .suse-about-content {
        max-width: 760px;
    }


    .suse-about-visual {
        min-height: auto;
    }


    .suse-moderator-card-two,
    .suse-moderator-card-three {
        margin-left: 0;
    }


    .suse-discussion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .suse-discussion-card,
    .suse-discussion-card:nth-child(4),
    .suse-discussion-card-featured {
        grid-column: auto;
    }


    .suse-discussion-card-featured {
        display: block;
    }


    .suse-discussion-card-featured .suse-discussion-icon {
        margin-bottom: 19px;
    }


    .suse-discussion-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
    }
}


@media (max-width: 620px) {

    .suse-container {
        width: min(100% - 28px, 1160px);
    }


    .suse-about-section,
    .suse-discussion-section {
        padding: 68px 0;
    }


    .suse-about-content h2,
    .suse-discussion-heading h2 {
        font-size: 30px;
        letter-spacing: -1px;
    }


    .suse-about-content .suse-about-lead {
        font-size: 16px;
    }

    .suse-about-visual {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .suse-visual-title h3 {
        font-size: 23px;
    }


    .suse-discussion-heading {
        margin-bottom: 34px;
    }

    .suse-discussion-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .suse-discussion-card,
    .suse-discussion-card:nth-child(4),
    .suse-discussion-card-featured,
    .suse-discussion-card:last-child {
        width: 100%;
        min-height: auto;
        grid-column: auto;
        justify-self: stretch;
        padding: 22px;
    }

    .suse-discussion-card h3 {
        padding-right: 35px;
        font-size: 15px;
    }


    .suse-topic-number {
        top: 20px;
        right: 18px;
        font-size: 30px;
    }
}

.suse-register-section {
    position: relative;
    padding: 75px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(48, 186, 120, 0.12),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f4faf7 0%,
            #ffffff 48%,
            #f3f9f6 100%
        );
}

.suse-register-container {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 75px;
    align-items: center;
}

.suse-register-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.suse-register-shape-one {
    top: -190px;
    right: -170px;
    width: 460px;
    height: 460px;
    border: 70px solid rgba(48, 186, 120, 0.045);
}


.suse-register-shape-two {
    bottom: -180px;
    left: -150px;
    width: 390px;
    height: 390px;
    border: 55px solid rgba(24, 119, 232, 0.025);
}

.suse-register-information {
    max-width: 520px;
}


.suse-register-label {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: #30ba78;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    line-height: 1;
    text-transform: uppercase;
}


.suse-register-label::before {
    width: 34px;
    height: 2px;
    content: "";
    background: #30ba78;
}


.suse-register-information > h2 {
    margin: 0;
    color: #15211f;
    font-size: clamp(38px, 4.5vw, 57px);
    font-weight: 750;
    letter-spacing: -2px;
    line-height: 1.12;
}

.suse-register-information > h2 span {
    display: block;
    color: #30ba78;
}

.suse-register-description {
    margin: 23px 0 0;
    color: #626c69;
    font-size: 15px;
    line-height: 1.85;
}


.suse-event-details {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}


.suse-event-detail {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 17px;
    border: 1px solid #e0e9e4;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 9px 27px rgba(7, 31, 28, 0.045);
    backdrop-filter: blur(8px);
}


.suse-event-detail-icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    border-radius: 12px;
    color: #071f1c;
    background: #73e2a7;
}


.suse-event-detail-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.suse-event-detail span {
    display: block;
    margin-bottom: 2px;
    color: #8a9692;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.suse-event-detail strong {
    display: block;
    color: #0b3029;
    font-size: 14px;
    font-weight: 750;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.suse-contact-card {
    position: relative;
    margin-top: 26px;
    padding: 25px;
    overflow: hidden;
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            #071f1c 0%,
            #0c4438 100%
        );
    box-shadow: 0 20px 44px rgba(7, 31, 28, 0.17);
}


.suse-contact-card::before {
    position: absolute;
    top: -90px;
    right: -65px;
    width: 205px;
    height: 205px;
    border: 35px solid rgba(48, 186, 120, 0.18);
    border-radius: 50%;
    content: "";
}


.suse-contact-card-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 18px;
}


.suse-contact-card-heading > span {
    display: block;
    margin-bottom: 4px;
    color: #73e2a7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.suse-contact-card-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
}


.suse-contact-card-heading p {
    max-width: 390px;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
    line-height: 1.65;
}


.suse-contact-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}


.suse-contact-person,
.suse-contact-link {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.065);
}


.suse-contact-link {
    color: inherit;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


.suse-contact-link:hover {
    transform: translateX(5px);
    border-color: rgba(115, 226, 167, 0.32);
    background: rgba(255, 255, 255, 0.11);
}


.suse-contact-avatar,
.suse-contact-link-icon {
    display: grid;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    place-items: center;
    border-radius: 11px;
    color: #071f1c;
    background: #73e2a7;
}


.suse-contact-avatar svg,
.suse-contact-link-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.suse-contact-person > div:last-child,
.suse-contact-link > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}


.suse-contact-person span,
.suse-contact-link span {
    display: block;
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.suse-contact-person strong,
.suse-contact-link strong {
    display: block;
    overflow-wrap: anywhere;
    color: #ffffff;
    font-size: 12px;
    font-weight: 650;
}


.suse-contact-arrow {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.6);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}


.suse-contact-link:hover .suse-contact-arrow {
    transform: translateX(3px);
}


/* =========================================================
   REGISTRATION NOTE
========================================================= */

.suse-registration-note {
    display: flex;
    gap: 13px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(48, 186, 120, 0.18);
    border-radius: 14px;
    background: rgba(48, 186, 120, 0.07);
}


.suse-registration-note-icon {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    background: #30ba78;
}


.suse-registration-note-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.suse-registration-note p {
    margin: 0;
    color: #626c69;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   FORM CARD
========================================================= */

.suse-form-card {
    position: relative;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(7, 31, 28, 0.08);
    border-radius: 27px;
    background: #ffffff;
    box-shadow: 0 28px 75px rgba(7, 31, 28, 0.13);
}


.suse-form-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background:
        linear-gradient(
            90deg,
            #30ba78 0%,
            #73e2a7 35%,
            #ff7a3d 72%,
            #1877e8 100%
        );
}


.suse-form-heading {
    margin-bottom: 29px;
}


.suse-form-heading > span {
    display: block;
    margin-bottom: 6px;
    color: #30ba78;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.suse-form-heading h3 {
    margin: 0;
    color: #071f1c;
    font-size: 29px;
    font-weight: 750;
    letter-spacing: -0.8px;
    line-height: 1.25;
}


.suse-form-heading p {
    margin: 7px 0 0;
    color: #76817e;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.suse-registration-form {
    width: 100%;
}


.suse-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
}


.suse-form-group {
    position: relative;
}


.suse-form-group-full {
    grid-column: 1 / -1;
}


.suse-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #26322f;
    font-size: 12px;
    font-weight: 700;
}


.suse-form-group label span {
    margin-left: 3px;
    color: #ff6335;
}


.suse-form-group input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #dce5e1;
    outline: none;
    border-radius: 10px;
    color: #15211f;
    background: #fafcfb;
    font-family: inherit;
    font-size: 13px;
    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.suse-form-group input::placeholder {
    color: #a2aaa7;
}


.suse-form-group input:hover {
    border-color: #c6d4ce;
    background: #ffffff;
}


.suse-form-group input:focus {
    border-color: #30ba78;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(48, 186, 120, 0.1);
}


/* =========================================================
   FORM CONSENT
========================================================= */

.suse-form-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 22px;
}


.suse-form-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin-top: 3px;
    accent-color: #30ba78;
    cursor: pointer;
}


.suse-form-consent label {
    color: #69736f;
    font-size: 11px;
    line-height: 1.65;
    cursor: pointer;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.suse-submit-button {
    display: flex;
    width: 100%;
    min-height: 54px;
    gap: 11px;
    align-items: center;
    justify-content: center;
    margin-top: 23px;
    padding: 14px 23px;
    border: 0;
    border-radius: 11px;
    color: #071f1c;
    background:
        linear-gradient(
            135deg,
            #73e2a7,
            #30ba78
        );
    box-shadow: 0 15px 30px rgba(48, 186, 120, 0.23);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.suse-submit-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}


.suse-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 19px 37px rgba(48, 186, 120, 0.3);
}


.suse-submit-button:hover svg {
    transform: translateX(4px);
}


.suse-form-privacy {
    margin: 14px 0 0;
    color: #939c98;
    font-size: 10px;
    line-height: 1.6;
    text-align: center;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1020px) {

    .suse-register-container {
        grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
        gap: 44px;
    }


    .suse-form-card {
        padding: 35px;
    }
}


@media (max-width: 900px) {

    .suse-register-section {
        padding: 85px 0;
    }


    .suse-register-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .suse-register-information {
        max-width: 760px;
    }


    .suse-event-details {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .suse-event-detail {
        align-items: flex-start;
    }
}


@media (max-width: 700px) {

    .suse-register-container {
        width: min(100% - 28px, 1180px);
    }


    .suse-event-details {
        grid-template-columns: 1fr;
    }


    .suse-form-card {
        padding: 30px 22px;
        border-radius: 21px;
    }


    .suse-form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }


    .suse-form-group-full {
        grid-column: auto;
    }
}


@media (max-width: 480px) {

    .suse-register-section {
        padding: 65px 0;
    }


    .suse-register-information > h2 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }


    .suse-register-description {
        font-size: 14px;
    }


    .suse-contact-card {
        padding: 21px 18px;
    }


    .suse-registration-note {
        flex-direction: column;
    }


    .suse-form-heading h3 {
        font-size: 25px;
    }


    .suse-form-group input {
        height: 50px;
    }
}

/* =========================================================
   HOME / BANNER SECTION
========================================================= */

.suse-home-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    background: #071f1c;
}


/* Banner picture wrapper */

.suse-home-picture {
    display: block;
    width: 100%;
    height: 100%;
}


/* Banner image */

.suse-home-banner {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
}


/* Optional subtle overlay */

.suse-home-section::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 28, 0.04),
            transparent 50%,
            rgba(7, 31, 28, 0.03)
        );
}


/* =========================================================
   REGISTER BUTTON OVER BANNER
========================================================= */

.suse-home-actions {
    position: absolute;
    z-index: 3;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
}


.suse-home-register {
    display: inline-flex;
    min-width: 185px;
    min-height: 52px;
    gap: 11px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    color: #071f1c;
    background:
        linear-gradient(
            135deg,
            #ff8a50,
            #ff7136
        );
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.suse-home-register svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}


.suse-home-register:hover {
    transform: translateY(-3px);
    background:
        linear-gradient(
            135deg,
            #ff9763,
            #ff6a2d
        );
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}


.suse-home-register:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.suse-home-scroll {
    position: absolute;
    right: 30px;
    bottom: 25px;
    z-index: 3;
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}


.suse-home-scroll svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: suseScrollDown 1.7s infinite;
}


@keyframes suseScrollDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   LARGE SCREENS
========================================================= */

@media (min-width: 1500px) {

    .suse-home-section,
    .suse-home-banner {
        min-height: 620px;
        height: 620px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .suse-home-section {
        min-height: 470px;
    }


    .suse-home-banner {
        height: 470px;
    }


    .suse-home-actions {
        bottom: 28px;
    }
}


@media (max-width: 650px) {

    .suse-home-section {
        min-height: auto;
        overflow: visible;
        background: #071f1c;
    }


    .suse-home-picture {
        height: auto;
    }


    .suse-home-banner {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center;
    }


    .suse-home-section::after {
        display: none;
    }


    .suse-home-actions {
        position: relative;
        bottom: auto;
        left: auto;
        display: flex;
        padding: 18px 14px;
        transform: none;
        background: #071f1c;
    }


    .suse-home-register {
        width: 100%;
    }


    .suse-home-scroll {
        display: none;
    }
}

.footer-section {
    position: relative;
    padding: 50px 20px 28px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            135deg,
            #071f1c 0%,
            #0b3029 55%,
            #071f1c 100%
        );
}


/* Decorative glow elements */

.footer-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(15px);
}


.footer-glow-left {
    bottom: -145px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: rgba(48, 186, 120, 0.2);
}


.footer-glow-right {
    top: -160px;
    right: -110px;
    width: 360px;
    height: 360px;
    background: rgba(24, 119, 232, 0.12);
}


/* Footer main content */

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(1180px, 100%);
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* ObserveNow logo */

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    text-decoration: none;
}


.footer-logo {
    display: block;
    width: 190px;
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.footer-logo {
    filter: brightness(0) invert(1);
}


.footer-logo-link:hover .footer-logo {
    transform: translateY(-3px);
    opacity: 0.88;
}


/* Social media icons */

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}


.footer-social a {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 15px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.footer-social a:hover {
    transform: translateY(-4px);
    border-color: #73e2a7;
    color: #071f1c;
    background: #73e2a7;
    box-shadow: 0 13px 28px rgba(48, 186, 120, 0.24);
}


.footer-social a i {
    line-height: 1;
}


.footer-copyright {
    width: 100%;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.7;
}



@media (max-width: 768px) {

    .footer-section {
        padding: 48px 18px 24px;
    }


    .footer-logo {
        width: 165px;
    }


    .footer-social {
        gap: 10px;
        margin-bottom: 25px;
    }


    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}


@media (max-width: 480px) {

    .footer-section {
        padding: 35px 14px 20px;
    }


    .footer-logo-link {
        margin-bottom: 22px;
    }


    .footer-logo {
        width: 145px;
    }


    .footer-social {
        gap: 9px;
    }

    .footer-social a {
        width: 39px;
        height: 39px;
        font-size: 13px;
    }


    .footer-copyright {
        padding-top: 20px;
        font-size: 11px;
    }
}



.homepage-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding-top: 0px;
  overflow: hidden;
  background: #eeeeef;
}

.homepage-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.homepage-banner-image {
  display: block;
  width: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
}

.homepage-banner-action {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
}



.banner-scroll-down {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 26px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.banner-scroll-down i {
  animation: bannerScroll 1.8s infinite;
}

@keyframes bannerScroll {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}



@media (max-width: 900px) {

 

  .navbar-menu-open {
    display: flex;
    flex-direction: column;
  }

  .navbar-link {
    padding: 13px 12px;
    border-bottom: 1px solid #eeeeef;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-register-button {
    margin-top: 12px;
  }

  .homepage-banner {
    min-height: 460px;
    padding-top: 74px;
  }

  .homepage-banner-image {
    min-height: 460px;
  }

  .homepage-banner-overlay {
    top: 74px;
  }
}


@media (max-width: 700px) {

  .homepage-banner {
    min-height: auto;
    padding-top: 74px;
    background: #f2f2f2;
  }

  .homepage-banner picture,
  .homepage-banner-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .homepage-banner-image {
    object-fit: contain;
  }

  .homepage-banner-action {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    padding: 18px 14px;
    transform: none;
    background: #f4f4f5;
  }

  .banner-register-button {
    width: 100%;
  }

  .banner-scroll-down {
    display: none;
  }
}

/* =========================================================
   FINAL ENHANCEMENTS: RESPONSIVE HERO, ANIMATED ABOUT VISUAL,
   AND TRUE 3D DISCUSSION FLIP CARDS
   Add these rules at the END of the stylesheet so they override
   earlier declarations safely.
========================================================= */

/* ---------- Page-wide polish ---------- */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: #ffffff;
}

.suse-about-section,
.suse-discussion-section,
.suse-register-section {
    isolation: isolate;
}

/* =========================================================
   1. RESPONSIVE BANNER FIX
========================================================= */

.suse-home-section,
.homepage-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    overflow: hidden;
    background: var(--suse-dark, #071f1c);
}

.suse-home-picture,
.homepage-banner picture {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
}

.suse-home-banner,
.homepage-banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

/* Use this class on the banner only when you want a fixed hero height. */
.suse-home-section.hero-cover .suse-home-banner,
.homepage-banner.hero-cover .homepage-banner-image {
    width: 100%;
    height: clamp(360px, 42vw, 650px);
    object-fit: cover;
    object-position: center;
}

.suse-home-section::after,
.homepage-banner-overlay {
    pointer-events: none;
}

@media (max-width: 1024px) {
    .suse-home-section,
    .homepage-banner {
        min-height: 0;
    }

    .suse-home-banner,
    .homepage-banner-image {
        height: auto;
        min-height: 0;
    }
}

@media (max-width: 700px) {
    .suse-home-section,
    .homepage-banner {
        padding-top: 0;
        overflow: hidden;
    }

    .suse-home-banner,
    .homepage-banner-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}

/* =========================================================
   2. ANIMATED ABOUT VISUAL
========================================================= */

.suse-about-layout {
    align-items: stretch;
}

.suse-about-visual {
    position: relative;
    display: flex;
    min-height: 560px;
    padding: 46px 34px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(115, 226, 167, 0.2);
    border-radius: 32px;
    background:
        radial-gradient(circle at 78% 18%, rgba(115, 226, 167, 0.23), transparent 25%),
        radial-gradient(circle at 22% 82%, rgba(24, 119, 232, 0.13), transparent 30%),
        linear-gradient(145deg, #061a17 0%, #0a362e 52%, #0d644d 100%);
    box-shadow:
        0 30px 80px rgba(7, 31, 28, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateZ(0);
}

/* Animated light sweep */
.suse-about-visual::before {
    position: absolute;
    top: -35%;
    left: -65%;
    width: 52%;
    height: 170%;
    content: "";
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12),
        transparent
    );
    transform: rotate(18deg);
    animation: suseLightSweep 7s ease-in-out infinite;
}

/* Animated dotted tech layer */
.suse-about-visual::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.36;
    background-image:
        radial-gradient(circle, rgba(115, 226, 167, 0.65) 1px, transparent 1.5px),
        linear-gradient(rgba(115, 226, 167, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(115, 226, 167, 0.035) 1px, transparent 1px);
    background-size: 28px 28px, 56px 56px, 56px 56px;
    background-position: 0 0, 0 0, 0 0;
    mask-image: linear-gradient(135deg, transparent 8%, #000 42%, #000 82%, transparent 100%);
    animation: suseGridDrift 16s linear infinite;
}

.suse-visual-glow {
    top: -90px;
    right: -55px;
    width: 360px;
    height: 360px;
    opacity: 0.8;
    background:
        radial-gradient(circle, rgba(115, 226, 167, 0.52), rgba(48, 186, 120, 0.12) 48%, transparent 72%);
    filter: blur(4px);
    animation: suseGlowPulse 5s ease-in-out infinite;
}



.suse-card-number {
    display: none;
}

@keyframes suseLightSweep {
    0%, 18% {
        left: -65%;
        opacity: 0;
    }
    34% {
        opacity: 1;
    }
    56%, 100% {
        left: 125%;
        opacity: 0;
    }
}

@keyframes suseGridDrift {
    from {
        background-position: 0 0, 0 0, 0 0;
    }
    to {
        background-position: 84px 56px, 56px 56px, 56px 56px;
    }
}

@keyframes suseGlowPulse {
    0%, 100% {
        transform: scale(0.92);
        opacity: 0.58;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.9;
    }
}

@keyframes suseWaveFloat {
    0%, 100% {
        transform: rotate(-20deg) translate3d(0, 0, 0);
    }
    50% {
        transform: rotate(-14deg) translate3d(-18px, -12px, 0);
    }
}

@keyframes suseCardFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -7px, 0);
    }
}

/* =========================================================
   3. TRUE 3D DISCUSSION FLIP CARDS
   Required HTML inside each .suse-discussion-card:
   .suse-flip-inner > .suse-flip-front + .suse-flip-back
========================================================= */

.suse-discussion-section {
    background:
        radial-gradient(circle at 12% 16%, rgba(48, 186, 120, 0.12), transparent 24%),
        radial-gradient(circle at 90% 82%, rgba(24, 119, 232, 0.08), transparent 24%),
        linear-gradient(145deg, #061916 0%, #092d27 50%, #0b3a30 100%);
}

.suse-discussion-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    perspective: 1500px;
}

.suse-discussion-card,
.suse-discussion-card:nth-child(4),
.suse-discussion-card-featured {
    position: relative;
    display: block;
    grid-column: span 2;
    min-height: 255px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
    perspective: 1200px;
    backdrop-filter: none;
}

.suse-discussion-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.suse-discussion-card:nth-child(5),
.suse-discussion-card-featured {
    grid-column: 4 / span 2;
}

.suse-discussion-card:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.suse-flip-inner {
    position: relative;
    width: 100%;
    min-height: 255px;
    transform-style: preserve-3d;
    transition: transform 0.75s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.suse-discussion-card:hover .suse-flip-inner,
.suse-discussion-card:focus-within .suse-flip-inner,
.suse-discussion-card.is-flipped .suse-flip-inner {
    transform: rotateY(180deg);
}

.suse-flip-front,
.suse-flip-back {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 255px;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.suse-flip-front {
    background:
        radial-gradient(circle at 86% 12%, rgba(115, 226, 167, 0.18), transparent 25%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.suse-flip-front::before {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(115, 226, 167, 0.18);
    border-radius: 50%;
    content: "";
    box-shadow:
        0 0 0 28px rgba(115, 226, 167, 0.035),
        0 0 0 56px rgba(115, 226, 167, 0.02);
}

.suse-flip-back {
    align-items: flex-start;
    justify-content: center;
    transform: rotateY(180deg);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 122, 61, 0.17), transparent 28%),
        linear-gradient(145deg, #0d503f, #08241f);
}

.suse-flip-back::after {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.07);
    content: "↗";
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.suse-flip-front .suse-discussion-icon,
.suse-flip-back .suse-discussion-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #b8f3d1, #73e2a7);
    box-shadow: 0 14px 28px rgba(48, 186, 120, 0.19);
}

.suse-flip-front .suse-topic-number,
.suse-flip-back .suse-topic-number {
    top: 24px;
    right: 25px;
    color: rgba(255, 255, 255, 0.12);
    font-size: 38px;
}

.suse-flip-front h3,
.suse-flip-back h3 {
    position: relative;
    z-index: 2;
    max-width: 285px;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
}

.suse-flip-front .suse-flip-hint {
    position: relative;
    z-index: 2;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.suse-flip-front .suse-flip-hint::after {
    content: "↻";
    color: var(--suse-green-light);
    font-size: 17px;
}

.suse-flip-back p {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13.5px;
    line-height: 1.75;
}

.suse-flip-back .suse-back-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--suse-green-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* Tablet */
@media (max-width: 950px) {
    .suse-about-visual {
        min-height: 520px;
    }

    .suse-moderator-card-two,
    .suse-moderator-card-three {
        margin-left: 0;
    }

    .suse-discussion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .suse-discussion-card,
    .suse-discussion-card:nth-child(4),
    .suse-discussion-card:nth-child(5),
    .suse-discussion-card-featured {
        grid-column: auto;
        width: 100%;
    }

    .suse-discussion-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 10px);
        justify-self: center;
    }
}

/* Mobile: keep cards accessible; tap focus or add .is-flipped with JS */
@media (max-width: 620px) {
    .suse-about-visual {
        min-height: 500px;
        padding: 31px 20px;
        border-radius: 24px;
    }

    .suse-visual-title {
        margin-bottom: 25px;
    }

    .suse-moderator-card {
        min-height: 82px;
        padding: 16px;
    }

    .suse-discussion-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .suse-discussion-card,
    .suse-discussion-card:nth-child(4),
    .suse-discussion-card:nth-child(5),
    .suse-discussion-card-featured,
    .suse-discussion-card:last-child {
        grid-column: auto;
        width: 100%;
        min-height: 235px;
    }

    .suse-flip-inner,
    .suse-flip-front,
    .suse-flip-back {
        min-height: 235px;
    }

    .suse-flip-front,
    .suse-flip-back {
        padding: 23px;
    }

    .suse-flip-front h3,
    .suse-flip-back h3 {
        padding-right: 38px;
        font-size: 16px;
    }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .suse-about-visual::before,
    .suse-about-visual::after,
    .suse-visual-glow,
    .suse-visual-wave,
    .suse-moderator-card,
    .suse-home-scroll svg,
    .banner-scroll-down i {
        animation: none !important;
    }

    .suse-flip-inner {
        transition-duration: 0.01ms;
    }
}


/* =========================================================
   FINAL VIDEO + TYPOGRAPHY + COMPACT FLIP CARD OVERRIDES
   Keep this block at the end of the stylesheet.
========================================================= */

/* Global typography: normal, readable and slightly larger */
html {
    font-size: 16px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

p,
li,
label,
input,
button,
a {
    font-style: normal;
}

.suse-about-content > p,
.suse-about-content .suse-about-lead,
.suse-discussion-heading > p,
.suse-discussion-card p,
.suse-register-description,
.suse-registration-note p,
.suse-contact-card-heading p,
.suse-form-heading p {
    font-size: 16px;
}

.suse-about-content .suse-about-lead {
    font-size: 19px;
    line-height: 1.75;
}

.suse-about-content h2,
.suse-about-content h1,
.suse-discussion-heading h2,
.suse-register-information > h2 {
    font-weight: 600;
    letter-spacing: -1.1px;
}

.suse-peer-note h3,
.suse-discussion-card h3,
.suse-contact-card-heading h3,
.suse-form-heading h3 {
    font-weight: 600;
}

/* ---------------------------------------------------------
   Banner: always remain inside viewport
--------------------------------------------------------- */
.suse-home-section,
.homepage-banner {
    width: 100%;
    min-height: 0;
    overflow: hidden;
}

.suse-home-picture,
.homepage-banner picture {
    display: block;
    width: 100%;
    height: auto;
}

.suse-home-banner,
.homepage-banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
}

/* ---------------------------------------------------------
   ABOUT: VIDEO ON RIGHT SIDE
--------------------------------------------------------- */
.suse-about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: clamp(42px, 6vw, 60px);
    align-items: center;
}

/* Hide the former animated card container if old HTML remains */
.suse-about-visual {
    display: none !important;
}

.suse-about-video-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.suse-about-video-wrap::before {
    position: absolute;
    inset: 8% -5% -8% 8%;
    z-index: 0;
    content: "";
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(48, 186, 120, 0.22), rgba(24, 119, 232, 0.12));
    filter: blur(28px);
    animation: suseVideoGlow 5s ease-in-out infinite alternate;
}

.suse-about-video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(48, 186, 120, 0.25);
    border-radius: 26px;
    background: #071f1c;
    box-shadow: 0 28px 70px rgba(7, 31, 28, 0.22);
    transform: translateZ(0);
    animation: suseVideoFloat 6s ease-in-out infinite;
}

.suse-about-video-frame::before {
    display: block;
    padding-top: 62.5%;
    content: "";
}

.suse-about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    object-position: center;
}

.suse-video-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 55%, rgba(7, 31, 28, 0.55) 100%),
        linear-gradient(90deg, rgba(7, 31, 28, 0.08), transparent 45%);
}

.suse-video-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(7,31,28,.68);
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    backdrop-filter: blur(12px);
}

.suse-video-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--suse-green-light);
    box-shadow: 0 0 0 6px rgba(115,226,167,.12);
    animation: suseVideoDot 1.8s ease-in-out infinite;
}

@keyframes suseVideoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes suseVideoGlow {
    from { opacity: .55; transform: scale(.96); }
    to { opacity: 1; transform: scale(1.04); }
}

@keyframes suseVideoDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .55; transform: scale(.72); }
}
/* =========================================================
   SUSE DISCUSSION SECTION — FINAL FIX
   Remove all previous discussion-card/grid CSS first
========================================================= */

.suse-discussion-section {
    padding: 75px 0;
    overflow: hidden;
}

.suse-discussion-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}


/* =========================================================
   GRID
   3 cards on row one, 2 centred cards on row two
========================================================= */

.suse-discussion-grid {
    display: grid !important;
    width: min(1120px, calc(100% - 40px)) !important;
    margin: 0 auto !important;

    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-auto-rows: 225px !important;

    column-gap: 24px !important;
    row-gap: 24px !important;

    align-items: stretch !important;
    justify-content: center !important;

    perspective: none !important;
}


/* =========================================================
   RESET ALL CARDS
========================================================= */

.suse-discussion-grid > .suse-discussion-card,
.suse-discussion-grid > .suse-discussion-card-featured {
    position: relative !important;

    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;

    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    border: 0 !important;
    border-radius: 16px !important;

    background: transparent !important;
    box-shadow: none !important;

    transform: none !important;
    translate: none !important;

    perspective: 1400px !important;
    isolation: isolate !important;

    box-sizing: border-box !important;
}


/* Remove old decorative elements causing vertical overlaps */

.suse-discussion-card::before,
.suse-discussion-card::after,
.suse-discussion-card-featured::before,
.suse-discussion-card-featured::after {
    display: none !important;
    content: none !important;
}


/* =========================================================
   DESKTOP CARD POSITIONS
========================================================= */

/* First row */

.suse-discussion-grid > .suse-discussion-card:nth-child(1) {
    grid-column: 1 / span 4 !important;
    grid-row: 1 !important;
}

.suse-discussion-grid > .suse-discussion-card:nth-child(2) {
    grid-column: 5 / span 4 !important;
    grid-row: 1 !important;
}

.suse-discussion-grid > .suse-discussion-card:nth-child(3) {
    grid-column: 9 / span 4 !important;
    grid-row: 1 !important;
}


/* Second row — centred */

.suse-discussion-grid > .suse-discussion-card:nth-child(4) {
    grid-column: 3 / span 4 !important;
    grid-row: 2 !important;
}

.suse-discussion-grid > .suse-discussion-card:nth-child(5) {
    grid-column: 7 / span 4 !important;
    grid-row: 2 !important;
}


/* =========================================================
   FLIP CONTAINER
========================================================= */

.suse-flip-inner {
    position: relative !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    transform-style: preserve-3d !important;
    transition: transform 0.6s cubic-bezier(.2, .72, .2, 1) !important;

    box-sizing: border-box !important;
}


/* Reset pseudo-elements on flip container */

.suse-flip-inner::before,
.suse-flip-inner::after {
    display: none !important;
    content: none !important;
}


.suse-discussion-card:hover .suse-flip-inner,
.suse-discussion-card:focus-within .suse-flip-inner,
.suse-discussion-card.is-flipped .suse-flip-inner {
    transform: rotateY(180deg) !important;
}


/* =========================================================
   FRONT AND BACK FACES
========================================================= */

.suse-flip-front,
.suse-flip-back {
    position: absolute !important;
    inset: 0 !important;

    display: flex !important;
    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 22px !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 16px !important;

    box-sizing: border-box !important;

    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
}


/* Remove inherited pseudo-elements that create overlap */

.suse-flip-front::after,
.suse-flip-back::before,
.suse-flip-back::after {
    display: none !important;
    content: none !important;
}


.suse-flip-front {
    z-index: 2 !important;

    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: flex-start !important;

    overflow: hidden !important;

    transform: rotateY(0deg) !important;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.04)
        ) !important;

    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14) !important;
}


/* Decorative circle kept inside each card */

.suse-flip-front::before {
    position: absolute !important;
    top: -52px !important;
    right: -52px !important;

    display: block !important;

    width: 125px !important;
    height: 125px !important;

    border: 1px solid rgba(115, 226, 167, 0.12) !important;
    border-radius: 50% !important;

    content: "" !important;

    background: rgba(115, 226, 167, 0.035) !important;
    pointer-events: none !important;
}


.suse-flip-back {
    z-index: 1 !important;

    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;

    transform: rotateY(180deg) !important;

    background:
        linear-gradient(
            145deg,
            #167b55,
            #0b493a
        ) !important;

    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2) !important;
}


/* =========================================================
   ICON
========================================================= */

.suse-discussion-icon {
    position: relative !important;
    z-index: 2 !important;

    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;

    margin: 0 0 13px !important;

    place-items: center !important;

    border-radius: 10px !important;
    box-sizing: border-box !important;
}

.suse-discussion-icon svg {
    width: 19px !important;
    height: 19px !important;
}


/* =========================================================
   NUMBER
========================================================= */

.suse-topic-number {
    position: absolute !important;
    top: 17px !important;
    right: 18px !important;
    z-index: 1 !important;

    margin: 0 !important;

    color: rgba(255, 255, 255, 0.12) !important;
    font-size: 27px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}


/* =========================================================
   FRONT CONTENT
========================================================= */

.suse-flip-front h3 {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;

    width: 100% !important;
    max-width: calc(100% - 10px) !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1.42 !important;

    overflow-wrap: anywhere !important;
    word-break: normal !important;

    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}


.suse-flip-hint {
    position: relative !important;
    z-index: 2 !important;

    display: inline-flex !important;
    width: fit-content !important;
    gap: 6px !important;
    align-items: center !important;

    margin-top: auto !important;

    color: var(--suse-green-light, #73e2a7) !important;
    font-size: 9px !important;
    font-weight: 750 !important;
    letter-spacing: 0.7px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}


/* =========================================================
   BACK CONTENT
========================================================= */

.suse-back-label {
    display: block !important;

    margin: 0 0 7px !important;

    color: var(--suse-green-light, #73e2a7) !important;
    font-size: 9px !important;
    font-weight: 750 !important;
    letter-spacing: 0.8px !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}


.suse-flip-back h3 {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 0 9px !important;
    padding: 0 !important;

    overflow: visible !important;

    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;

    overflow-wrap: anywhere !important;

    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}


.suse-flip-back p {
    display: block !important;

    width: 100% !important;
    margin: 0 !important;

    overflow: visible !important;

    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
    line-height: 1.55 !important;

    overflow-wrap: anywhere !important;

    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}


/* Small scrollbar only if description is long */

.suse-flip-back::-webkit-scrollbar {
    width: 4px;
}

.suse-flip-back::-webkit-scrollbar-track {
    background: transparent;
}

.suse-flip-back::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.24);
}


/* Prevent cards from moving on hover */

.suse-discussion-card:hover,
.suse-discussion-card-featured:hover {
    z-index: 3 !important;
    margin: 0 !important;
    transform: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .suse-discussion-grid {
        width: min(760px, calc(100% - 32px)) !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 225px !important;

        gap: 20px !important;
    }

    .suse-discussion-grid > .suse-discussion-card,
    .suse-discussion-grid > .suse-discussion-card:nth-child(1),
    .suse-discussion-grid > .suse-discussion-card:nth-child(2),
    .suse-discussion-grid > .suse-discussion-card:nth-child(3),
    .suse-discussion-grid > .suse-discussion-card:nth-child(4),
    .suse-discussion-grid > .suse-discussion-card:nth-child(5) {
        width: 100% !important;
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;

        grid-column: auto !important;
        grid-row: auto !important;
    }

    .suse-discussion-grid > .suse-discussion-card:nth-child(5) {
        grid-column: 1 / -1 !important;
        width: calc(50% - 10px) !important;
        justify-self: center !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 580px) {

    .suse-discussion-section {
        padding: 60px 0;
    }

    .suse-discussion-grid {
        width: min(100% - 28px, 480px) !important;

        grid-template-columns: 1fr !important;
        grid-auto-rows: 225px !important;

        gap: 16px !important;
    }

    .suse-discussion-grid > .suse-discussion-card,
    .suse-discussion-grid > .suse-discussion-card:nth-child(1),
    .suse-discussion-grid > .suse-discussion-card:nth-child(2),
    .suse-discussion-grid > .suse-discussion-card:nth-child(3),
    .suse-discussion-grid > .suse-discussion-card:nth-child(4),
    .suse-discussion-grid > .suse-discussion-card:nth-child(5) {
        width: 100% !important;
        height: 225px !important;
        min-height: 225px !important;
        max-height: 225px !important;

        grid-column: auto !important;
        grid-row: auto !important;

        justify-self: stretch !important;
    }

    .suse-flip-front,
    .suse-flip-back {
        padding: 20px !important;
    }
}
/* =========================================================
   FULL-SCREEN HOME BANNER
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}

.homepage-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 650px;

    background-image: url("images/suse-banner.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    overflow: hidden;
}

/* Makes the entire banner clickable */
.homepage-banner-click {
    position: absolute;
    inset: 0;
    z-index: 2;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .homepage-banner {
        background-position: center center;
        background-size: cover;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .homepage-banner {
        min-height: 620px;
        background-position: left center;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .homepage-banner {
        height: 82vh;
        min-height: 560px;
        background-position: left center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .homepage-banner {
        height: auto;
        min-height: 520px;

        background-size: cover;
        background-position: 22% center;
    }
}