/* =========================================================
DTA × SIEMENS GVT MASTER CLASS
HERO SECTION
========================================================= */

:root {
    --gvt-navy: #061522;
    --gvt-dark: #081b29;
    --gvt-blue: #008ed6;
    --gvt-cyan: #00c6d7;
    --gvt-light: #eaf8ff;
    --gvt-white: #ffffff;
    --gvt-border: rgba(255, 255, 255, 0.18);
    --gvt-muted: rgba(255, 255, 255, 0.72);
}

.gvt-hero {
    position: relative;
    min-height: 860px;
    height: 100vh;
    max-height: 1050px;
    overflow: hidden;
    background: var(--gvt-navy);
    isolation: isolate;
}

.gvt-hero__image {
    position: absolute;
    inset: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    animation: gvtHeroZoom 18s ease-out forwards;
}

.gvt-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(2, 15, 25, 0.98) 0%,
            rgba(3, 20, 32, 0.94) 30%,
            rgba(4, 24, 39, 0.77) 54%,
            rgba(4, 24, 39, 0.28) 76%,
            rgba(4, 24, 39, 0.18) 100%),
        linear-gradient(0deg,
            rgba(3, 17, 27, 0.95) 0%,
            rgba(3, 17, 27, 0.10) 40%,
            rgba(3, 17, 27, 0.26) 100%);
}

.gvt-hero__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg,
            black 0%,
            rgba(0, 0, 0, 0.5) 55%,
            transparent 90%);
}

.gvt-hero__glow {
    position: absolute;
    top: 16%;
    left: -180px;
    z-index: -2;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 198, 215, 0.17);
    filter: blur(130px);
}

.gvt-hero__container,
.gvt-hero__row {
    height: 100%;
}

.gvt-hero__container {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    padding-bottom: 145px;
}

.gvt-hero__partners {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gvt-hero__partner-divider {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.15));
}

.gvt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    color: #dffcff;
    border: 1px solid rgba(0, 198, 215, 0.46);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.10);
    box-shadow:
        inset 0 0 20px rgba(0, 198, 215, 0.05),
        0 15px 45px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gvt-hero__badge-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 13px rgba(0, 198, 215, 0.9);
}

.gvt-hero__badge-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(0, 198, 215, 0.45);
    border-radius: 50%;
    animation: gvtPulse 2s infinite;
}

