﻿@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Medium.ttf") format("truetype");   
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sen';
    src: url("../assets/font/Sen-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
    height: 100%;
    background: #00123A;
    color: #ffffff;
    overflow-x: hidden;
}

h1 {
    font-family: 'Sen', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
}

h3 {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
}

h4 {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
}

h5,
h6 {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
}

span {
    font-family: 'Sen', sans-serif;
}

a {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
}

li {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
}

label {
    font-family: 'Sen', sans-serif;
    font-weight: 500;
}

input,
textarea,
select {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
}

button {
    font-family: 'Sen', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

strong,
b {
    font-family: 'Sen', sans-serif;
    font-weight: 700;
}

small {
    font-family: 'Sen', sans-serif;
    font-weight: 400;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(-1%, -0.8%);
    }

    100% {
        transform: scale(1.0) translate(0, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    80% {
        transform: scale(1.65);
        opacity: 0;
    }

    100% {
        transform: scale(1.65);
        opacity: 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -250% center;
    }

    100% {
        background-position: 250% center;
    }
}


.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    overflow: hidden;
}

.hero-bg.no-image {
    background-image: radial-gradient(ellipse 120% 80% at 50% 0%, #001a4d 0%, #0050ff 45%, #00123A 100%);
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-bg.no-image::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
    z-index: 0;
    transform-origin: center center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    animation: kenBurns 20s ease-in-out infinite;
    opacity: 0.3 !important;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 768px) {
    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
    }
}

.hero-title,
.hero-sub,
.hero-btns,
.hero-divider,
.hero-badges {
    opacity: 0;
    transform: translateY(30px);
}

.hero-title.is-visible {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.10s both;
}

.hero-sub.is-visible {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.hero-btns.is-visible {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.hero-divider.is-visible {
    animation: fadeUp 6s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.hero-badges.is-visible {
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both;
}

.hero-title {
    font-family: 'Sen', sans-serif;
    font-size: clamp(20px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.hero-sub {
    font-family: 'Sen', sans-serif;
    font-size: clamp(12px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 1.65;
    color: #ffffff;
    max-width: 580px;
    margin-bottom: 42px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.btn-primary {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #0050FF;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #0050FF;
    position: relative;
    overflow: hidden;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: pointer;
}

.btn-primary:hover {
    background: #003db8;
    border-color: #0050FF;
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px rgba(0, 80, 255, 0.4),
        0 0 20px 4px rgba(0, 80, 255, 0.35),
        0 8px 24px rgba(0, 80, 255, 0.3);
}

.btn-secondary {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.55);
    transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.15),
        0 0 18px 3px rgba(255, 255, 255, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-divider {
    width: 100%;
    max-width: 680px;
    height: 1px;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #ffffff);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.badge-item {
    font-family: 'Sen', sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.88);
}

.badge-icon {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    animation: float 4s ease-in-out infinite;
}

.badge-item:nth-child(1) .badge-icon {
    animation-delay: 0s;
}

.badge-item:nth-child(2) .badge-icon {
    animation-delay: 0.6s;
}

.badge-item:nth-child(3) .badge-icon {
    animation-delay: 1.2s;
}

.badge-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    animation: pulseRing 3s ease-out infinite;
}

.badge-item:nth-child(1) .badge-icon::before {
    animation-delay: 0s;
}

.badge-item:nth-child(2) .badge-icon::before {
    animation-delay: 1s;
}

.badge-item:nth-child(3) .badge-icon::before {
    animation-delay: 2s;
}

.badge-icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    animation: float 4s ease-in-out infinite reverse;
}

.badge-item:nth-child(1) .badge-icon img {
    animation-delay: 0s;
}

.badge-item:nth-child(2) .badge-icon img {
    animation-delay: 0.6s;
}

.badge-item:nth-child(3) .badge-icon img {
    animation-delay: 1.2s;
}


.wwd-section {
    background: #f5f7fa;
    padding: 90px 24px 100px;
    width: 100%;
}

.wwd-header {
    text-align: center;
    margin-bottom: 56px;
}

.wwd-eyebrow {
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0050FF;
    margin-bottom: 14px;
    display: block;
}

.wwd-title {
    font-family: 'Sen', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #00123A;
    line-height: 1.15;
    margin-bottom: 16px;
}

.wwd-sub {
    font-family: 'Sen', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6D6D6D;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1140px;
    margin: 0 auto;
}

.wwd-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 32px 32px;
    box-shadow: 0 2px 12px rgba(0, 18, 58, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.wwd-card:hover {
    box-shadow:
        0 12px 40px rgba(0, 80, 255, 0.13),
        0 0 0 1px rgba(0, 80, 255, 0.15),
        0 0 40px 6px rgba(0, 80, 255, 0.10);
    transform: translateY(-4px);
}

.wwd-icon-box {
    width: 40px;
    height: 40px;
    background: #0050FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.wwd-card:hover .wwd-icon-box {
    background: #003db8;
}

.wwd-icon-box img {
    width: 46px;
    height: 46px;
}

.wwd-card-title {
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00123A;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: transform 0.22s ease, color 0.22s ease;
}

.wwd-card-desc {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6d6d6d;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.22s ease;
}

.wwd-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.35s ease, opacity 0.30s ease, transform 0.30s ease;
}

.wwd-card:hover .wwd-checklist {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

.wwd-checklist li {
    font-family: 'Sen', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #00123A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wwd-checklist li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230050FF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 960px) {
    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .wwd-grid {
        grid-template-columns: 1fr;
    }

    .wwd-section {
        padding: 60px 16px 70px;
    }

    .wwd-card {
        padding: 28px 24px 24px;
    }
}


@keyframes wwdFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wwdIconPop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    70% {
        transform: scale(1.12);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes wwdLineDraw {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.wwd-header,
.wwd-section .wwd-card {
    opacity: 0;
    transform: translateY(30px);
}

.wwd-header.is-visible {
    animation: wwdFadeUp 0.6s ease forwards;
}

.wwd-card.is-visible {
    animation: wwdFadeUp 0.55s ease forwards;
    animation-delay: calc(var(--i, 0) * 80ms);
}

.wwd-card.is-visible .wwd-icon-box {
    animation: wwdIconPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: calc(var(--i, 0) * 80ms + 150ms);
}

.wwd-card .wwd-icon-box {
    opacity: 0;
}

.wwd-card:hover .wwd-card-title {
    transform: translateX(2px);
    color: #0050FF;
}

.wwd-card:hover .wwd-card-desc {
    color: #00123A;
}

.wwd-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: #0050FF;
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wwd-card:hover::before {
    transform: scaleY(1);
}


@keyframes whyFadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes whyLineDraw {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes whySlideLeft {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes whySlideRight {
    from {
        opacity: 0;
        transform: translateX(56px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes whyCheckPop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes whyBoxTL {
    from {
        opacity: 0;
        transform: translate(-30px, -30px) rotate(-3deg);
    }

    to {
        opacity: 1;
        transform: translate(0, 0) rotate(-3deg);
    }
}

@keyframes whyBoxMR {
    from {
        opacity: 0;
        transform: translate(30px, 0px) rotate(2deg);
    }

    to {
        opacity: 1;
        transform: translate(0, 0) rotate(2deg);
    }
}

@keyframes whyBoxBL {
    from {
        opacity: 0;
        transform: translate(-30px, 30px) rotate(-2deg);
    }

    to {
        opacity: 1;
        transform: translate(0, 0) rotate(-2deg);
    }
}

@keyframes whyFloat1 {

    0%,
    100% {
        transform: rotate(-3deg) translateY(0px);
    }

    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

@keyframes whyFloat2 {

    0%,
    100% {
        transform: rotate(2deg) translateY(0px);
    }

    50% {
        transform: rotate(2deg) translateY(8px);
    }
}

@keyframes whyFloat3 {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0px);
    }

    50% {
        transform: rotate(-2deg) translateY(-7px);
    }
}

@keyframes whyBlobPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.1) rotate(15deg);
        opacity: 0.7;
    }
}

@keyframes whyImgFadeIn {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes whyBadgeBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    70% {
        transform: scale(1.12) translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

[data-why-anim] {
    opacity: 0;
}

[data-why-anim="eyebrow"].why-animated {
    opacity: 1;
    animation: whyFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-why-anim="title"].why-animated {
    opacity: 1;
    animation: whySlideLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

[data-why-anim="fade-up"].why-animated {
    opacity: 1;
    animation: whyFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

[data-why-anim="item"].why-animated {
    opacity: 1;
    animation: whyFadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-why-anim="slider"].why-animated {
    opacity: 1;
    animation: whySlideRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.why-section {
    background: linear-gradient(180deg, #0050FF, #00123A);
    padding: 100px 0;
    font-family: 'Sen', sans-serif;
    overflow: hidden;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-left {
    flex: 1 1 48%;
    max-width: 520px;
}

.why-eyebrow {
    display: inline-block;
    position: relative;
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 5px;
}

.why-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: #ffffff;
    border-radius: 2px;
}

.why-eyebrow.why-animated::after {
    animation: whyLineDraw 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.why-title {
    font-family: 'Sen', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.18;
    margin: 0 0 26px;
    letter-spacing: -0.5px;
}

.why-desc {
    font-family: 'Sen', sans-serif;
    font-size: 15.5px;
    color: #dddddd;
    line-height: 1.75;
    margin: 0 0 38px;
    max-width: 490px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.25s ease;
}

.why-item:hover {
    transform: translateX(5px);
}

.why-check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #dddddd;
    color: #0050FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.why-item.why-animated .why-check {
    animation: whyCheckPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.why-item:hover .why-check {
    background: #000000;
    transform: scale(1.1);
}

.why-item:hover .why-check svg {
    stroke: #fff;
}

.why-check svg {
    transition: stroke 0.25s ease;
}

.why-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-item-text strong {
    font-family: 'Sen', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.why-item-text span {
    font-family: 'Sen', sans-serif;
    font-size: 14.5px;
    color: #dddddd;
    line-height: 1.6;
}

.why-right {
    flex: 1 1 48%;
    position: relative;
    height: 420px;
    min-width: 420px;
}

.why-blob {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #c7d2fe 0%, #e0e7ff 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: whyBlobPulse 7s ease-in-out infinite;
    pointer-events: none;
}

.why-box {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 18, 58, 0.18),
        0 2px 8px rgba(0, 18, 58, 0.10);
    z-index: 2;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.why-box:hover {
    box-shadow:
        0 18px 56px rgba(0, 80, 255, 0.22),
        0 4px 12px rgba(0, 18, 58, 0.14);
    z-index: 5;
}

.why-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.why-box-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.why-box-img.active {
    opacity: 1;
    animation: whyImgFadeIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.why-box-tag {  
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(0, 18, 58, 0.72);
    /* backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); */
    color: #fff;
    font-family: 'Sen', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    white-space: nowrap;
}

.why-box--tl {
    width: 230px;
    height: 165px;
    top: 10px;
    left: 0px;
    transform: rotate(0deg);
    opacity: 0;
}

[data-why-anim="slider"].why-animated~.why-box--tl,
.why-right.why-animated .why-box--tl {
    animation:
        whyBoxTL 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both,
        whyFloat1 6s ease-in-out 1.2s infinite;
}

.why-box--mr {
    width: 230px;
    height: 155px;
    top: 105px;
    right: 0px;
    transform: rotate(0deg);
    opacity: 0;
}

.why-right.why-animated .why-box--mr {
    animation:
        whyBoxMR 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both,
        whyFloat2 7s ease-in-out 1.5s infinite;
}

.why-box--bl {
    width: 230px;
    height: 165px;
    bottom: 10px;
    left: 20px;
    transform: rotate(0deg);
    opacity: 0;
}

.why-right.why-animated .why-box--bl {
    animation:
        whyBoxBL 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both,
        whyFloat3 5.5s ease-in-out 1.8s infinite;
}

.why-box--tl:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.why-box--mr:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.why-box--bl:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.why-right.why-animated .why-badge {
    animation: whyBadgeBounce 0.65s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

.why-badge-num {
    font-family: 'Sen', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.why-badge-label {
    font-family: 'Sen', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .why-right {
        min-width: 360px;
        height: 380px;
    }

    .why-box--tl {
        width: 185px;
        height: 135px;
    }

    .why-box--mr {
        width: 160px;
        height: 185px;
    }

    .why-box--bl {
        width: 195px;
        height: 130px;
    }
}

@media (max-width: 860px) {
    .why-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 30px;
    }

    .why-left {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .why-right {
        min-width: 100%;
        width: 100%;
        height: 380px;
    }

    .why-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .why-section {
        padding: 60px 0;
    }

    .why-container {
        padding: 0 20px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-right {
        height: 320px;
    }

    .why-box--tl {
        width: 150px;
        height: 112px;
        top: 5px;
        left: 0;
    }

    .why-box--mr {
        width: 138px;
        height: 160px;
        top: 80px;
        right: 0;
    }

    .why-box--bl {
        width: 160px;
        height: 110px;
        bottom: 5px;
        left: 10px;
    }

    .why-badge {
        width: 62px;
        height: 62px;
    }

    .why-badge-num {
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {

    [data-why-anim].why-animated,
    .why-right.why-animated .why-box--tl,
    .why-right.why-animated .why-box--mr,
    .why-right.why-animated .why-box--bl,
    .why-right.why-animated .why-badge,
    .why-eyebrow.why-animated::after,
    .why-item.why-animated .why-check,
    .why-blob {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        width: auto !important;
    }

    .why-box--tl {
        transform: rotate(-3deg);
    }

    .why-box--mr {
        transform: rotate(2deg);
    }

    .why-box--bl {
        transform: rotate(-2deg);
    }
}

@media (max-width: 1024px) and (min-width: 861px) {
    .why-container {
        gap: 40px;
        padding: 0 40px;
    }

    .why-right {
        min-width: 340px;
        height: 380px;
    }

    .why-box--tl {
        width: 185px;
        height: 135px;
    }

    .why-box--mr {
        width: 160px;
        height: 185px;
        top: 90px;
    }

    .why-box--bl {
        width: 195px;
        height: 130px;
    }

    .why-badge {
        width: 68px;
        height: 68px;
    }

    .why-badge-num {
        font-size: 19px;
    }
}

@media (max-width: 860px) {
    .why-section {
        padding: 60px 0;
    }

    .why-container {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .why-left {
        max-width: 100%;
        flex: 1 1 100%;
        margin-bottom: 48px;
    }

    .why-title {
        font-size: 30px !important;
    }

    .why-right {
        position: relative !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 60px 1fr;
        grid-template-rows: auto auto;
        gap: 16px;
        padding: 20px 0 20px;
    }

    .why-blob {
        display: none;
    }

    .why-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 160px !important;
        border-radius: 14px;
    }

    .why-box--tl,
    .why-box--mr,
    .why-box--bl {
        transform: none !important;
    }

    .why-box--tl {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .why-box--mr {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        height: 100% !important;
        min-height: 200px !important;
    }

    .why-box--bl {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .why-badge {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 58px;
        height: 58px;
        z-index: 10;
    }

    .why-badge-num {
        font-size: 16px;
    }

    .why-badge-label {
        font-size: 9px;
    }

    .why-box--tl:hover,
    .why-box--mr:hover,
    .why-box--bl:hover {
        transform: scale(1.02) !important;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 0 16px;
    }

    .why-title {
        font-size: 26px !important;
    }

    .why-right {
        grid-template-columns: 1fr 48px 1fr;
        gap: 12px;
    }

    .why-box {
        height: 130px !important;
    }

    .why-box--mr {
        min-height: 165px !important;
    }

    .why-badge {
        width: 50px;
        height: 50px;
    }

    .why-badge-num {
        font-size: 14px;
    }

    .why-badge-label {
        font-size: 8px;
    }

    .why-box-tag {
        font-size: 9px;
        padding: 3px 8px;
        bottom: 7px;
        left: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .why-blob,
    .why-box-img.active,
    [data-why-anim].why-animated,
    .why-right.why-animated .why-box--tl,
    .why-right.why-animated .why-box--mr,
    .why-right.why-animated .why-box--bl,
    .why-right.why-animated .why-badge {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 860px) {
    .why-section {
        padding: 60px 0;
    }

    .why-container {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .why-left {
        max-width: 100%;
        flex: 1 1 100%;
        margin-bottom: 40px;
    }

    .why-title {
        font-size: 30px !important;
    }

    .why-blob {
        display: none;
    }

    .why-right {
        position: relative !important;
        height: auto !important;
        min-width: 0 !important;
        max-width: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 52px 1fr;
        grid-template-rows: 148px 148px;
        column-gap: 0;
        row-gap: 14px;
    }

    .why-box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 14px;
    }

    .why-box--tl {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .why-box--mr {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        height: 100% !important;
    }

    .why-box--bl {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .why-badge {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 56px;
        height: 56px;
        z-index: 10;
    }

    .why-badge-num {
        font-size: 15px;
    }

    .why-badge-label {
        font-size: 8px;
    }

    .why-box--tl:hover,
    .why-box--mr:hover,
    .why-box--bl:hover {
        transform: scale(1.02) !important;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 0 16px;
    }

    .why-title {
        font-size: 26px !important;
    }

    .why-right {
        grid-template-columns: 1fr 44px 1fr;
        grid-template-rows: 125px 125px;
        row-gap: 12px;
    }

    .why-badge {
        width: 48px;
        height: 48px;
    }

    .why-badge-num {
        font-size: 13px;
    }

    .why-badge-label {
        font-size: 7px;
    }

    .why-box-tag {
        font-size: 9px;
        padding: 3px 8px;
        bottom: 7px;
        left: 8px;
    }
}


@keyframes indFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes indCardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes indIconSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    40% {
        transform: rotate(-12deg) scale(1.15);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes platCardIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes platIconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes indUnderline {
    from {
        width: 0;
    }

    to {
        width: 48px;
    }
}

@keyframes platArrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

@keyframes indShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

[data-ind-anim],
[data-plat-anim] {
    opacity: 0;
}

[data-ind-anim="fade-up"].ind-animated {
    opacity: 1;
    animation: indFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-ind-anim="card"].ind-animated {
    opacity: 1;
    animation: indCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-plat-anim="fade-up"].plat-animated {
    opacity: 1;
    animation: indFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-plat-anim="card"].plat-animated {
    opacity: 1;
    animation: platCardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ind-section {
    background: #f5f7fa;
    padding: 80px 0 90px;
    font-family: 'Sen', sans-serif;
}

.ind-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

.ind-header {
    text-align: center;
    margin-bottom: 48px;
}

.ind-title {
    font-family: 'Sen', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #00123A;
    margin: 0 0 12px;
    letter-spacing: -0.4px;
    position: relative;
    display: inline-block;
}

.ind-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 0;
    background: #0050FF;
    border-radius: 2px;
}

.ind-header.ind-animated .ind-title::after {
    animation: indUnderline 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.ind-sub {
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    color: #6D6D6D;
    margin: 20px 0 0;
    line-height: 1.6;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.ind-card {
    background: linear-gradient(120deg, #001a4d 50%, #003db8 100%);
    border-radius: 14px;
    padding: 28px 14px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.ind-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.12) 50%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.ind-card:hover::before {
    animation: indShimmer 2s ease forwards;
}

.ind-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(0, 80, 255, 0.35),
        0 4px 12px rgba(0, 80, 255, 0.2);
}

.ind-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ind-card:hover .ind-icon-wrap {
    background: rgba(255, 255, 255, 0.25);
    animation: indIconSpin 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ind-icon-svg {
    width: 24px;
    height: 24px;
}

.ind-label {
    font-family: 'Sen', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    text-align: center;
    position: relative;
    z-index: 2;
}

.plat-section {
    background: #EDF0F8;
    padding: 90px 0 100px;
    font-family: 'Sen', sans-serif;
}

.plat-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 60px;
}

.plat-header {
    text-align: center;
    margin-bottom: 48px;
}

.plat-eyebrow {
    display: block;
    font-family: 'Sen', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0050FF;
    margin-bottom: 10px;
}

.plat-title {
    font-family: 'Sen', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #00123A;
    margin: 0;
    letter-spacing: -0.4px;
}

.plat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.plat-card {
    background: #ffffff;
    border: 1.5px solid #E2E8F4;
    border-radius: 18px;
    padding: 44px 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.plat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #001a4d, #0050FF);
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 18px 18px 0 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.plat-card:hover::before {
    transform: scaleX(1);
}

.plat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 80, 255, 0.12);
    border-color: #c7d2fe;
}

.plat-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(145deg, #001a4d, #0050FF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(0, 80, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plat-card:hover .plat-icon-wrap {
    animation: platIconFloat 2s ease-in-out infinite;
    box-shadow: 0 10px 28px rgba(0, 80, 255, 0.4);
}

.plat-icon-svg {
    width: 28px;
    height: 28px;
}

.plat-name {
    font-family: 'Sen', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #00123A;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}

.plat-desc {
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    color: #6D6D6D;
    line-height: 1.75;
    margin: 0 0 26px;
    max-width: 280px;
}

.plat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Sen', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0050FF;
    text-decoration: none;
    transition: gap 0.25s ease;
    margin-top: auto;
}

.plat-link:hover {
    gap: 10px;
}

.plat-link svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.plat-link:hover svg {
    animation: platArrowPulse 0.5s ease;
}

@media (max-width: 1024px) {

    .ind-container,
    .plat-container {
        padding: 0 40px;
    }

    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .ind-section {
        padding: 56px 0;
    }

    .plat-section {
        padding: 56px 0 70px;
    }

    .ind-container,
    .plat-container {
        padding: 0 20px;
    }

    .ind-title,
    .plat-title {
        font-size: 26px !important;
    }

    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ind-card {
        padding: 22px 12px 18px;
        border-radius: 12px;
    }

    .plat-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plat-card {
        padding: 36px 26px 32px;
    }
}

@media (max-width: 480px) {

    .ind-container,
    .plat-container {
        padding: 0 14px;
    }

    .ind-title,
    .plat-title {
        font-size: 22px !important;
    }

    .ind-icon-wrap {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .ind-icon-svg {
        width: 20px;
        height: 20px;
    }

    .ind-label {
        font-size: 11.5px;
    }

    .plat-icon-wrap {
        width: 54px;
        height: 54px;
    }

    .plat-icon-svg {
        width: 24px;
        height: 24px;
    }

    .plat-name {
        font-size: 19px;
    }

    .ind-card {
        padding: 18px 10px 16px;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {

    [data-ind-anim].ind-animated,
    [data-plat-anim].plat-animated,
    .ind-header.ind-animated .ind-title::after {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        width: 48px;
    }

    .ind-card::before,
    .plat-card::before {
        display: none;
    }
}


@keyframes mScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes mScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes pFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-p-anim] {
    opacity: 0;
}

[data-p-anim="fade-up"].p-animated {
    opacity: 1;
    animation: pFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

[data-p-anim="reveal"].p-animated {
    opacity: 1;
    animation: pReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.partners-section {
    background: #ffffff;
    padding: 80px 0 90px;
    font-family: 'Sen', sans-serif;
    border-top: 1px solid #E8ECF4;
    border-bottom: 1px solid #E8ECF4;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    padding: 0 60px;
    margin-bottom: 52px;
}

.partners-eyebrow {
    display: block;
    font-family: 'Sen', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0050FF;
    margin-bottom: 12px;
}

.partners-title {
    font-family: 'Sen', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #00123A;
    margin: 0;
    letter-spacing: -0.4px;
}

.marquee-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.marquee-area::before,
.marquee-area::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 180px;
    z-index: 5;
    pointer-events: none;
}

.marquee-area::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 20%, transparent 100%);
}

.marquee-area::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 20%, transparent 100%);
}

.marquee-row {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: mScrollLeft 100s linear infinite;
    will-change: transform;
}

.marquee-track.marquee-rtl {
    animation: mScrollRight 100s linear infinite;
}

.marquee-area:hover .marquee-track {
    animation-play-state: paused;
}

.logo-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FC;
    border: 1.5px solid #E4E9F5;
    border-radius: 14px;
    padding: 16px 32px;
    height: 76px;
    min-width: 148px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-pill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-150%);
    transition: transform 0s;
    pointer-events: none;
}

.logo-pill:hover::after {
    transform: translateX(150%);
    transition: transform 0.5s ease;
}

.logo-pill:hover {
    border-color: #0050FF;
    background: #ffffff;
    transform: translateY(-5px) scale(1.03);
    box-shadow:
        0 8px 28px rgba(0, 80, 255, 0.14),
        0 2px 8px rgba(0, 80, 255, 0.08);
}

.logo-pill img {
    width: auto;
    height: auto;
    max-width: 110px;
    max-height: 70px;
    object-fit: contain;
    display: block;
    filter: grayscale(0) opacity(0.6);
    transition: filter 0.3s ease;
    pointer-events: none;
}

.logo-pill:hover img {
    filter: grayscale(0%) opacity(10);
}

@media (max-width: 1024px) {
    .partners-header {
        padding: 0 40px;
    }

    .marquee-area::before,
    .marquee-area::after {
        width: 100px;
    }

    .logo-pill {
        height: 88px;
        min-width: 130px;
        padding: 14px 26px;
        border-radius: 12px;
    }

    .logo-pill img {
        max-width: 90px;
        max-height: 34px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 56px 0 64px;
    }

    .partners-header {
        padding: 0 20px;
        margin-bottom: 36px;
    }

    .partners-title {
        font-size: 26px;
    }

    .marquee-area {
        gap: 14px;
    }

    .marquee-area::before,
    .marquee-area::after {
        width: 60px;
    }

    .marquee-track {
        gap: 12px;
        animation-duration: 25s;
    }

    .marquee-track.marquee-rtl {
        animation-duration: 30s;
    }

    .logo-pill {
        height: 60px;
        min-width: 110px;
        padding: 12px 20px;
        border-radius: 10px;
    }

    .logo-pill img {
        max-width: 76px;
        max-height: 28px;
    }
}

@media (max-width: 480px) {
    .partners-header {
        padding: 0 16px;
    }

    .partners-title {
        font-size: 22px;
    }

    .marquee-area::before,
    .marquee-area::after {
        width: 40px;
    }

    .marquee-track {
        gap: 10px;
        animation-duration: 100s;
    }

    .marquee-track.marquee-rtl {
        animation-duration: 100s;
    }

    .logo-pill {
        height: 54px;
        min-width: 96px;
        padding: 10px 16px;
        border-radius: 8px;
    }

    .logo-pill img {
        max-width: 60px;
        max-height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .marquee-track,
    .marquee-track.marquee-rtl {
        animation: none !important;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 12px;
        padding: 0 20px;
    }

    [data-p-anim].p-animated {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}


.cta-section {
    background: #0050FF;
    padding: 64px 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
    font-family: 'Sen', sans-serif;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(0, 18, 58, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.cta-container {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: 'Sen', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.65s ease forwards 0.1s;
}

.cta-subtext {
    font-family: 'Sen', sans-serif;
    font-size: 0.97rem;
    color: rgba(255, 255, 255, 0.87);
    line-height: 1.65;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.65s ease forwards 0.25s;
}

.cta-btn {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: #ffffff;
    background-color: #00123A;
    font-family: 'Sen', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.02em;
    transition: background 0.28s ease, border-color 0.28s ease, transform 0.2s ease, box-shadow 0.28s ease;
    opacity: 0;
    animation: fadeUp 0.65s ease forwards 0.4s;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
    transform: translateY(0);
}



.go-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: #0050FF;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.25s ease;
    z-index: 999;
}

.go-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top-btn:hover {
    background: #003db8;
    transform: translateY(-3px);
}

.go-top-btn:active {
    transform: translateY(0);
}