    @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
    * {
        font-family: "Poppins", sans-serif;
    }

    .login-form-wrapper {
        width: 100%;
        max-width: 360px;
        position: relative;
        z-index: 10;
    }

    .login-field {
        position: relative;
        margin-bottom: 14px;
    }

    .login-field input {
        width: 100%;
        padding: 14px 48px 14px 46px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        color: white;
        font-size: 14px;
        font-family: "Poppins", sans-serif;
        transition: all 0.3s ease;
        outline: none;
        height: 52px;
    }

    .login-field input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .login-field input:focus {
        border-color: rgba(139, 92, 246, 0.5);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    }

    .login-field .icon-left {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.35);
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .login-field:focus-within .icon-left {
        color: rgba(139, 92, 246, 0.7);
    }

    .login-field .icon-right {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.2);
        pointer-events: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .login-field:focus-within .icon-right {
        color: rgba(139, 92, 246, 0.4);
    }

    .login-btn-submit {
        width: 100%;
        padding: 14px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 15px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 4px;
    }

    .login-btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.35);
    }

    .login-btn-submit:active {
        transform: translateY(0);
    }

    .login-btn-google {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        color: white;
        font-size: 14px;
        font-weight: 500;
        font-family: "Poppins", sans-serif;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 8px;
    }

    .login-btn-google:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

    .login-btn-google:active {
        transform: translateY(0);
    }

    .login-btn-google svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .login-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0 16px;
        font-size: 13px;
    }

    .login-options label {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        font-size: 13px;
    }

    .login-options label input[type="checkbox"] {
        appearance: none;
        width: 16px;
        height: 16px;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        border-radius: 4px;
        background: transparent;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
        position: relative;
    }

    .login-options label input[type="checkbox"]:checked {
        background: #8b5cf6;
        border-color: #8b5cf6;
    }

    .login-options label input[type="checkbox"]:checked::after {
        content: '';
        position: absolute;
        left: 4px;
        top: 1px;
        width: 6px;
        height: 10px;
        border: solid white;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .login-options a {
        color: rgba(139, 92, 246, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 13px;
    }

    .login-options a:hover {
        color: #8b5cf6;
    }

    .login-divider-text {
        display: flex;
        align-items: center;
        gap: 14px;
        margin: 14px 0 16px;
        color: rgba(255, 255, 255, 0.3);
        font-size: 12px;
    }

    .login-divider-text::before,
    .login-divider-text::after {
        content: "";
        flex: 1;
        height: 1px;
        background: rgba(255, 255, 255, 0.08);
    }

    .login-signup-link {
        color: rgba(139, 92, 246, 0.8);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .login-signup-link:hover {
        color: #8b5cf6;
    }

    .login-form-wrapper .login-field input {
        padding: 14px 44px 14px 44px;
    }

    @media (max-width: 640px) {
        .login-form-wrapper {
            max-width: 100%;
            padding: 0 4px;
        }

        .login-field input {
            font-size: 13px;
            height: 48px;
            padding: 12px 38px 12px 38px;
        }

        .login-field .icon-left svg,
        .login-field .icon-right svg {
            width: 16px;
            height: 16px;
        }

        .login-btn-submit,
        .login-btn-google {
            font-size: 14px;
            padding: 12px;
        }

        .login-options {
            font-size: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }
    }

    @media (max-width: 380px) {
        .login-field input {
            font-size: 12px;
            height: 44px;
            padding: 10px 34px 10px 34px;
        }

        .login-field .icon-left svg,
        .login-field .icon-right svg {
            width: 14px;
            height: 14px;
        }

        .login-btn-submit,
        .login-btn-google {
            font-size: 13px;
            padding: 10px;
        }

        .login-btn-google svg {
            width: 18px;
            height: 18px;
        }
    }

    .login-captcha-field {
        display: flex;
        justify-content: center;
        margin-bottom: 14px;
    }

    .notification-container {
        position: fixed;
        top: 16px;
        right: 16px;
        left: auto;
        z-index: 999;
        --content-color: #0f0f14;
        --background-color: #f3f3f3;
        --font-size-content: 0.85em;
        --icon-size: 1.1em;
        max-width: 360px;
        width: calc(100% - 32px);
        display: flex;
        flex-direction: column;
        gap: 0.5em;
        list-style-type: none;
        font-family: sans-serif;
        color: var(--content-color);
        margin: 0;
        padding: 0;
    }

    @media (max-width: 480px) {
        .notification-container {
            top: 12px;
            right: 8px;
            width: calc(100% - 16px);
        }
    }

    .notification-item {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        gap: 1em;
        overflow: hidden;
        padding: 10px 15px;
        border-radius: 6px;
        box-shadow: rgba(111, 111, 111, 0.2) 0px 8px 24px;
        background-color: var(--background-color);
        transition: all 250ms ease;
        --grid-color: rgba(225, 225, 225, 0.7);
        background-image: linear-gradient(0deg, transparent 23%, var(--grid-color) 24%, var(--grid-color) 25%, transparent 26%, transparent 73%, var(--grid-color) 74%, var(--grid-color) 75%, transparent 76%, transparent), linear-gradient(90deg, transparent 23%, var(--grid-color) 24%, var(--grid-color) 25%, transparent 26%, transparent 73%, var(--grid-color) 74%, var(--grid-color) 75%, transparent 76%, transparent);
        background-size: 55px 55px;
    }

    .notification-item svg {
        transition: 250ms ease;
    }

    .notification-item:hover {
        transform: scale(1.01);
    }

    .notification-item .notification-close:hover {
        background-color: rgba(204, 204, 204, 0.45);
    }

    .notification-item .notification-close:hover svg {
        color: rgb(0, 0, 0);
    }

    .notification-item .notification-close:active svg {
        transform: scale(1.1);
    }

    .notification-item .notification-close {
        padding: 2px;
        border-radius: 5px;
        transition: all 250ms;
        cursor: pointer;
    }

    .notification-container svg {
        width: var(--icon-size);
        height: var(--icon-size);
        color: var(--content-color);
    }

    .notification-icon {
        display: flex;
        align-items: center;
    }

    .notification-item.success {
        color: #047857;
        background-color: #7dffbc;
        --grid-color: rgba(16, 185, 129, 0.25);
    }

    .notification-item.success svg {
        color: #047857;
    }

    .notification-item.success .notification-progress-bar {
        background-color: #047857;
    }

    .notification-item.warning {
        color: #78350f;
        background-color: #ffe57e;
        --grid-color: rgba(245, 159, 11, 0.25);
    }

    .notification-item.warning svg {
        color: #78350f;
    }

    .notification-item.warning .notification-progress-bar {
        background-color: #78350f;
    }

    .notification-item.error {
        color: #7f1d1d;
        background-color: #ff7e7e;
        --grid-color: rgba(239, 68, 68, 0.25);
    }

    .notification-item.error svg {
        color: #7f1d1d;
    }

    .notification-item.error .notification-progress-bar {
        background-color: #7f1d1d;
    }

    .notification-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5em;
    }

    .notification-text {
        font-size: var(--font-size-content);
        user-select: none;
    }

    .notification-progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 2px;
        background: var(--content-color);
        width: 100%;
        transform: translateX(100%);
        animation: progressBar 5.5s linear forwards;
    }

    @keyframes progressBar {
        0% { transform: translateX(0); }
        100% { transform: translateX(-100%); }
    }

  .marquee-inner {
    animation: marqueeScroll 25s linear infinite;
  }
  .marquee-inner:hover {
    animation-play-state: paused;
  }
  @keyframes marqueeScroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
  }

    @font-face {
        font-family: 'Bitrank';
        src: url('/assets/fonts/Bitrank.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    .static-section-join {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: clamp(150px, 20vw, 560px);
        overflow: hidden;
        background: #000;
        line-height: 0;
        margin-top: 0;
        background-image: url('/assets/ecom/3.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .static-section-join::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
        pointer-events: none;
    }

    .static-section-join .text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
        line-height: 1.2;
        box-sizing: border-box;
    }

    .static-section-join .text-overlay span {
        font-family: 'Bitrank', 'Georgia', serif;
        font-size: clamp(2rem, 6vw, 4.5rem);
        font-weight: 400;
        letter-spacing: 0.06em;
        text-align: center;
        padding: 0 1.5rem;
        background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 40%, #dcd4cc 70%, #d0c8c0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.15), 0 4px 60px rgba(255, 255, 255, 0.08);
        line-height: 1.2;
        display: inline-block;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
        font-family: 'Poppins', sans-serif;
    }

    .pattern-waves {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        overflow: hidden;
        background: #0f172a;
        z-index: 0;
    }

    .pattern-waves::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-radial-gradient(
            circle at 0% 50%,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 2px,
            transparent 2px,
            transparent 30px
        );
    }

    @font-face {
        font-family: 'Bitrank';
        src: url('/assets/fonts/Bitrank.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    .static-section-core {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: clamp(150px, 20vw, 560px);
        overflow: hidden;
        background: #000;
        line-height: 0;
        margin-top: 0;
        background-image: url('/assets/ecom/2.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .static-section-core::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
        pointer-events: none;
    }

    .static-section-core .text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
        line-height: 1.2;
        box-sizing: border-box;
    }

    .static-section-core .text-overlay span {
        font-family: 'Bitrank', 'Georgia', serif;
        font-size: clamp(2rem, 6vw, 4.5rem);
        font-weight: 400;
        letter-spacing: 0.06em;
        text-align: center;
        padding: 0 1.5rem;
        background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 40%, #dcd4cc 70%, #d0c8c0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.15), 0 4px 60px rgba(255, 255, 255, 0.08);
        line-height: 1.2;
        display: inline-block;
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
        font-family: 'Poppins', sans-serif;
    }

    .pattern-grid {
        width: 100%;
        height: 100%;
        --color: rgba(114, 114, 114, 0.3);
        background-color: transparent;
        background-image: 
            linear-gradient(0deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent),
            linear-gradient(90deg, transparent 24%, var(--color) 25%, var(--color) 26%, transparent 27%, transparent 74%, var(--color) 75%, var(--color) 76%, transparent 77%, transparent);
        background-size: 55px 55px;
        opacity: 0.4;
        pointer-events: none;
    }

    .tab-btn {
        position: relative;
        transition: color 0.3s ease;
        cursor: pointer;
        user-select: none;
    }

    .tab-btn::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 20%;
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #818cf8, transparent);
        border-radius: 1px;
        box-shadow: 0 0 15px #818cf8, 0 0 30px #818cf8;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .tab-btn.active {
        color: #ffffff;
    }

    .tab-btn.active::after {
        opacity: 1;
        animation: glowPulse 2s infinite;
    }

    @keyframes glowPulse {
        0% {
            transform: scaleX(0.8);
            opacity: 0.6;
        }
        50% {
            transform: scaleX(1.2);
            opacity: 1;
        }
        100% {
            transform: scaleX(0.8);
            opacity: 0.6;
        }
    }

    .tab-content {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
        transform: translateY(10px);
    }

    .tab-content.active {
        max-height: 3000px;
        opacity: 1;
        transform: translateY(0);
    }

    @font-face {
        font-family: 'Bitrank';
        src: url('/assets/fonts/Bitrank.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    .static-section-ask {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: clamp(150px, 20vw, 560px);
        overflow: hidden;
        background: #000;
        line-height: 0;
        margin-top: 0;
        background-image: url('/assets/ecom/4.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .static-section-ask::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
        pointer-events: none;
    }

    .static-section-ask .text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
        line-height: 1.2;
        box-sizing: border-box;
    }

    .static-section-ask .text-overlay span {
        font-family: 'Bitrank', 'Georgia', serif;
        font-size: clamp(2rem, 6vw, 4.5rem);
        font-weight: 400;
        letter-spacing: 0.06em;
        text-align: center;
        padding: 0 1.5rem;
        background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 40%, #dcd4cc 70%, #d0c8c0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.15), 0 4px 60px rgba(255, 255, 255, 0.08);
        line-height: 1.2;
        display: inline-block;
    }

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

.faq-grid-wrapper {
    position: relative;
    background-color: transparent;
}

.faq-grid-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 32px;
    -webkit-mask-image: radial-gradient(
        ellipse 70% 60% at 50% 0%,
        #000 60%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 70% 60% at 50% 0%,
        #000 60%,
        transparent 100%
    );
    pointer-events: none;
    border-radius: 20px;
}