.gvt-hero__title {
    max-width: 830px;
    margin: 0 0 17px;
    color: var(--gvt-white);
    font-family: inherit;
    font-size: clamp(52px, 5.8vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -3.7px;
    text-wrap: balance;
}

.gvt-hero__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bcefff 42%,
            #49d4e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-hero__event-name {
    margin: 0 0 20px;
    color: var(--gvt-white);
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

.gvt-hero__description {
    max-width: 730px;
    margin: 0 0 27px;
    color: var(--gvt-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
}

.gvt-hero__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-bottom: 29px;
    border-top: 1px solid var(--gvt-border);
    border-left: 1px solid var(--gvt-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(5, 25, 39, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gvt-hero__detail {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
    border-right: 1px solid var(--gvt-border);
    border-bottom: 1px solid var(--gvt-border);
}

.gvt-hero__detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 13px;
    flex: 0 0 38px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.26);
    border-radius: 8px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 14px;
}

.gvt-hero__detail small,
.gvt-hero__detail strong {
    display: block;
}

.gvt-hero__detail small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.gvt-hero__detail strong {
    color: var(--gvt-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.gvt-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.gvt-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 13px 25px;
    overflow: hidden;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.gvt-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.gvt-button--primary {
    color: #031821;
    border: 1px solid var(--gvt-cyan);
    background:
        linear-gradient(135deg,
            #6de7f0 0%,
            var(--gvt-cyan) 45%,
            #00a6cf 100%);
    box-shadow: 0 16px 40px rgba(0, 198, 215, 0.22);
}

.gvt-button--primary:hover {
    color: #031821;
    box-shadow: 0 21px 50px rgba(0, 198, 215, 0.34);
}

.gvt-button--secondary {
    color: var(--gvt-white);
    border: 1px solid rgba(255, 255, 255, 0.27);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gvt-button--secondary:hover {
    color: var(--gvt-white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.gvt-hero__application-note {
    max-width: 730px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.6;
}

.gvt-hero__application-note i {
    margin-right: 6px;
    color: var(--gvt-cyan);
}

.gvt-hero__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    border-top: 1px solid var(--gvt-border);
    background: rgba(3, 16, 26, 0.78);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.gvt-hero__highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gvt-hero__highlight {
    position: relative;
    min-height: 100px;
    padding: 24px 26px;
}

.gvt-hero__highlight:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.gvt-hero__highlight strong,
.gvt-hero__highlight span {
    display: block;
}

.gvt-hero__highlight strong {
    margin-bottom: 7px;
    color: var(--gvt-white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.gvt-hero__highlight span {
    color: rgba(255, 255, 255, 0.53);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.gvt-hero__scroll {
    position: absolute;
    right: 35px;
    bottom: 124px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 28px;
    height: 47px;
    padding-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.gvt-hero__scroll span {
    display: block;
    width: 3px;
    height: 8px;
    border-radius: 999px;
    background: var(--gvt-cyan);
    animation: gvtScroll 1.8s infinite;
}

/* Animations */

@keyframes gvtHeroZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes gvtPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.7);
    }

    70% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes gvtScroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(18px);
    }
}

/* Large laptop screens */

@media (max-width: 1440px) {
    .gvt-hero {
        min-height: 790px;
    }

    .gvt-hero__container {
        padding-top: 75px;
        padding-bottom: 125px;
    }

    .gvt-hero__title {
        font-size: clamp(48px, 5.2vw, 74px);
    }

    .gvt-hero__description {
        margin-bottom: 22px;
    }

    .gvt-hero__detail {
        min-height: 68px;
    }

    .gvt-hero__highlight {
        min-height: 88px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/* Short and medium-height desktop screens */

@media (min-width: 992px) and (max-height: 980px) {
    .gvt-hero__container {
        padding-top: 85px;
        padding-bottom: 175px;
    }

    .gvt-hero__partners {
        margin-bottom: 12px;
    }

    .gvt-hero__badge {
        margin-bottom: 15px;
        padding: 8px 14px;
    }

    .gvt-hero__title {
        margin-bottom: 12px;
        font-size: clamp(52px, 4.8vw, 64px);
        line-height: 0.98;
        letter-spacing: -3px;
    }

    .gvt-hero__event-name {
        margin-bottom: 12px;
        font-size: 22px;
        line-height: 1.3;
    }

    .gvt-hero__description {
        max-width: 675px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.55;
    }

    .gvt-hero__details {
        max-width: 635px;
        margin-bottom: 16px;
    }

    .gvt-hero__detail {
        min-height: 61px;
        padding: 10px 17px;
    }

    .gvt-hero__detail-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        margin-right: 12px;
    }

    .gvt-hero__detail small {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .gvt-hero__detail strong {
        font-size: 13px;
    }

    .gvt-hero__actions {
        gap: 12px;
    }

    .gvt-button {
        min-height: 48px;
        padding: 11px 24px;
        font-size: 12px;
    }

    .gvt-hero__application-note {
        display: block;
        max-width: 680px;
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.45;
    }

    .gvt-hero__highlight {
        min-height: 94px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .gvt-hero__scroll {
        bottom: 112px;
    }
}

@media (min-width: 992px) {
    .gvt-hero__bottom {
        min-height: 94px;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .gvt-hero__scroll {
        display: none;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .gvt-hero {
        min-height: 940px;
        height: auto;
        max-height: none;
    }

    .gvt-hero__image {
        object-position: 60% center;
    }

    .gvt-hero__overlay {
        background:
            linear-gradient(90deg,
                rgba(3, 17, 27, 0.97) 0%,
                rgba(3, 17, 27, 0.90) 58%,
                rgba(3, 17, 27, 0.55) 100%),
            linear-gradient(0deg,
                rgba(3, 17, 27, 0.98) 0%,
                rgba(3, 17, 27, 0.18) 55%,
                rgba(3, 17, 27, 0.42) 100%);
    }

    .gvt-hero__container {
        min-height: 940px;
        padding-top: 135px;
        padding-bottom: 220px;
    }

    .gvt-hero__title {
        font-size: clamp(48px, 8vw, 72px);
    }

    .gvt-hero__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gvt-hero__highlight {
        min-height: 77px;
        padding: 17px 20px;
    }

    .gvt-hero__highlight:nth-child(2)::after {
        display: none;
    }

    .gvt-hero__highlight:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .gvt-hero__scroll {
        display: none;
    }
}

/* Mobile */

@media (max-width: 767px) {

    /*
     * Mobilde hero yüksekliği içerik tarafından belirlenir.
     * Böylece başvuru notu ile alt bilgi kartları arasında
     * sabit yükseklikten kaynaklanan boşluk oluşmaz.
     */
    .gvt-hero {
        min-height: 0;
        height: auto;
        max-height: none;
    }

    .gvt-hero__container,
    .gvt-hero__row {
        min-height: 0;
        height: auto;
    }

    .gvt-hero__image {
        object-position: 64% center;
    }

    .gvt-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(3, 17, 27, 0.84) 0%,
                rgba(3, 17, 27, 0.94) 50%,
                rgba(3, 17, 27, 0.99) 100%);
    }

    .gvt-hero__grid {
        background-size: 48px 48px;
    }

    .gvt-hero__container {
        padding-top: 110px;
        padding-bottom: 34px;
    }

    .gvt-hero__bottom {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .gvt-hero__partners {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .gvt-hero__badge {
        margin-bottom: 19px;
        padding: 9px 13px;
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .gvt-hero__title {
        margin-bottom: 18px;
        font-size: 46px;
        line-height: 1;
        letter-spacing: -2.3px;
    }

    .gvt-hero__event-name {
        font-size: 19px;
        line-height: 1.38;
    }

    .gvt-hero__description {
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-hero__details {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .gvt-hero__detail {
        min-height: 65px;
    }

    .gvt-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gvt-button {
        width: 100%;
    }

    .gvt-hero__application-note {
        margin-top: 14px;
        margin-bottom: 0;
        font-size: 10px;
    }

    .gvt-hero__highlight {
        min-height: 73px;
        padding: 15px;
    }

    .gvt-hero__highlight strong {
        font-size: 14px;
    }

    .gvt-hero__highlight span {
        font-size: 9px;
        line-height: 1.4;
    }
}

/* Small mobile */

@media (max-width: 390px) {
    .gvt-hero__title {
        font-size: 40px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .gvt-hero__image,
    .gvt-hero__badge-dot::after,
    .gvt-hero__scroll span {
        animation: none;
    }

    .gvt-button {
        transition: none;
    }
}

/* =========================================================
GVT ABOUT SECTION
========================================================= */

.gvt-about {
    position: relative;
    padding: 115px 0 105px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg,
            #061522 0%,
            #081b29 48%,
            #071722 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
    padding-top: 85px;
}

.gvt-about__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.055;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-about__glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
}

.gvt-about__glow--left {
    top: 80px;
    left: -240px;
    width: 470px;
    height: 470px;
    background: rgba(0, 198, 215, 0.10);
}

.gvt-about__glow--right {
    right: -210px;
    bottom: -130px;
    width: 430px;
    height: 430px;
    background: rgba(0, 142, 214, 0.09);
}

.gvt-about__header {
    margin-bottom: 54px;
}

.gvt-section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gvt-section-label__number {
    color: var(--gvt-cyan);
}

.gvt-section-label__line {
    width: 38px;
    height: 1px;
    background:
        linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.08));
}

.gvt-about__title {
    max-width: 890px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(42px, 4.6vw, 68px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -3px;
}

.gvt-about__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bdefff 48%,
            #42cedd 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-about__intro {
    max-width: 440px;
    margin: 0 0 7px auto;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.gvt-about__statement {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    padding: 28px 33px;
    border: 1px solid rgba(0, 198, 215, 0.21);
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            rgba(0, 198, 215, 0.08),
            rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.gvt-about__statement-line {
    width: 3px;
    min-height: 62px;
    flex: 0 0 3px;
    border-radius: 99px;
    background:
        linear-gradient(180deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.18));
    box-shadow: 0 0 20px rgba(0, 198, 215, 0.25);
}

.gvt-about__statement p {
    max-width: 940px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.5px;
}

.gvt-about__cards {
    margin-right: -10px;
    margin-left: -10px;
}

.gvt-about__cards>div {
    display: flex;
    padding-right: 10px;
    padding-left: 10px;
}

.gvt-about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 315px;
    padding: 27px 25px 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018));
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease;
}

.gvt-about-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.06);
    filter: blur(8px);
    transition: transform 0.35s ease;
}

.gvt-about-card:hover {
    border-color: rgba(0, 198, 215, 0.34);
    background:
        linear-gradient(145deg,
            rgba(0, 198, 215, 0.075),
            rgba(255, 255, 255, 0.025));
    transform: translateY(-7px);
}

.gvt-about-card:hover::before {
    transform: scale(1.22);
}

.gvt-about-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.gvt-about-card__number {
    color: rgba(255, 255, 255, 0.29);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.gvt-about-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.28);
    border-radius: 9px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 16px;
}

.gvt-about-card h3 {
    position: relative;
    z-index: 2;
    min-height: 57px;
    margin: 0 0 17px;
    color: var(--gvt-white);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -0.25px;
}

.gvt-about-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.gvt-about-card__line {
    position: relative;
    z-index: 2;
    display: block;
    width: 40px;
    height: 2px;
    margin-top: auto;
    background:
        linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.04));
    transition: width 0.3s ease;
}

.gvt-about-card:hover .gvt-about-card__line {
    width: 76px;
}

.gvt-about__footer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 33px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.gvt-about__footer-mark {
    padding-top: 7px;
}

.gvt-about__footer-mark span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 12px rgba(0, 198, 215, 0.55);
}

.gvt-about__footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.65;
}

/* GVT ABOUT — Tablet */

@media (max-width: 1199px) {
    .gvt-about-card {
        min-height: 290px;
        margin-bottom: 20px;
    }

    .gvt-about-card h3 {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .gvt-about {
        padding: 88px 0 78px;
    }

    .gvt-about__header {
        margin-bottom: 38px;
    }

    .gvt-about__intro {
        max-width: 680px;
        margin: 24px 0 0;
    }

    .gvt-about__statement {
        margin-bottom: 34px;
    }
}

/* GVT ABOUT — Mobile */

@media (max-width: 767px) {
    .gvt-about {
        padding: 72px 0 62px;
    }

    .gvt-about__grid {
        background-size: 48px 48px;
    }

    .gvt-section-label {
        margin-bottom: 17px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .gvt-section-label__line {
        width: 27px;
    }

    .gvt-about__title {
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .gvt-about__intro {
        margin-top: 21px;
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-about__statement {
        align-items: stretch;
        gap: 18px;
        margin-bottom: 28px;
        padding: 22px 19px;
    }

    .gvt-about__statement-line {
        min-height: auto;
    }

    .gvt-about__statement p {
        font-size: 18px;
        line-height: 1.5;
    }

    .gvt-about-card {
        min-height: auto;
        margin-bottom: 14px;
        padding: 23px 21px;
    }

    .gvt-about-card__top {
        margin-bottom: 23px;
    }

    .gvt-about-card h3 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .gvt-about-card p {
        margin-bottom: 23px;
        font-size: 13px;
    }

    .gvt-about__footer {
        margin-top: 15px;
        padding-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gvt-about-card,
    .gvt-about-card::before,
    .gvt-about-card__line {
        transition: none;
    }
}

.gvt-about-card p {
    color: rgba(255, 255, 255, 0.66);
}

.gvt-about__footer p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

<style>
/* =========================================================
DTA × SIEMENS GVT MASTER CLASS
HERO SECTION
========================================================= */

:root {
    --gvt-navy: #061522;
    --gvt-dark: #081b29;
    --gvt-blue: #008ed6;
    --gvt-cyan: #00c6d7;
    --gvt-light: #eaf8ff;
    --gvt-white: #ffffff;
    --gvt-border: rgba(255, 255, 255, 0.18);
    --gvt-muted: rgba(255, 255, 255, 0.72);
}

.gvt-hero {
    position: relative;
    min-height: 860px;
    height: 100vh;
    max-height: 1050px;
    overflow: hidden;
    background: var(--gvt-navy);
    isolation: isolate;
}

.gvt-hero__image {
    position: absolute;
    inset: 0;
    z-index: -5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    animation: gvtHeroZoom 18s ease-out forwards;
}

.gvt-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        linear-gradient(90deg,
            rgba(2, 15, 25, 0.98) 0%,
            rgba(3, 20, 32, 0.94) 30%,
            rgba(4, 24, 39, 0.77) 54%,
            rgba(4, 24, 39, 0.28) 76%,
            rgba(4, 24, 39, 0.18) 100%),
        linear-gradient(0deg,
            rgba(3, 17, 27, 0.95) 0%,
            rgba(3, 17, 27, 0.10) 40%,
            rgba(3, 17, 27, 0.26) 100%);
}

.gvt-hero__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(90deg,
            black 0%,
            rgba(0, 0, 0, 0.5) 55%,
            transparent 90%);
}

.gvt-hero__glow {
    position: absolute;
    top: 16%;
    left: -180px;
    z-index: -2;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 198, 215, 0.17);
    filter: blur(130px);
}

.gvt-hero__container,
.gvt-hero__row {
    height: 100%;
}

.gvt-hero__container {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    padding-bottom: 145px;
}

.gvt-hero__partners {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gvt-hero__partner-divider {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.15));
}

.gvt-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    color: #dffcff;
    border: 1px solid rgba(0, 198, 215, 0.46);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.10);
    box-shadow:
        inset 0 0 20px rgba(0, 198, 215, 0.05),
        0 15px 45px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.gvt-hero__badge-dot {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 13px rgba(0, 198, 215, 0.9);
}

.gvt-hero__badge-dot::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(0, 198, 215, 0.45);
    border-radius: 50%;
    animation: gvtPulse 2s infinite;
}

.gvt-hero__title {
    max-width: 830px;
    margin: 0 0 17px;
    color: var(--gvt-white);
    font-family: inherit;
    font-size: clamp(52px, 5.8vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -3.7px;
    text-wrap: balance;
}

.gvt-hero__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bcefff 42%,
            #49d4e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-hero__event-name {
    margin: 0 0 20px;
    color: var(--gvt-white);
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.45px;
}

.gvt-hero__description {
    max-width: 730px;
    margin: 0 0 27px;
    color: var(--gvt-muted);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
}

.gvt-hero__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
    margin-bottom: 29px;
    border-top: 1px solid var(--gvt-border);
    border-left: 1px solid var(--gvt-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(5, 25, 39, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gvt-hero__detail {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 14px 18px;
    border-right: 1px solid var(--gvt-border);
    border-bottom: 1px solid var(--gvt-border);
}

.gvt-hero__detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 13px;
    flex: 0 0 38px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.26);
    border-radius: 8px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 14px;
}

.gvt-hero__detail small,
.gvt-hero__detail strong {
    display: block;
}

.gvt-hero__detail small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.gvt-hero__detail strong {
    color: var(--gvt-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.gvt-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.gvt-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding: 13px 25px;
    overflow: hidden;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.gvt-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.gvt-button--primary {
    color: #031821;
    border: 1px solid var(--gvt-cyan);
    background:
        linear-gradient(135deg,
            #6de7f0 0%,
            var(--gvt-cyan) 45%,
            #00a6cf 100%);
    box-shadow: 0 16px 40px rgba(0, 198, 215, 0.22);
}

.gvt-button--primary:hover {
    color: #031821;
    box-shadow: 0 21px 50px rgba(0, 198, 215, 0.34);
}

.gvt-button--secondary {
    color: var(--gvt-white);
    border: 1px solid rgba(255, 255, 255, 0.27);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gvt-button--secondary:hover {
    color: var(--gvt-white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.gvt-hero__application-note {
    max-width: 730px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    line-height: 1.6;
}

.gvt-hero__application-note i {
    margin-right: 6px;
    color: var(--gvt-cyan);
}

.gvt-hero__bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    border-top: 1px solid var(--gvt-border);
    background: rgba(3, 16, 26, 0.78);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.gvt-hero__highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gvt-hero__highlight {
    position: relative;
    min-height: 100px;
    padding: 24px 26px;
}

.gvt-hero__highlight:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: 0;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.gvt-hero__highlight strong,
.gvt-hero__highlight span {
    display: block;
}

.gvt-hero__highlight strong {
    margin-bottom: 7px;
    color: var(--gvt-white);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.gvt-hero__highlight span {
    color: rgba(255, 255, 255, 0.53);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.gvt-hero__scroll {
    position: absolute;
    right: 35px;
    bottom: 124px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 28px;
    height: 47px;
    padding-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
}

.gvt-hero__scroll span {
    display: block;
    width: 3px;
    height: 8px;
    border-radius: 999px;
    background: var(--gvt-cyan);
    animation: gvtScroll 1.8s infinite;
}

/* Animations */

@keyframes gvtHeroZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes gvtPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.7);
    }

    70% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@keyframes gvtScroll {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(18px);
    }
}

/* Large laptop screens */

@media (max-width: 1440px) {
    .gvt-hero {
        min-height: 790px;
    }

    .gvt-hero__container {
        padding-top: 75px;
        padding-bottom: 125px;
    }

    .gvt-hero__title {
        font-size: clamp(48px, 5.2vw, 74px);
    }

    .gvt-hero__description {
        margin-bottom: 22px;
    }

    .gvt-hero__detail {
        min-height: 68px;
    }

    .gvt-hero__highlight {
        min-height: 88px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


/* Short and medium-height desktop screens */

@media (min-width: 992px) and (max-height: 980px) {
    .gvt-hero__container {
        padding-top: 85px;
        padding-bottom: 175px;
    }

    .gvt-hero__partners {
        margin-bottom: 12px;
    }

    .gvt-hero__badge {
        margin-bottom: 15px;
        padding: 8px 14px;
    }

    .gvt-hero__title {
        margin-bottom: 12px;
        font-size: clamp(52px, 4.8vw, 64px);
        line-height: 0.98;
        letter-spacing: -3px;
    }

    .gvt-hero__event-name {
        margin-bottom: 12px;
        font-size: 22px;
        line-height: 1.3;
    }

    .gvt-hero__description {
        max-width: 675px;
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.55;
    }

    .gvt-hero__details {
        max-width: 635px;
        margin-bottom: 16px;
    }

    .gvt-hero__detail {
        min-height: 61px;
        padding: 10px 17px;
    }

    .gvt-hero__detail-icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        margin-right: 12px;
    }

    .gvt-hero__detail small {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .gvt-hero__detail strong {
        font-size: 13px;
    }

    .gvt-hero__actions {
        gap: 12px;
    }

    .gvt-button {
        min-height: 48px;
        padding: 11px 24px;
        font-size: 12px;
    }

    .gvt-hero__application-note {
        display: block;
        max-width: 680px;
        margin-top: 10px;
        font-size: 10px;
        line-height: 1.45;
    }

    .gvt-hero__highlight {
        min-height: 94px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .gvt-hero__scroll {
        bottom: 112px;
    }
}

@media (min-width: 992px) {
    .gvt-hero__bottom {
        min-height: 94px;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .gvt-hero__scroll {
        display: none;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .gvt-hero {
        min-height: 940px;
        height: auto;
        max-height: none;
    }

    .gvt-hero__image {
        object-position: 60% center;
    }

    .gvt-hero__overlay {
        background:
            linear-gradient(90deg,
                rgba(3, 17, 27, 0.97) 0%,
                rgba(3, 17, 27, 0.90) 58%,
                rgba(3, 17, 27, 0.55) 100%),
            linear-gradient(0deg,
                rgba(3, 17, 27, 0.98) 0%,
                rgba(3, 17, 27, 0.18) 55%,
                rgba(3, 17, 27, 0.42) 100%);
    }

    .gvt-hero__container {
        min-height: 940px;
        padding-top: 135px;
        padding-bottom: 220px;
    }

    .gvt-hero__title {
        font-size: clamp(48px, 8vw, 72px);
    }

    .gvt-hero__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gvt-hero__highlight {
        min-height: 77px;
        padding: 17px 20px;
    }

    .gvt-hero__highlight:nth-child(2)::after {
        display: none;
    }

    .gvt-hero__highlight:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .gvt-hero__scroll {
        display: none;
    }
}

/* Mobile */

@media (max-width: 767px) {

    /*
     * Mobilde hero yüksekliği içerik tarafından belirlenir.
     * Böylece başvuru notu ile alt bilgi kartları arasında
     * sabit yükseklikten kaynaklanan boşluk oluşmaz.
     */
    .gvt-hero {
        min-height: 0;
        height: auto;
        max-height: none;
    }

    .gvt-hero__container,
    .gvt-hero__row {
        min-height: 0;
        height: auto;
    }

    .gvt-hero__image {
        object-position: 64% center;
    }

    .gvt-hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(3, 17, 27, 0.84) 0%,
                rgba(3, 17, 27, 0.94) 50%,
                rgba(3, 17, 27, 0.99) 100%);
    }

    .gvt-hero__grid {
        background-size: 48px 48px;
    }

    .gvt-hero__container {
        padding-top: 110px;
        padding-bottom: 34px;
    }

    .gvt-hero__bottom {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .gvt-hero__partners {
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .gvt-hero__badge {
        margin-bottom: 19px;
        padding: 9px 13px;
        font-size: 10px;
        letter-spacing: 1.1px;
    }

    .gvt-hero__title {
        margin-bottom: 18px;
        font-size: 46px;
        line-height: 1;
        letter-spacing: -2.3px;
    }

    .gvt-hero__event-name {
        font-size: 19px;
        line-height: 1.38;
    }

    .gvt-hero__description {
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-hero__details {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .gvt-hero__detail {
        min-height: 65px;
    }

    .gvt-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gvt-button {
        width: 100%;
    }

    .gvt-hero__application-note {
        margin-top: 14px;
        margin-bottom: 0;
        font-size: 10px;
    }

    .gvt-hero__highlight {
        min-height: 73px;
        padding: 15px;
    }

    .gvt-hero__highlight strong {
        font-size: 14px;
    }

    .gvt-hero__highlight span {
        font-size: 9px;
        line-height: 1.4;
    }
}

/* Small mobile */

@media (max-width: 390px) {
    .gvt-hero__title {
        font-size: 40px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .gvt-hero__image,
    .gvt-hero__badge-dot::after,
    .gvt-hero__scroll span {
        animation: none;
    }

    .gvt-button {
        transition: none;
    }
}

/* =========================================================
GVT ABOUT SECTION
========================================================= */

.gvt-about {
    position: relative;
    padding: 115px 0 105px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg,
            #061522 0%,
            #081b29 48%,
            #071722 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
}

.gvt-about__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.055;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-about__glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
}

.gvt-about__glow--left {
    top: 80px;
    left: -240px;
    width: 470px;
    height: 470px;
    background: rgba(0, 198, 215, 0.10);
}

.gvt-about__glow--right {
    right: -210px;
    bottom: -130px;
    width: 430px;
    height: 430px;
    background: rgba(0, 142, 214, 0.09);
}

.gvt-about__header {
    margin-bottom: 54px;
}

.gvt-section-label {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.gvt-section-label__number {
    color: var(--gvt-cyan);
}

.gvt-section-label__line {
    width: 38px;
    height: 1px;
    background:
        linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.08));
}

.gvt-about__title {
    max-width: 890px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(42px, 4.6vw, 68px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -3px;
}

.gvt-about__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bdefff 48%,
            #42cedd 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-about__intro {
    max-width: 440px;
    margin: 0 0 7px auto;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
}

.gvt-about__statement {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
    padding: 28px 33px;
    border: 1px solid rgba(0, 198, 215, 0.21);
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            rgba(0, 198, 215, 0.08),
            rgba(255, 255, 255, 0.025));
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.gvt-about__statement-line {
    width: 3px;
    min-height: 62px;
    flex: 0 0 3px;
    border-radius: 99px;
    background:
        linear-gradient(180deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.18));
    box-shadow: 0 0 20px rgba(0, 198, 215, 0.25);
}

.gvt-about__statement p {
    max-width: 940px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.5px;
}

.gvt-about__cards {
    margin-right: -10px;
    margin-left: -10px;
}

.gvt-about__cards>div {
    display: flex;
    padding-right: 10px;
    padding-left: 10px;
}

.gvt-about-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 315px;
    padding: 27px 25px 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018));
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease;
}

.gvt-about-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.06);
    filter: blur(8px);
    transition: transform 0.35s ease;
}

.gvt-about-card:hover {
    border-color: rgba(0, 198, 215, 0.34);
    background:
        linear-gradient(145deg,
            rgba(0, 198, 215, 0.075),
            rgba(255, 255, 255, 0.025));
    transform: translateY(-7px);
}

.gvt-about-card:hover::before {
    transform: scale(1.22);
}

.gvt-about-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 34px;
}

.gvt-about-card__number {
    color: rgba(255, 255, 255, 0.29);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.gvt-about-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.28);
    border-radius: 9px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 16px;
}

.gvt-about-card h3 {
    position: relative;
    z-index: 2;
    min-height: 57px;
    margin: 0 0 17px;
    color: var(--gvt-white);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.38;
    letter-spacing: -0.25px;
}

.gvt-about-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.gvt-about-card__line {
    position: relative;
    z-index: 2;
    display: block;
    width: 40px;
    height: 2px;
    margin-top: auto;
    background:
        linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0.04));
    transition: width 0.3s ease;
}

.gvt-about-card:hover .gvt-about-card__line {
    width: 76px;
}

.gvt-about__footer {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 33px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.gvt-about__footer-mark {
    padding-top: 7px;
}

.gvt-about__footer-mark span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 12px rgba(0, 198, 215, 0.55);
}

.gvt-about__footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.65;
}

/* GVT ABOUT — Tablet */

@media (max-width: 1199px) {
    .gvt-about-card {
        min-height: 290px;
        margin-bottom: 20px;
    }

    .gvt-about-card h3 {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .gvt-about {
        padding: 88px 0 78px;
    }

    .gvt-about__header {
        margin-bottom: 38px;
    }

    .gvt-about__intro {
        max-width: 680px;
        margin: 24px 0 0;
    }

    .gvt-about__statement {
        margin-bottom: 34px;
    }
}

/* GVT ABOUT — Mobile */

@media (max-width: 767px) {
    .gvt-about {
        padding: 72px 0 62px;
    }

    .gvt-about__grid {
        background-size: 48px 48px;
    }

    .gvt-section-label {
        margin-bottom: 17px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .gvt-section-label__line {
        width: 27px;
    }

    .gvt-about__title {
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .gvt-about__intro {
        margin-top: 21px;
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-about__statement {
        align-items: stretch;
        gap: 18px;
        margin-bottom: 28px;
        padding: 22px 19px;
    }

    .gvt-about__statement-line {
        min-height: auto;
    }

    .gvt-about__statement p {
        font-size: 18px;
        line-height: 1.5;
    }

    .gvt-about-card {
        min-height: auto;
        margin-bottom: 14px;
        padding: 23px 21px;
    }

    .gvt-about-card__top {
        margin-bottom: 23px;
    }

    .gvt-about-card h3 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .gvt-about-card p {
        margin-bottom: 23px;
        font-size: 13px;
    }

    .gvt-about__footer {
        margin-top: 15px;
        padding-top: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gvt-about-card,
    .gvt-about-card::before,
    .gvt-about-card__line {
        transition: none;
    }
}

.gvt-about-card p {
    color: rgba(255, 255, 255, 0.66);
}

.gvt-about__footer p {
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

/* =========================================================
   GVT EXPERIENCE SECTION
========================================================= */

.gvt-experience {
    position: relative;
    padding: 115px 0 105px;
    overflow: hidden;
    color: var(--gvt-white);
    background:
        linear-gradient(180deg,
            #071722 0%,
            #081b29 48%,
            #061522 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
}

.gvt-experience__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.05;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
    background-size: 72px 72px;
}

.gvt-experience__glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
}

.gvt-experience__glow--left {
    top: 120px;
    left: -230px;
    width: 430px;
    height: 430px;
    background: rgba(0, 198, 215, 0.08);
}

.gvt-experience__glow--right {
    right: -220px;
    bottom: -110px;
    width: 420px;
    height: 420px;
    background: rgba(0, 142, 214, 0.08);
}

.gvt-experience__header {
    margin-bottom: 52px;
}

.gvt-experience__title {
    max-width: 880px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.8px;
}

.gvt-experience__title span {
    display: block;
    color: transparent;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #bcefff 44%,
            #44cedd 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-experience__intro {
    max-width: 450px;
    margin: 0 0 8px auto;
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.75;
}

.gvt-experience__main {
    row-gap: 34px;
}

.gvt-experience-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

.gvt-experience-media__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 590px;
    object-fit: cover;
    object-position: center center;
}

.gvt-experience-media__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(4, 17, 27, 0.05) 0%,
            rgba(4, 17, 27, 0.18) 48%,
            rgba(4, 17, 27, 0.65) 100%);
}

.gvt-experience-media__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #dffcff;
    border: 1px solid rgba(0, 198, 215, 0.36);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.gvt-experience-media__badge-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 12px rgba(0, 198, 215, 0.8);
}

.gvt-experience-media__caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    padding: 18px 19px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(4, 17, 27, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.gvt-experience-media__caption strong,
.gvt-experience-media__caption span {
    display: block;
}

.gvt-experience-media__caption strong {
    margin-bottom: 5px;
    color: var(--gvt-white);
    font-size: 17px;
    font-weight: 600;
}

.gvt-experience-media__caption span {
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.6;
}

.gvt-experience-panel {
    padding-left: 10px;
}

.gvt-experience-panel__title {
    margin: 0 0 14px;
    color: var(--gvt-white);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.7px;
}

.gvt-experience-panel__text {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 15px;
    line-height: 1.72;
}

.gvt-process {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.gvt-process-step {
    position: relative;
    padding: 20px 20px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.02));
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.gvt-process-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 198, 215, 0.28);
    background:
        linear-gradient(145deg,
            rgba(0, 198, 215, 0.06),
            rgba(255, 255, 255, 0.02));
}

.gvt-process-step__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.gvt-process-step__number {
    color: rgba(255, 255, 255, 0.34);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.gvt-process-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.26);
    border-radius: 9px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 15px;
}

.gvt-process-step h4 {
    margin: 0 0 10px;
    color: var(--gvt-white);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.gvt-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
}

.gvt-experience-panel__highlights {
    display: grid;
    gap: 11px;
}

.gvt-experience-chip {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.gvt-experience-chip i {
    margin-top: 2px;
    color: var(--gvt-cyan);
    font-size: 14px;
}

.gvt-experience-chip span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.6;
}

/* GVT EXPERIENCE — Large */

@media (max-width: 1199px) {
    .gvt-experience-media__img {
        min-height: 500px;
    }

    .gvt-experience-panel {
        padding-left: 0;
    }
}

/* GVT EXPERIENCE — Tablet */

@media (max-width: 991px) {
    .gvt-experience {
        padding: 88px 0 80px;
    }

    .gvt-experience__header {
        margin-bottom: 38px;
    }

    .gvt-experience__intro {
        max-width: 700px;
        margin: 24px 0 0;
    }

    .gvt-experience-media__img {
        min-height: 440px;
    }

    .gvt-experience-panel__title {
        font-size: 25px;
    }
}

/* GVT EXPERIENCE — Mobile */

@media (max-width: 767px) {
    .gvt-experience {
        padding: 72px 0 62px;
    }

    .gvt-experience__grid {
        background-size: 48px 48px;
    }

    .gvt-experience__title {
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .gvt-experience__intro {
        margin-top: 21px;
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-experience-media {
        border-radius: 12px;
    }

    .gvt-experience-media__img {
        min-height: 320px;
    }

    .gvt-experience-media__badge {
        top: 14px;
        left: 14px;
        padding: 8px 11px;
        font-size: 9px;
    }

    .gvt-experience-media__caption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 14px;
    }

    .gvt-experience-media__caption strong {
        font-size: 15px;
    }

    .gvt-experience-media__caption span {
        font-size: 12px;
        line-height: 1.55;
    }

    .gvt-experience-panel__title {
        font-size: 22px;
    }

    .gvt-experience-panel__text {
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.68;
    }

    .gvt-process {
        gap: 12px;
        margin-bottom: 18px;
    }

    .gvt-process-step {
        padding: 17px 16px;
    }

    .gvt-process-step__head {
        margin-bottom: 12px;
    }

    .gvt-process-step h4 {
        font-size: 18px;
    }

    .gvt-process-step p,
    .gvt-experience-chip span {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gvt-process-step {
        transition: none;
    }
}



/* =========================================================
   GVT OUTCOMES SECTION
========================================================= */

.gvt-outcomes {
    position: relative;
    padding: 88px 0 76px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg,
            #071722 0%,
            #081b29 50%,
            #061522 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
}

.gvt-outcomes__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-outcomes__glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
}

.gvt-outcomes__glow--left {
    top: 80px;
    left: -240px;
    width: 430px;
    height: 430px;
    background: rgba(0, 198, 215, 0.08);
}

.gvt-outcomes__glow--right {
    right: -220px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    background: rgba(0, 142, 214, 0.075);
}

.gvt-outcomes__header {
    margin-bottom: 34px;
}

.gvt-outcomes__title {
    max-width: 870px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(39px, 4.2vw, 59px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.7px;
}

.gvt-outcomes__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bdefff 46%,
            #45d0df 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-outcomes__intro {
    max-width: 445px;
    margin: 0 0 5px auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.72;
}

.gvt-outcomes__flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
}

.gvt-outcome-card {
    position: relative;
    min-height: 235px;
    padding: 21px 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 10px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.016));
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.gvt-outcome-card::after {
    content: "";
    position: absolute;
    right: -65px;
    bottom: -75px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.04);
    filter: blur(8px);
}

.gvt-outcome-card:hover {
    border-color: rgba(0, 198, 215, 0.29);
    background:
        linear-gradient(145deg,
            rgba(0, 198, 215, 0.06),
            rgba(255, 255, 255, 0.02));
    transform: translateY(-4px);
}

.gvt-outcome-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.gvt-outcome-card__number {
    color: rgba(255, 255, 255, 0.29);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.gvt-outcome-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.27);
    border-radius: 9px;
    background: rgba(0, 198, 215, 0.075);
    font-size: 14px;
}

