*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Custom Sleek Dark Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #070709;
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #334155;
}
* {
    scrollbar-width: thin;
    scrollbar-color: #1e293b #070709;
}

html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #070709;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: auto;
    scroll-snap-type: y mandatory;
}

/* ==========================================================================
   1. Surface & Base Page Sections
   ========================================================================== */

.page {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.surface-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #070709;
}

/* Background Canvas attached inside Page 1 */
#fogCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    filter: blur(28px);
    opacity: 0.6;
}

/* Soft Top Mist Overlay */
.top-mist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35vh;
    background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.08) 0%, rgba(45, 212, 191, 0.04) 35%, transparent 100%);
    pointer-events: none;
    z-index: 2;
    filter: blur(25px);
}

/* Main Text Section */
.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    transform: translateY(85px);
    position: relative;
    z-index: 5;
    animation: quickFadeInText 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.main-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.0rem, 4.2vw, 3.6rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-align: center;
}

.awake-text {
    font-weight: 600;
    background: 
        radial-gradient(ellipse 50px 30px at 25% 30%, #ffffff 0%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(ellipse 45px 28px at 80% 70%, #ffffff 0%, rgba(255, 255, 255, 0) 65%),
        radial-gradient(circle 50px at 70% 25%, #00f0ff 0%, rgba(0, 240, 255, 0) 75%),
        radial-gradient(circle 45px at 20% 75%, #00e5ff 0%, rgba(0, 229, 255, 0) 75%),
        linear-gradient(
            125deg,
            #1e3a8a 0%,
            #0369a1 15%,
            #00f0ff 28%,
            #ffffff 38%,
            #0284c7 48%,
            #1d4ed8 62%,
            #00f0ff 76%,
            #ffffff 86%,
            #1e3a8a 100%
        );
    background-size: 160% 160%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: none;
    text-shadow: none;
    animation: liquidRippleMultiDir 8s linear infinite;
}

@keyframes liquidRippleMultiDir {
    0% {
        background-position: 0% 20%;
    }
    25% {
        background-position: 100% 80%;
    }
    50% {
        background-position: 80% 0%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 20%;
    }
}

.sub-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.1vw, 1.02rem);
    font-weight: 400;
    color: #94a3b8;
    margin-top: 1rem;
    max-width: 580px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Bottom Half Image Section */
.image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 5;
    animation: quickFadeInImage 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: clamp(220px, 35vh, 380px);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    border-top: 1px solid #1a1a1f;
    border-left: 1px solid #1a1a1f;
    border-right: 1px solid #1a1a1f;
}

.half-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px 16px 0 0;
}

/* Animations */
@keyframes quickFadeInText {
    0% {
        opacity: 0;
        transform: translateY(85px);
    }
    100% {
        opacity: 1;
        transform: translateY(115px);
    }
}

@keyframes quickFadeInImage {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   2. Photo Page & Pricing Page Styles
   ========================================================================== */

.photo-page {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem 1.5rem 1.5rem;
    position: relative;
    z-index: 3;
    background-color: #070709;
}

.blank-page {
    height: 100vh;
    min-height: 100vh;
    position: relative;
    z-index: 3;
    background-color: #070709;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
}

.page3-card {
    position: relative;
    width: 100%;
    max-width: 1080px;
    background: #0d0d10;
    border: 1px solid #17171a;
    border-radius: 20px;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 1.6rem);
}

.page3-top-section {
    display: grid;
    grid-template-columns: 303px 1fr;
    gap: clamp(1.2rem, 2vw, 1.6rem);
    align-items: stretch;
}

.page3-card-top-left {
    position: relative;
    width: 100%;
    max-width: 303px;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #101014;
    border: 1px solid #1d1d22;
    box-sizing: border-box;
}

.page3-card-right {
    position: relative;
    width: 100%;
    background: #101014;
    border: 1px solid #1d1d22;
    border-radius: 14px;
    box-sizing: border-box;
    padding: clamp(1.4rem, 2.5vw, 2.2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page3-right-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.page3-right-desc {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.55;
    letter-spacing: -0.01em;
    max-width: 600px;
}

.page3-aurora-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 48px;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
    border-radius: 14px 14px 0 0;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 18px, rgba(0, 0, 0, 0.7) 28px, rgba(0, 0, 0, 0.3) 36px, rgba(0, 0, 0, 0.08) 42px, transparent 48px);
    mask-image: linear-gradient(to bottom, #000 0%, #000 18px, rgba(0, 0, 0, 0.7) 28px, rgba(0, 0, 0, 0.3) 36px, rgba(0, 0, 0, 0.08) 42px, transparent 48px);
}

#fogCanvasPage3 {
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100% + 20px);
    height: 100%;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.95;
}