.faq-item {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.10);
}

.faq-header {
    background: transparent;
    border: none;
    padding: 18px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-header h2 {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-header:hover h2 {
    color: #ffffff;
}

.faq-header svg path {
    stroke: #64748b;
    transition: stroke 0.3s ease;
}

.faq-header:hover svg path {
    stroke: #94a3b8;
}

.faq-answer {
    color: #a1a1aa;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 20px 0 20px;
}

.faq-answer.opacity-100 {
    padding: 0 20px 18px 20px;
}

.section-title {
    color: #71717a;
}

.section-heading {
    color: #ffffff;
}

.section-sub {
    color: #71717a;
}

.payment-title {
    color: #a1a1aa;
}

.payment-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.payment-card:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.payment-card img {
    filter: brightness(0.9) saturate(1.1);
}

    @font-face {
        font-family: 'Bitrank';
        src: url('/assets/fonts/Bitrank.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }

    .static-section-say {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        height: clamp(150px, 20vw, 560px);
        overflow: hidden;
        background: #000;
        line-height: 0;
        margin-top: 0;
        background-image: url('/assets/ecom/5.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .static-section-say::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 1;
        pointer-events: none;
    }

    .static-section-say .text-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 2;
        line-height: 1.2;
        box-sizing: border-box;
    }

    .static-section-say .text-overlay span {
        font-family: 'Bitrank', 'Georgia', serif;
        font-size: clamp(2rem, 6vw, 4.5rem);
        font-weight: 400;
        letter-spacing: 0.06em;
        text-align: center;
        padding: 0 1.5rem;
        background: linear-gradient(135deg, #f5f0eb 0%, #e8e0d8 40%, #dcd4cc 70%, #d0c8c0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 30px rgba(255, 255, 255, 0.15), 0 4px 60px rgba(255, 255, 255, 0.08);
        line-height: 1.2;
        display: inline-block;
    }

    .night-testimonials {
        background: #0a0a0a;
        padding: 2rem 1rem;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .night-testimonials .heading {
        color: #ffffff;
        font-size: 2.5rem;
        font-weight: 700;
        max-width: 740px;
        margin-bottom: 72px;
        text-align: center;
    }

    .night-testimonials .heading span {
        color: #c084fc;
    }

    .night-testimonials .testimonial-card {
        background: #141414;
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        max-width: 272px;
        text-align: center;
        color: #a1a1aa;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        flex: 1 1 220px;
    }

    .night-testimonials .testimonial-card:hover {
        background: #1a1a1a;
        border-color: rgba(255, 255, 255, 0.12);
        transform: translateY(-4px);
    }

    .night-testimonials .testimonial-card .avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }

    .night-testimonials .testimonial-card .name {
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 1.25rem;
        margin-bottom: 0.1rem;
    }

    .night-testimonials .testimonial-card .role {
        color: #71717a;
        font-size: 0.75rem;
    }

    .night-testimonials .testimonial-card .verified-badge {
        position: absolute;
        top: -4px;
        right: -8px;
    }

    .night-testimonials .cta-wrapper {
        position: relative;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
        max-width: 1024px;
        margin: 2rem auto;
        padding: 0 1rem;
        overflow: hidden;
    }

    .night-testimonials .cta-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        background-image: 
            linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 24px 32px;
        pointer-events: none;
        opacity: 0.5;
    }

    .night-testimonials .cta-inner {
        position: relative;
        z-index: 1;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        padding: 3rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
    }

    .night-testimonials .cta-text {
        color: #d4d4d8;
        font-size: 1.25rem;
        font-weight: 500;
        max-width: 400px;
        text-align: center;
    }

    .night-testimonials .btn-primary {
        background: linear-gradient(135deg, #7c3aed, #a78bfa);
        color: #fff;
        padding: 0.75rem 2rem;
        border-radius: 9999px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        font-size: 0.95rem;
        box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
    }

    .night-testimonials .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
        background: linear-gradient(135deg, #6d28d9, #8b5cf6);
    }

    .night-testimonials .btn-primary svg {
        width: 20px;
        height: 20px;
    }

    @media (min-width: 768px) {
        .night-testimonials .cta-inner {
            flex-direction: row;
            text-align: left;
            padding: 4rem 3rem;
        }
        .night-testimonials .cta-text {
            text-align: left;
        }
    }