.gvt-outcome-card h3 {
    position: relative;
    z-index: 2;
    min-height: 47px;
    margin: 0 0 12px;
    color: var(--gvt-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.15px;
}

.gvt-outcome-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 12px;
    line-height: 1.68;
}

.gvt-outcomes__summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 17px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 198, 215, 0.22);
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            rgba(0, 198, 215, 0.075),
            rgba(255, 255, 255, 0.02));
}

.gvt-outcomes__summary-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.27);
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.075);
    font-size: 14px;
}

.gvt-outcomes__summary small,
.gvt-outcomes__summary strong {
    display: block;
}

.gvt-outcomes__summary small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gvt-outcomes__summary strong {
    color: var(--gvt-white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}

.gvt-outcomes__note {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 10px;
    line-height: 1.6;
}

.gvt-outcomes__note i {
    margin-right: 6px;
    color: var(--gvt-cyan);
}

/* Tablet */

@media (max-width: 1199px) {
    .gvt-outcomes__flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gvt-outcome-card {
        min-height: 210px;
    }

    .gvt-outcome-card h3 {
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .gvt-outcomes {
        padding: 72px 0 66px;
    }

    .gvt-outcomes__header {
        margin-bottom: 29px;
    }

    .gvt-outcomes__intro {
        max-width: 700px;
        margin: 21px 0 0;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .gvt-outcomes {
        padding: 62px 0 56px;
    }

    .gvt-outcomes__grid {
        background-size: 48px 48px;
    }

    .gvt-outcomes__title {
        font-size: 37px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .gvt-outcomes__intro {
        font-size: 13px;
        line-height: 1.67;
    }

    .gvt-outcomes__flow {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gvt-outcome-card {
        min-height: auto;
        padding: 18px 17px;
    }

    .gvt-outcome-card__top {
        margin-bottom: 17px;
    }

    .gvt-outcome-card h3 {
        margin-bottom: 9px;
        font-size: 15px;
    }

    .gvt-outcome-card p {
        font-size: 12px;
        line-height: 1.65;
    }

    .gvt-outcomes__summary {
        align-items: flex-start;
        padding: 17px 15px;
    }

    .gvt-outcomes__summary strong {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gvt-outcome-card {
        transition: none;
    }
}

/* =========================================================
   GVT REGISTRATION SECTION
========================================================= */

.gvt-register {
    position: relative;
    padding: 92px 0 72px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 78% 34%,
            rgba(0, 198, 215, 0.11),
            transparent 34%),
        linear-gradient(135deg,
            #061522 0%,
            #082333 54%,
            #061522 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
}

.gvt-register__grid {
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: 0.055;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-register__glow {
    position: absolute;
    z-index: -3;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(135px);
}

.gvt-register__glow--left {
    top: 50px;
    left: -240px;
    width: 440px;
    height: 440px;
    background: rgba(0, 198, 215, 0.10);
}

.gvt-register__glow--right {
    right: -180px;
    bottom: -190px;
    width: 430px;
    height: 430px;
    background: rgba(0, 142, 214, 0.10);
}

.gvt-register__watermark {
    position: absolute;
    right: -20px;
    bottom: -85px;
    z-index: -2;
    color: transparent;
    opacity: 0.055;
    pointer-events: none;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8);
    font-size: clamp(220px, 28vw, 460px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -25px;
    user-select: none;
}

.gvt-register__panel {
    position: relative;
    padding: 44px 46px;
    overflow: hidden;
    border: 1px solid rgba(0, 198, 215, 0.23);
    border-radius: 16px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018));
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gvt-register__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 46px;
    width: 115px;
    height: 2px;
    background:
        linear-gradient(90deg,
            var(--gvt-cyan),
            rgba(0, 198, 215, 0));
}

.gvt-register__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 13px;
    color: #dffcff;
    border: 1px solid rgba(0, 198, 215, 0.35);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.gvt-register__badge-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 12px rgba(0, 198, 215, 0.8);
}

.gvt-register__title {
    max-width: 760px;
    margin: 0 0 20px;
    color: var(--gvt-white);
    font-size: clamp(39px, 4.3vw, 61px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.9px;
}

.gvt-register__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bdefff 48%,
            #48d1df 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-register__description {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.76;
}

.gvt-register-card {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(3, 21, 32, 0.58);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.gvt-register-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.gvt-register-card__header small,
.gvt-register-card__header strong {
    display: block;
}

.gvt-register-card__header small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    line-height: 1.4;
}

.gvt-register-card__header strong {
    color: var(--gvt-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.gvt-register-card__status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    flex: 0 0 auto;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.25);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.07);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gvt-register-card__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-bottom: 19px;
}

.gvt-register-card__detail {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 62px;
    padding: 10px 11px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.025);
}

.gvt-register-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.25);
    border-radius: 8px;
    background: rgba(0, 198, 215, 0.07);
    font-size: 12px;
}