.page3-top-mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.2) 0%, rgba(45, 212, 191, 0.1) 60%, transparent 100%);
    pointer-events: none;
    filter: blur(2px);
}

.page3-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 13px;
    object-fit: cover;
}

/* 3 Stat Rectangles Grid */
.page3-stats-grid {
    display: grid;
    grid-template-columns: 303px 1fr 1fr;
    gap: clamp(1.2rem, 2vw, 1.6rem);
    width: 100%;
}

.page3-stat-card {
    position: relative;
    background: #101014;
    border: 1px solid #1d1d22;
    border-radius: 14px;
    padding: clamp(1.4rem, 2.4vw, 1.85rem) clamp(1.2rem, 2vw, 1.6rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.85rem, 1.05vw, 0.98rem);
    font-weight: 400;
    color: #94a3b8;
    margin-top: 0.4rem;
    letter-spacing: -0.01em;
}

.pricing-page {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 3;
    background-color: #070709;
}

.top-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 5;
    animation: quickFadeInImage 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.08s forwards;
}

.continuation-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: clamp(220px, 35vh, 380px);
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1f;
    border-left: 1px solid #1a1a1f;
    border-right: 1px solid #1a1a1f;
}

/* ==========================================================================
   2b. Video Showcase Carousel & Modal
   ========================================================================== */

.video-carousel-container {
    width: 100%;
    max-width: 1200px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin: 0 auto;
    perspective: 1000px;
}

.media-header-container {
    text-align: center;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 20;
}

.media-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.carousel-track-wrapper {
    position: relative;
    width: 100%;
    max-width: 1080px;
    height: clamp(230px, 38vh, 360px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.video-card {
    position: absolute;
    width: clamp(340px, 52vw, 620px);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #0e0e11;
    border: 1px solid #1a1a1f;
    cursor: pointer;
    user-select: none;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s ease;
    box-shadow: none;
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.play-btn-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: #ff0000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
    z-index: 5;
}

.video-card:hover .play-btn-box {
    transform: translate(-50%, -50%) scale(1.1);
    background: #cc0000;
    box-shadow: none;
}

.play-icon {
    margin-left: 2px;
}

.video-title-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.95rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Arrow buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(14, 16, 22, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 35;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    box-shadow: none;
}

.carousel-arrow:hover {
    background: rgba(38, 42, 56, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: clamp(2px, 2vw, 20px);
}

.next-arrow {
    right: clamp(2px, 2vw, 20px);
}

/* 3D Card Positioning States */
.video-card.card-active {
    transform: translateX(0) scale(1) translateZ(0);
    opacity: 1;
    filter: brightness(1);
    z-index: 10;
    border-color: #2d313e;
    box-shadow: none;
}

.video-card.card-left {
    transform: translateX(-44%) scale(0.82) translateZ(-80px);
    opacity: 0.4;
    filter: brightness(0.45) blur(1px);
    z-index: 5;
    box-shadow: none;
}

.video-card.card-right {
    transform: translateX(44%) scale(0.82) translateZ(-80px);
    opacity: 0.4;
    filter: brightness(0.45) blur(1px);
    z-index: 5;
    box-shadow: none;
}

.video-card.card-hidden {
    transform: translateX(0) scale(0.6) translateZ(-160px);
    opacity: 0;
    filter: brightness(0.2) blur(3px);
    z-index: 1;
    pointer-events: none;
}

/* Video Player Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 880px;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(56, 189, 248, 0.15);
    z-index: 2;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 15;
    font-size: 26px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal-iframe-container {
    width: 100%;
    height: 100%;
}

.video-modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.continuation-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 16px 16px;
}

.image-blend-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(5, 5, 8, 0.75) 60%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
    z-index: 6;
}

.image-blend-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(5, 5, 8, 0.75) 40%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 6;
}

.feedback-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 15;
    padding: 0.5rem 0.95rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.81rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    user-select: none;
    pointer-events: none;
}

.pricing-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.pricing-header-container {
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 5;
}

.pricing-title {
    font-size: clamp(2.0rem, 3.6vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.pricing-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1320px;
    position: relative;
    z-index: 5;
    padding: 1rem 0;
}

/* Card Structure */
.pricing-card {
    position: relative;
    background-color: #0d0d10;
    border-radius: 20px;
    border: 1px solid #1a1a1f;
    padding: 2.6rem 2.2rem 2.2rem 2.2rem;
    width: 395px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card Header Banner Image with Smooth Bottom Blend */
.card-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 185px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    border-radius: 19px 19px 0 0;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0) 100%);
}

.card-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 19px 19px 0 0;
    background: linear-gradient(to bottom, rgba(13, 13, 16, 0.1) 0%, rgba(13, 13, 16, 0.5) 60%, rgba(13, 13, 16, 1) 100%);
    pointer-events: none;
}

