@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Satoshi-Light.66b6be60.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 300;
    src: url(../fonts/Satoshi-LightItalic.3e548608.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Satoshi-Regular.811ccb0b.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 400;
    src: url(../fonts/Satoshi-Italic.931b0a35.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Satoshi-Medium.e9d34f04.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 500;
    src: url(../fonts/Satoshi-MediumItalic.2097b0fe.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Satoshi-Bold.b5dd7dee.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 700;
    src: url(../fonts/Satoshi-BoldItalic.ed285528.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Satoshi-Black.d27fb329.otf) format("opentype")
}

@font-face {
    font-family: Satoshi;
    font-style: italic;
    font-weight: 900;
    src: url(../fonts/Satoshi-BlackItalic.e1c41ced.otf) format("opentype")
}

.signature-section {
    background-color: #ffffff;
    color: #ffffff;
    font-family: Satoshi, Inter, system-ui, sans-serif;
    overflow: hidden;
    padding: 6rem 0;
    width: 100%
    max-width: 1440px;
}

.signature-section.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: none;
    width: 100vw;
}

.signature-section .sig-container {
    margin: 0 auto;
    max-width: 1440px;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

.signature-section .sig-header {
    margin: 0 auto 4rem;
    max-width: 800px;
    text-align: center;
}
.sig-card-header {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}
.signature-section .sig-header .sig-title {
    color: #000000;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 54px;
    margin-bottom: 1.5rem;
}

@media(min-width:960px) {
    .signature-section .sig-header .sig-title {
        font-size: 34px;
    }
}

.signature-section .sig-header .sig-subtitle {
    color: #94a3b8;
    text-transform: none;
    font-size: 16px;
    line-height: 28px;
}

.signature-section .sig-grid-editor {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    margin-bottom: 4rem;
}

.signature-section .sig-grid-editor .sig-card-wrapper {
    position: relative;
}

.signature-section .sig-grid-editor .sig-image-upload-btn {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.signature-section .sig-grid-editor .sig-remove-card-btn {
    bottom: -2rem;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.signature-section .sig-carousel-wrapper {
    margin-bottom: 4rem;
    padding: 0 3.5rem 0 3.5rem;
    position: relative;
}

@media(min-width:1440px) {
    .signature-section .sig-carousel-wrapper {
        padding: 0 4rem;
    }
}

.signature-section .sig-swiper-btn {
    align-items: center;
    background: #000000;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-size: 1.25rem;
    height: 3rem;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    width: 3rem;
    z-index: 10;
}

.signature-section .sig-swiper-btn:hover {
    background: #10b981;
    transform: translateY(-50%) scale(1.05);
}

.signature-section .sig-swiper-btn:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.signature-section .sig-swiper-prev {
    left: 0.5rem;
}

.signature-section .sig-swiper-next {
    right: 0.5rem;
}

.signature-section .sig-carousel-wrapper .swiper-pagination,
.signature-section .sig-carousel-wrapper .swiper-scrollbar {
    display: none !important;
}

.signature-section .sig-carousel {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

/* When Swiper is initialized, hide scrollbar and use slider layout */
.signature-section .sig-carousel.swiper {
    overflow: hidden;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.signature-section .sig-carousel.swiper::-webkit-scrollbar {
    display: none;
}

.signature-section .sig-carousel .swiper-wrapper {
    align-items: stretch;
}

.signature-section .sig-carousel::-webkit-scrollbar {
    height: 6px;
}

.signature-section .sig-carousel:not(.swiper)::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 10px;
}

.signature-section .sig-carousel:not(.swiper)::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

@media(min-width:960px) {
    .signature-section .sig-carousel:not(.swiper) {
        gap: 2rem;
        padding-bottom: 1rem;
    }
}

.signature-section .sig-card {
    background-color: #1e293b;
    background-position: 50%;
    background-size: cover;
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 2.5rem;
    display: flex;
    flex: 0 0 85%;
    flex-direction: column;
    height: 550px;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275);
}

@media(min-width:768px) {
    .signature-section .sig-card {
        flex: 0 0 45%;
    }
}

@media(min-width:1100px) {
    .signature-section .sig-card {
        flex: 0 0 calc(33.333% - 1.33rem);
        scroll-snap-align: start;
    }

    .signature-section .sig-card:hover {
        transform: scale(1.02);
    }
}

/* Swiper slider: card fills slide and keeps fixed height */
.signature-section .sig-carousel.swiper .swiper-slide .sig-card {
    flex: none;
    width: 100%;
}

.signature-section .sig-carousel.swiper .swiper-slide {
    height: auto;
}

.signature-section .sig-card .sig-card-overlay {
    background:linear-gradient(180deg, #1D1D1F00 0%, #000000 100%); 
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.signature-section .sig-card .sig-card-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.signature-section .sig-card .sig-card-header .sig-card-badge {
    align-items: center;
    background: #F9F9FAE6;
    border-radius: 2rem;
    display: inline-flex;
    padding: .6rem 1.2rem;
}

.signature-section .sig-card .sig-card-header .sig-card-badge .sig-card-title {
    align-items: center;
    color: #000000;
    display: flex;
    font-size: 12px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


.signature-section .sig-card .sig-card-body .sig-card-desc {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0
    align-items: center;
}

.signature-section .sig-footer {
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
}

.signature-section .sig-footer .sig-footnote {
    color: #000000;
    font-size: 18px;
    letter-spacing: .05em;
    line-height:28px;
    margin-bottom: 3rem;
}

.signature-section .sig-footer .sig-actions {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

@media(min-width:600px) {
    .signature-section .sig-footer .sig-actions {
        flex-direction: row;
    }
}

.signature-section .sig-footer .sig-actions .sig-btn {
    border-radius: 9999px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    font-weight: 600;
    min-width: 250px;
    padding: 1.1rem 2.5rem;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
}

.signature-section .sig-footer .sig-actions .sig-btn.primary {
    background: #10b981;
    color: #ffffff;
}

.signature-section .sig-footer .sig-actions .sig-btn.primary:hover {
    background: #000000;
    transform: translateY(-3px);
}

.signature-section .sig-footer .sig-actions .sig-btn.secondary {
    backdrop-filter: blur(8px);
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.signature-section .sig-footer .sig-actions .sig-btn.secondary:hover {
    background:#10b981;
    border-color: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
}