.gvt-register-card__detail small,
.gvt-register-card__detail strong {
    display: block;
}

.gvt-register-card__detail small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gvt-register-card__detail strong {
    color: var(--gvt-white);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.gvt-register-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 53px;
    padding: 13px 20px;
    color: #031821;
    border: 1px solid var(--gvt-cyan);
    border-radius: 7px;
    background:
        linear-gradient(135deg,
            #6ce6ef 0%,
            var(--gvt-cyan) 48%,
            #00a7cb 100%);
    box-shadow: 0 17px 38px rgba(0, 198, 215, 0.20);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gvt-register-card__button:hover {
    color: #031821;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 21px 44px rgba(0, 198, 215, 0.30);
}

.gvt-register-card__note {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.44);
    font-size: 9px;
    line-height: 1.6;
}

.gvt-register-card__note i {
    margin-right: 5px;
    color: var(--gvt-cyan);
}

.gvt-register__trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 17px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.018);
}

.gvt-register__trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 55px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    line-height: 1.4;
}

.gvt-register__trust-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gvt-register__trust-item i {
    color: var(--gvt-cyan);
    font-size: 11px;
}

/* Tablet */

@media (max-width: 991px) {
    .gvt-register {
        padding: 76px 0 64px;
    }

    .gvt-register__panel {
        padding: 35px 32px;
    }

    .gvt-register-card {
        margin-top: 34px;
    }

    .gvt-register__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gvt-register__trust-item:nth-child(2) {
        border-right: 0;
    }

    .gvt-register__trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Mobile */

@media (max-width: 767px) {
    .gvt-register {
        padding: 62px 0 52px;
    }

    .gvt-register__grid {
        background-size: 48px 48px;
    }

    .gvt-register__watermark {
        right: -15px;
        bottom: -25px;
        font-size: 185px;
        letter-spacing: -13px;
    }

    .gvt-register__panel {
        padding: 27px 18px;
        border-radius: 13px;
    }

    .gvt-register__panel::before {
        left: 19px;
        width: 80px;
    }

    .gvt-register__title {
        font-size: 36px;
        line-height: 1.05;
        letter-spacing: -2px;
    }

    .gvt-register__description {
        font-size: 13px;
        line-height: 1.68;
    }

    .gvt-register-card {
        margin-top: 29px;
        padding: 19px 16px;
    }

    .gvt-register-card__header {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .gvt-register-card__details {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gvt-register-card__detail {
        min-height: 57px;
    }

    .gvt-register-card__button {
        min-height: 51px;
        padding-right: 13px;
        padding-left: 13px;
        font-size: 10px;
    }

    .gvt-register__trust {
        grid-template-columns: 1fr;
    }

    .gvt-register__trust-item {
        justify-content: flex-start;
        min-height: 48px;
        padding-right: 17px;
        padding-left: 17px;
    }

    .gvt-register__trust-item:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gvt-register-card__button {
        transition: none;
    }
}

/* =========================================================
   GVT MASTER CLASS LEGACY
========================================================= */

.gvt-legacy {
    position: relative;
    padding: 88px 0 78px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg,
            #061522 0%,
            #081a27 52%,
            #071722 100%);
    isolation: isolate;
    scroll-margin-top: 90px;
}

.gvt-legacy__grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-legacy__glow {
    position: absolute;
    right: -210px;
    bottom: -170px;
    z-index: -2;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 198, 215, 0.075);
    filter: blur(140px);
}

.gvt-legacy__header {
    margin-bottom: 34px;
}

.gvt-legacy__title {
    max-width: 850px;
    margin: 0;
    color: var(--gvt-white);
    font-size: clamp(39px, 4.2vw, 59px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -2.7px;
}

.gvt-legacy__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #bdefff 46%,
            #45d0df 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.gvt-legacy__intro {
    max-width: 440px;
    margin: 0 0 5px auto;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.72;
}

.gvt-legacy__timeline {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 82px minmax(0, 1fr);
    align-items: stretch;
}

.gvt-legacy-card {
    display: grid;
    grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1.18fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.105);
    border-radius: 12px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.052),
            rgba(255, 255, 255, 0.016));
    box-shadow: 0 23px 52px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.27s ease,
        border-color 0.27s ease;
}