.pricing-card.main-card .card-banner-bg::after {
    background: linear-gradient(to bottom, rgba(17, 17, 21, 0.1) 0%, rgba(17, 17, 21, 0.5) 60%, rgba(17, 17, 21, 1) 100%);
}

.pricing-card.side-card.left-card {
    z-index: 2;
    transform: scale(0.96);
    margin-right: -20px;
    opacity: 0.92;
}

.pricing-card.side-card.right-card {
    z-index: 2;
    transform: scale(0.96);
    margin-left: -20px;
    opacity: 0.92;
}

.pricing-card.main-card.center-card {
    z-index: 5;
    transform: scale(1.06);
    background-color: #111115;
    border: 1.5px solid #23232a;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #19191e;
    border: 1px solid #282830;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 1.25rem;
    border-radius: 999px;
    z-index: 25;
}

.card-stock-badge,
.pricing-stock-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
    z-index: 10;
    user-select: none;
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.card-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.card-price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.card-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.card-period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.45rem;
    font-weight: 400;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.feature-list li {
    font-size: 0.96rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.35;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.card-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-radius: 12px;
    background: #3b82f6;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    transition: background-color 0.2s ease;
}

.card-btn:hover {
    background: #2563eb;
}

/* Responsive Pricing & Layouts */
@media (max-width: 960px) {
    .pricing-cards-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 1rem 0;
    }

    .pricing-card.side-card.left-card,
    .pricing-card.side-card.right-card,
    .pricing-card.main-card.center-card {
        margin: 0;
        transform: scale(1) !important;
        opacity: 1 !important;
        width: 100%;
        max-width: 360px;
    }

    .pricing-page {
        padding: 0 1rem 3rem 1rem;
        height: auto;
        min-height: 100vh;
    }

    .pricing-container {
        margin-top: 2.5rem;
    }

    .blank-page {
        height: auto;
        min-height: 100vh;
        padding: 2.5rem 1rem;
    }

    .page3-card {
        padding: 1.2rem;
        height: auto;
    }

    .page3-top-section {
        grid-template-columns: 1fr;
    }

    .page3-card-top-left {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .page3-card-top-left .page3-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .page3-stats-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   5. Localized Strong Neon Cursor Border Glow Engine
   ========================================================================== */

.glow-target {
    position: relative;
    --mouse-x: 50%;
    --mouse-y: 50%;
    --glow-opacity: 0;
}

/* Very Thin, Ultra-Strong Neon Border Spotlight localized ONLY to cursor zone */
.glow-target::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: radial-gradient(
        130px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        #ffffff 0%,
        #00f0ff 25%,
        #38bdf8 55%,
        rgba(56, 189, 248, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
    opacity: var(--glow-opacity, 0);
    transition: opacity 0.12s ease-out;
    filter: drop-shadow(0 0 5px #00f0ff) drop-shadow(0 0 14px #00f0ff) drop-shadow(0 0 22px #38bdf8);
}

/* Page 1 Image (Top, Left, Right ONLY - No bottom glow at seam) */
.surface-page .image-wrapper::before {
    padding: 2px 2px 0 2px;
}

/* Page 2 Continuation Image (Bottom, Left, Right ONLY - No top glow at seam) */
.continuation-image-wrapper::before {
    padding: 0 2px 2px 2px;
}

/* Side Card Hover Polish */
.pricing-card.side-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-card.side-card:hover {
    opacity: 1;
}

/* ==========================================================================
   6. Apple-Style Expanding White Acrylic Modal
   ========================================================================== */

.pricing-expand-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    pointer-events: none;
}

.pricing-expand-modal.active {
    display: block;
    pointer-events: auto;
}

.pricing-expand-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.44s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-expand-modal.active .pricing-expand-backdrop {
    opacity: 1;
}

.pricing-expand-card {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    height: calc(100vh - 28px);
    z-index: 10000;
    box-sizing: border-box;
    overflow: hidden;
    /* White Acrylic Blur Glassmorphism - Slightly Darker - No border */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(35px) saturate(160%) brightness(96%);
    -webkit-backdrop-filter: blur(35px) saturate(160%) brightness(96%);
    border: none;
    outline: none;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    transform-origin: top left;
    will-change: transform, opacity;
    pointer-events: auto;
    cursor: default;
    opacity: 0;
}

.pricing-expand-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease 0.15s, background 0.2s ease, transform 0.2s ease;
}

.pricing-expand-modal.active .pricing-expand-close {
    opacity: 1;
    pointer-events: auto;
}

.pricing-expand-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.08);
}