.gvt-legacy-card:hover {
    border-color: rgba(0, 198, 215, 0.29);
    transform: translateY(-4px);
}

.gvt-legacy-card__media {
    position: relative;
    display: block;
    min-height: 285px;
    overflow: hidden;
}

.gvt-legacy-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.gvt-legacy-card:hover .gvt-legacy-card__image {
    transform: scale(1.045);
}

.gvt-legacy-card__media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(4, 18, 28, 0.04),
            rgba(4, 18, 28, 0.28) 55%,
            rgba(4, 18, 28, 0.76) 100%);
}

.gvt-legacy-card__year {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    color: var(--gvt-white);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    background: rgba(3, 20, 31, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.gvt-legacy-card__status {
    position: absolute;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 11px;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(3, 20, 31, 0.52);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.gvt-legacy-card__status i {
    color: var(--gvt-cyan);
}

.gvt-legacy-card__content {
    display: flex;
    flex-direction: column;
    padding: 23px 22px 21px;
}

.gvt-legacy-card__eyebrow {
    margin-bottom: 10px;
    color: var(--gvt-cyan);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.15px;
    text-transform: uppercase;
}

.gvt-legacy-card h3 {
    margin: 0 0 13px;
    color: var(--gvt-white);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.25px;
}

.gvt-legacy-card p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.59);
    font-size: 11px;
    line-height: 1.68;
}

.gvt-legacy-card__meta {
    display: grid;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 17px;
}

.gvt-legacy-card__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
    line-height: 1.4;
}

.gvt-legacy-card__meta i {
    width: 13px;
    color: var(--gvt-cyan);
    text-align: center;
}

.gvt-legacy-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--gvt-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    text-transform: uppercase;
}

.gvt-legacy-card__link i {
    color: var(--gvt-cyan);
    transition: transform 0.25s ease;
}

.gvt-legacy-card__link:hover {
    color: var(--gvt-cyan);
    text-decoration: none;
}

.gvt-legacy-card__link:hover i {
    transform: translateX(4px);
}

.gvt-legacy__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gvt-legacy__connector-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 13px rgba(0, 198, 215, 0.58);
}

.gvt-legacy__connector-line {
    width: 1px;
    height: 64px;
    background:
        linear-gradient(180deg,
            rgba(0, 198, 215, 0.65),
            rgba(0, 198, 215, 0.08));
}

.gvt-legacy__connector-mark {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.40);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.gvt-legacy__next {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    margin-top: 17px;
    padding: 17px 19px;
    border: 1px solid rgba(0, 198, 215, 0.22);
    border-radius: 10px;
    background:
        linear-gradient(90deg,
            rgba(0, 198, 215, 0.075),
            rgba(255, 255, 255, 0.02));
}

.gvt-legacy__next-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.26);
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.07);
    font-size: 11px;
    font-weight: 700;
}