/* Confetti Canvas */
.confetti-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

/* Scrollable Inner Container - Wide and Spacious */
.pricing-expand-inner {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    position: relative;
    z-index: 10;
}

.pricing-expand-modal.active .pricing-expand-inner {
    opacity: 1;
    transform: translateY(0);
}

/* Checkout View Layout */
.checkout-view {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    width: 100%;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.2rem;
}

.checkout-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.checkout-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
}

.checkout-price-box {
    text-align: right;
}

.checkout-price {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.checkout-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin-left: 0.25rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1.8rem, 3.5vw, 2.8rem);
    align-items: stretch;
}

.checkout-card-section {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.section-label {
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
}

.checkout-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.checkout-input-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.checkout-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s, background 0.15s;
}

.checkout-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
}

.checkout-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.payment-method-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}

.payment-method-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.payment-method-card.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.75);
}

.payment-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0E0E10;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.payment-method-card.active .payment-icon-box {
    background: #0E0E10;
    border-color: rgba(255, 255, 255, 0.4);
}

.payment-icon-box svg {
    width: 22px;
    height: 22px;
}

.payment-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.checkout-summary-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.88rem;
    margin-top: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
}

.summary-row.total {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 0.6rem;
    margin-top: 0.2rem;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.98rem;
}

.checkout-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: background 0.15s;
}

.checkout-submit-btn:hover {
    background: #e8e8e8;
}

.checkout-submit-btn:active {
    background: #d4d4d4;
}

.checkout-error {
    font-size: 0.84rem;
    color: #ff6b6b;
    margin-top: -0.3rem;
    display: none;
}

.checkout-error.visible {
    display: block;
}

/* ==========================================================================
   Loading Overlay with Fade Effect
   ========================================================================== */

.checkout-loading-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.checkout-loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Fading Gradient Tail Spinner with NO background copy */
.apple-spinner {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0.25) 60%,
        rgba(255, 255, 255, 0.65) 85%,
        #ffffff 100%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4.5px), #000 calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4.5px), #000 calc(100% - 4px));
    animation: spinFadingTail 0.75s linear infinite;
}

@keyframes spinFadingTail {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Order Placed Success View (No Checkmark Icon)
   ========================================================================== */

.order-placed-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    margin: auto;
    max-width: 600px;
    width: 100%;
    animation: successFadeIn 0.4s ease forwards;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.success-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.order-receipt-card {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
}

.receipt-label {
    color: rgba(255, 255, 255, 0.6);
}

.receipt-value {
    color: #ffffff;
    font-weight: 600;
}

.order-done-btn {
    padding: 0.9rem 2.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.15s;
}

.order-done-btn:hover {
    background: rgba(255, 255, 255, 0.26);
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    .checkout-header {
        flex-direction: column;
        gap: 0.6rem;
    }
    .checkout-price-box {
        text-align: left;
    }
}


@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    .checkout-header {
        flex-direction: column;
        gap: 0.6rem;
    }
    .checkout-price-box {
        text-align: left;
    }
}