.gvt-legacy__next-copy small,
.gvt-legacy__next-copy strong {
    display: block;
}

.gvt-legacy__next-copy small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.75px;
    text-transform: uppercase;
}

.gvt-legacy__next-copy strong {
    color: var(--gvt-white);
    font-size: 14px;
    font-weight: 600;
}

.gvt-legacy__next-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gvt-legacy__next-meta span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.gvt-legacy__next-meta span+span {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.gvt-legacy__next-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    padding: 9px 14px;
    color: #031821;
    border: 1px solid var(--gvt-cyan);
    border-radius: 7px;
    background:
        linear-gradient(135deg,
            #69e5ef,
            var(--gvt-cyan));
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-decoration: none;
    text-transform: uppercase;
}

.gvt-legacy__next-link:hover {
    color: #031821;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Medium desktop */

@media (max-width: 1199px) {
    .gvt-legacy__timeline {
        grid-template-columns: 1fr 55px 1fr;
    }

    .gvt-legacy-card {
        grid-template-columns: 1fr;
    }

    .gvt-legacy-card__media {
        min-height: 230px;
    }
}

/* Tablet */

@media (max-width: 991px) {
    .gvt-legacy {
        padding: 72px 0 66px;
    }

    .gvt-legacy__intro {
        max-width: 700px;
        margin: 21px 0 0;
    }

    .gvt-legacy__timeline {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gvt-legacy__connector {
        display: none;
    }

    .gvt-legacy-card {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    }

    .gvt-legacy__next {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .gvt-legacy__next-meta {
        display: none;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .gvt-legacy {
        padding: 62px 0 56px;
    }

    .gvt-legacy__grid {
        background-size: 48px 48px;
    }

    .gvt-legacy__title {
        font-size: 37px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .gvt-legacy__intro {
        font-size: 13px;
        line-height: 1.67;
    }

    .gvt-legacy-card {
        grid-template-columns: 1fr;
    }

    .gvt-legacy-card__media {
        min-height: 215px;
    }

    .gvt-legacy-card__content {
        padding: 20px 17px;
    }

    .gvt-legacy-card h3 {
        font-size: 17px;
    }

    .gvt-legacy__next {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 13px;
        padding: 16px 15px;
    }

    .gvt-legacy__next-link {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .gvt-legacy-card,
    .gvt-legacy-card__image,
    .gvt-legacy-card__link i,
    .gvt-legacy__next-link {
        transition: none;
    }
}

/* =========================================================
   HERO → ABOUT SECTION TRANSITION
========================================================= */

.gvt-transition {
    position: relative;
    height: 190px;
    overflow: hidden;
    color: var(--gvt-white);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 74% 50%,
            rgba(0, 198, 215, 0.08),
            transparent 32%),
        linear-gradient(90deg,
            #061522 0%,
            #081b29 50%,
            #061522 100%);
    isolation: isolate;
}

.gvt-transition__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.045;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.11) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.11) 1px,
            transparent 1px);
    background-size: 72px 72px;
}

.gvt-transition__container {
    position: relative;
    height: 100%;
}

.gvt-transition__step {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.gvt-transition__line {
    width: 34px;
    height: 1px;
    background:
        linear-gradient(90deg,
            rgba(0, 198, 215, 0.75),
            rgba(0, 198, 215, 0.08));
}

.gvt-transition__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    width: 100%;
    color: transparent;
    pointer-events: none;
    transform: translate(-50%, -47%);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.10);
    font-size: clamp(90px, 11vw, 158px);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: -7px;
    white-space: nowrap;
    user-select: none;
}

.gvt-transition__watermark i {
    color: rgba(0, 198, 215, 0.18);
    -webkit-text-stroke: 0;
    font-size: 37px;
    letter-spacing: normal;
}

.gvt-transition__wave {
    position: absolute;
    right: 15px;
    bottom: 29px;
    z-index: 3;
    width: 240px;
    height: 34px;
}

.gvt-transition__wave-line {
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;
    height: 1px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(0, 198, 215, 0.48) 18%,
            rgba(0, 198, 215, 0.85) 50%,
            rgba(0, 198, 215, 0.10));
}

.gvt-transition__point {
    position: absolute;
    top: 12px;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(0, 198, 215, 0.66);
    border-radius: 50%;
    background: #071a27;
    box-shadow: 0 0 12px rgba(0, 198, 215, 0.35);
}

.gvt-transition__point--1 {
    left: 18%;
}

.gvt-transition__point--2 {
    left: 50%;
}

.gvt-transition__point--3 {
    right: 10%;
}

/* Tablet */

@media (max-width: 991px) {
    .gvt-transition {
        height: 155px;
    }

    .gvt-transition__watermark {
        gap: 23px;
        font-size: clamp(72px, 13vw, 112px);
    }

    .gvt-transition__watermark i {
        font-size: 27px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .gvt-transition {
        height: 128px;
    }

    .gvt-transition__grid {
        background-size: 48px 48px;
    }

    .gvt-transition__process {
        top: 18px;
        gap: 7px;
    }

    .gvt-transition__step {
        font-size: 7px;
        letter-spacing: 0.85px;
    }

    .gvt-transition__line {
        width: 16px;
    }

    .gvt-transition__watermark {
        top: 58%;
        gap: 14px;
        font-size: clamp(49px, 17vw, 67px);
        letter-spacing: -4px;
    }

    .gvt-transition__watermark i {
        font-size: 18px;
    }

    .gvt-transition__wave {
        display: none;
    }
}

/* =========================================================
   GVT HERO VIDEO BACKGROUND
========================================================= */

/*
 * Sabit görsel videonun arkasında kalır.
 * Video yüklenemezse otomatik olarak görünür.
 */
.gvt-hero__image {
    z-index: -6;
}

/* Masaüstü video arka planı */
.gvt-hero__video {
    position: absolute;
    inset: 0;
    z-index: -5;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

/*
 * Video farklı oranlarda hazırlanmışsa buradaki
 * object-position değeriyle kadrajı ayarlayabilirsiniz.
 */
@media (min-width: 992px) {
    .gvt-hero__video {
        object-position: 58% center;
    }
}

/* Tablet kadrajı */
@media (min-width: 768px) and (max-width: 991px) {
    .gvt-hero__video {
        object-position: 60% center;
    }
}

/*
 * Mobilde video kapatılır.
 * Arka planda mevcut hero görseli görünmeye devam eder.
 */
@media (max-width: 767px) {
    .gvt-hero__video {
        display: none;
    }

    .gvt-hero__image {
        z-index: -5;
    }
}

/* Hareket azaltma tercihi olan kullanıcılarda video gizlenir */
@media (prefers-reduced-motion: reduce) {
    .gvt-hero__video {
        display: none;
    }

    .gvt-hero__image {
        z-index: -5;
    }
}

/* =========================================================
   GVT TRAINING CALENDAR
========================================================= */

.gvt-calendar__layout {
    row-gap: 28px;
}

.gvt-calendar__layout > div {
    display: flex;
}

/* VISUAL COLLAGE */

.gvt-calendar-visuals {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.gvt-calendar-visuals__main {
    position: relative;
    min-height: 440px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}

.gvt-calendar-visuals__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.65s ease;
}

.gvt-calendar-visuals__main:hover .gvt-calendar-visuals__image {
    transform: scale(1.035);
}

.gvt-calendar-visuals__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(3, 18, 28, 0.05) 0%,
            rgba(3, 18, 28, 0.12) 45%,
            rgba(3, 18, 28, 0.76) 100%
        );
}

.gvt-calendar-visuals__badge {
    position: absolute;
    top: 19px;
    left: 19px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 198, 215, 0.35);
    border-radius: 999px;
    background: rgba(3, 21, 32, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gvt-calendar-visuals__badge span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 11px rgba(0, 198, 215, 0.75);
}

.gvt-calendar-visuals__caption {
    position: absolute;
    right: 19px;
    bottom: 19px;
    left: 19px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(3, 20, 31, 0.53);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

.gvt-calendar-visuals__caption strong,
.gvt-calendar-visuals__caption span {
    display: block;
}

.gvt-calendar-visuals__caption strong {
    margin-bottom: 5px;
    color: var(--gvt-white);
    font-size: 16px;
    font-weight: 600;
}

.gvt-calendar-visuals__caption span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    line-height: 1.55;
}

.gvt-calendar-visuals__lower {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
    gap: 15px;
}

.gvt-calendar-visuals__secondary {
    position: relative;
    min-height: 175px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
}

.gvt-calendar-visuals__secondary img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    transition: transform 0.55s ease;
}

.gvt-calendar-visuals__secondary:hover img {
    transform: scale(1.045);
}

.gvt-calendar-visuals__secondary-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(3, 18, 28, 0.08),
            rgba(3, 18, 28, 0.73)
        );
}

.gvt-calendar-visuals__secondary figcaption {
    position: absolute;
    right: 16px;
    bottom: 15px;
    left: 16px;
}

.gvt-calendar-visuals__secondary small,
.gvt-calendar-visuals__secondary strong {
    display: block;
}

.gvt-calendar-visuals__secondary small {
    margin-bottom: 4px;
    color: var(--gvt-cyan);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gvt-calendar-visuals__secondary strong {
    color: var(--gvt-white);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.gvt-calendar-visuals__fact {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 175px;
    padding: 19px;
    border: 1px solid rgba(0, 198, 215, 0.22);
    border-radius: 11px;
    background:
        linear-gradient(
            145deg,
            rgba(0, 198, 215, 0.075),
            rgba(255, 255, 255, 0.018)
        );
}

.gvt-calendar-visuals__fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.28);
    border-radius: 10px;
    background: rgba(0, 198, 215, 0.08);
    font-size: 15px;
}

.gvt-calendar-visuals__fact small,
.gvt-calendar-visuals__fact strong,
.gvt-calendar-visuals__fact div > span {
    display: block;
}

.gvt-calendar-visuals__fact small {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gvt-calendar-visuals__fact strong {
    margin-bottom: 6px;
    color: var(--gvt-white);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.gvt-calendar-visuals__fact div > span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

/* CALENDAR PANEL */

.gvt-calendar-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 27px 25px;
    border: 1px solid rgba(255, 255, 255, 0.115);
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.017)
        );
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.13);
}

.gvt-calendar-panel__status {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-bottom: 19px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 198, 215, 0.25);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.06);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.gvt-calendar-panel__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gvt-cyan);
    box-shadow: 0 0 11px rgba(0, 198, 215, 0.7);
    animation: gvtCalendarPulse 2s infinite;
}

.gvt-calendar-panel h3 {
    margin: 0 0 13px;
    color: var(--gvt-white);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.23;
    letter-spacing: -0.65px;
}

.gvt-calendar-panel h3 span {
    display: block;
    color: #aeeaf3;
}

.gvt-calendar-panel__description {
    margin: 0 0 21px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.7;
}

.gvt-calendar-days {
    display: grid;
    gap: 9px;
    margin-bottom: 21px;
}

.gvt-calendar-day {
    display: grid;
    grid-template-columns: 51px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 69px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.022);
}

.gvt-calendar-day__date {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 51px;
    height: 49px;
    border: 1px solid rgba(0, 198, 215, 0.24);
    border-radius: 8px;
    background: rgba(0, 198, 215, 0.065);
}

.gvt-calendar-day__date strong {
    color: var(--gvt-white);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.gvt-calendar-day__date span {
    margin-top: 4px;
    color: var(--gvt-cyan);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gvt-calendar-day__copy small,
.gvt-calendar-day__copy strong {
    display: block;
}

.gvt-calendar-day__copy small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gvt-calendar-day__copy strong {
    color: rgba(255, 255, 255, 0.79);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.gvt-calendar-day__status {
    padding: 6px 8px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.20);
    border-radius: 999px;
    background: rgba(0, 198, 215, 0.055);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.gvt-calendar-panel__themes {
    margin-bottom: 19px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.gvt-calendar-panel__themes > small {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.gvt-calendar-panel__theme-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gvt-calendar-panel__theme-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.022);
    font-size: 9px;
    line-height: 1.4;
}

.gvt-calendar-panel__theme-list i {
    color: var(--gvt-cyan);
    font-size: 10px;
}

.gvt-calendar-panel__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 15px;
    padding: 13px;
    border: 1px solid rgba(0, 198, 215, 0.19);
    border-radius: 9px;
    background: rgba(0, 198, 215, 0.05);
}

.gvt-calendar-panel__notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--gvt-cyan);
    border: 1px solid rgba(0, 198, 215, 0.22);
    border-radius: 50%;
    background: rgba(0, 198, 215, 0.07);
    font-size: 11px;
}

.gvt-calendar-panel__notice p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    line-height: 1.6;
}

.gvt-calendar-panel__notice strong {
    color: var(--gvt-white);
    font-weight: 600;
}

.gvt-calendar-panel__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 49px;
    padding: 12px 18px;
    color: #031821;
    border: 1px solid var(--gvt-cyan);
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            #69e5ef 0%,
            var(--gvt-cyan) 50%,
            #00a7cb 100%
        );
    box-shadow: 0 15px 35px rgba(0, 198, 215, 0.18);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gvt-calendar-panel__button:hover {
    color: #031821;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 19px 42px rgba(0, 198, 215, 0.28);
}

@keyframes gvtCalendarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 198, 215, 0.40);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(0, 198, 215, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 198, 215, 0);
    }
}

/* TABLET */

@media (max-width: 1199px) {
    .gvt-calendar-visuals__main {
        min-height: 500px;
    }

    .gvt-calendar-panel {
        margin-top: 0;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .gvt-calendar-visuals {
        gap: 11px;
    }

    .gvt-calendar-visuals__main {
        min-height: 325px;
        border-radius: 11px;
    }

    .gvt-calendar-visuals__badge {
        top: 13px;
        left: 13px;
        padding: 7px 10px;
        font-size: 8px;
    }

    .gvt-calendar-visuals__caption {
        right: 13px;
        bottom: 13px;
        left: 13px;
        padding: 13px;
    }

    .gvt-calendar-visuals__caption strong {
        font-size: 14px;
    }

    .gvt-calendar-visuals__caption span {
        font-size: 11px;
    }

    .gvt-calendar-visuals__lower {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .gvt-calendar-visuals__secondary,
    .gvt-calendar-visuals__fact {
        min-height: 145px;
    }

    .gvt-calendar-visuals__fact {
        padding: 16px;
    }

    .gvt-calendar-panel {
        padding: 21px 17px;
        border-radius: 11px;
    }

    .gvt-calendar-panel h3 {
        font-size: 23px;
    }

    .gvt-calendar-panel__description {
        font-size: 12px;
    }

    .gvt-calendar-day {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 11px;
    }

    .gvt-calendar-day__date {
        width: 48px;
        height: 47px;
    }

    .gvt-calendar-day__status {
        display: none;
    }

    .gvt-calendar-panel__theme-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .gvt-calendar-panel__theme-list span {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gvt-calendar-visuals__image,
    .gvt-calendar-visuals__secondary img,
    .gvt-calendar-panel__button {
        transition: none;
    }

    .gvt-calendar-panel__status-dot {
        animation: none;
    }
}