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

::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

#fogCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    filter: blur(28px);
    opacity: 0.60;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.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);
    transform: translateZ(0);
}

.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;
    transform: translateZ(0);
    will-change: background-position;
    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: 1.0rem;
    max-width: 580px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    text-align: center;
}

.image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 5;
    animation: quickFadeInImage 0.50s cubic-bezier(0.16, 1, 0.3, 1) 80ms 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;
    transform: translateZ(0);
}

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

@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); }
}

.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, 2.0rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 2vw, 1.6rem);
    transform: translateZ(0);
}

.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;
    transform: translateZ(0);
}

.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;
    transform: translateZ(0);
}

.page3-right-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.25rem, 2.0vw, 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, #000000 0%, #000000 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, #000000 0%, #000000 18px, rgba(0,0,0,0.7) 28px, rgba(0,0,0,0.3) 36px, rgba(0,0,0,0.08) 42px, transparent 48px);
    transform: translateZ(0);
}

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

.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.20) 0%, rgba(45, 212, 191, 0.10) 60%, transparent 100%);
    pointer-events: none;
    filter: blur(2px);
    transform: translateZ(0);
}

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

.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, 2.0vw, 1.6rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    transform: translateZ(0);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.0rem, 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.50s cubic-bezier(0.16, 1, 0.3, 1) 80ms 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;
    transform: translateZ(0);
}

.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;
    transform: translateZ(0);
}

.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;
    box-shadow: none;
    backface-visibility: hidden;
    will-change: transform, opacity;
    transform: translateZ(0);
}

.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;
    will-change: transform;
}

.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;
    z-index: 5;
    will-change: transform;
}

.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.90rem;
    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);
}

.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);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    box-shadow: none;
    transform: translateY(-50%) translateZ(0);
}

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

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

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

.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.40;
    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.40;
    filter: brightness(0.45) blur(1px);
    z-index: 5;
    box-shadow: none;
}

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

.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);
    -webkit-backdrop-filter: blur(14px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 880px;
    aspect-ratio: 16 / 9;
    background: #000;
    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) translateZ(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

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

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 15;
    font-size: 26px;
    color: #fff;
    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, transform 0.2s;
}

.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.50rem 0.95rem;
    background: rgba(0, 0, 0, 0.40);
    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;
}

.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;
    transform: translateZ(0);
}

.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%);
    transform: translateZ(0);
}

.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%, #0d0d10 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%, #111115 100%);
}

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

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

.pricing-card.main-card.center-card {
    z-index: 5;
    transform: scale(1.06) translateZ(0);
    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 {
    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;
}

.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: 1.0rem;
    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;
}

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

    .pricing-card.main-card.center-card,
    .pricing-card.side-card.left-card,
    .pricing-card.side-card.right-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;
    }
}

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

.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);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity;
}

.surface-page .image-wrapper::before {
    padding: 2px 2px 0 2px;
}

.continuation-image-wrapper::before {
    padding: 0 2px 2px 2px;
}

.pricing-card.side-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.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);
    transform: translateZ(0);
}

.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;
    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;
    transform: translateZ(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 0.15s ease, 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 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.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-x: hidden;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s 0.1s ease, transform 0.3s 0.1s ease;
    position: relative;
    z-index: 10;
}

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

.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(2.0rem, 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, 2.0rem);
    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.90);
}

.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.90rem 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.60);
    background: rgba(255, 255, 255, 0.12);
}

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

.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 1.0rem;
    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.10);
    border-color: rgba(255, 255, 255, 0.25);
}

.payment-method-card.active {
    background: rgba(255, 255, 255, 0.20);
    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.40);
}

.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: 1.0rem;
    border-radius: 12px;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 1.0rem;
    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;
}

.checkout-terms-notice {
    font-size: 0.76rem;
    line-height: 1.5;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.85rem;
    letter-spacing: -0.01em;
}

.checkout-terms-inline-btn,
.checkout-terms-notice a,
.checkout-terms-link {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    color: #cbd5e1;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.25);
    text-underline-offset: 3px;
    transition: color 0.15s, text-decoration-color 0.15s;
    vertical-align: baseline;
    display: inline;
}

.checkout-terms-inline-btn strong,
.checkout-terms-notice a strong,
.checkout-terms-link strong {
    font-weight: 700;
    color: #ffffff;
}

.checkout-terms-inline-btn:hover,
.checkout-terms-notice a:hover,
.checkout-terms-link:hover {
    color: #38bdf8;
    text-decoration-color: #38bdf8;
}

.checkout-terms-inline-btn:hover strong,
.checkout-terms-notice a:hover strong,
.checkout-terms-link:hover strong {
    color: #38bdf8;
}

@keyframes slideInFromRightFull {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutToLeftFull {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideInFromLeftFull {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    15% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideOutToRightFull {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    85% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.view-slide-in-right {
    animation: slideInFromRightFull 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.view-slide-out-left {
    animation: slideOutToLeftFull 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.view-slide-in-left {
    animation: slideInFromLeftFull 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.view-slide-out-right {
    animation: slideOutToRightFull 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity;
}

.legal-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.4rem;
}

.legal-modal-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 50px;
    border-bottom: none;
    padding-bottom: 0.2rem;
}

.legal-modal-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.legal-modal-statement {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    text-align: center;
}

.legal-statement-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    letter-spacing: -0.01em;
}

.legal-intro-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.legal-sections-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-height: 52vh;
    overflow-y: auto;
    padding-right: 0.4rem;
}

.legal-sections-list::-webkit-scrollbar {
    width: 5px;
    display: block;
}

.legal-sections-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 3px;
}

.legal-sections-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.legal-section-item {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
}

.legal-section-title {
    font-size: 0.94rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.legal-num {
    color: #38bdf8;
}

.legal-section-body {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.legal-section-body strong {
    color: #ffffff;
    font-weight: 600;
}

.legal-conclusion-box {
    padding: 0.6rem 0 0.2rem 0;
    background: none;
    border: none;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #cbd5e1;
    text-align: left;
}

.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;
    transform: translateZ(0);
}

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

.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 0 calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4.5px), #000 0 calc(100% - 4px));
    animation: spinFadingTail 0.75s linear infinite;
    transform: translateZ(0);
    will-change: transform;
}

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

.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: 1.0rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 2.0rem;
}

.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: 2.0rem;
    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);
}

body.modal-open .side-nav-container,
.pricing-expand-modal.active ~ .side-nav-container,
.pricing-expand-modal.active ~ #sideNav {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-50%) translateX(100%) !important;
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.side-nav-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(50%);
    z-index: 999;
    display: flex;
    align-items: center;
    background: #0d0d10;
    border: none;
    outline: none;
    border-radius: 12px 0 0 12px;
    padding: 8px 14px 8px 12px;
    cursor: pointer;
    user-select: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
    will-change: transform;
}

.side-nav-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
}

.side-nav-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 6px 10px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-align: left;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.side-nav-btn:hover {
    color: #f1f5f9;
}

.side-nav-btn.active {
    color: #ffffff;
    font-weight: 700;
}

.side-nav-container:hover,
.side-nav-container.is-expanded,
.side-nav-container.is-scrolling {
    transform: translateY(-50%) translateX(0);
    background: #111115;
}

@media (max-width: 768px) {
    html, body {
        scroll-snap-type: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        height: auto !important;
        min-height: 100vh;
    }

    .page {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        width: 100% !important;
        contain: none !important;
    }

    .side-nav-container {
        display: none !important;
    }

    .surface-page {
        padding: 4.2rem 1.25rem 0 1.25rem;
        min-height: 100svh;
        height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .text-section {
        transform: none !important;
        animation: none !important;
        padding: 0;
        margin-bottom: 2.2rem;
    }

    .main-text {
        font-size: clamp(2.1rem, 8.5vw, 2.75rem);
        line-height: 1.15;
    }

    .sub-text {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-top: 0.85rem;
        padding: 0 0.5rem;
    }

    .image-wrapper {
        height: auto;
        max-height: 240px;
        border-radius: 14px 14px 0 0;
    }

    .photo-page {
        padding: 0 1.25rem 3.5rem 1.25rem;
        height: auto !important;
        min-height: auto !important;
    }

    .continuation-image-wrapper {
        height: auto;
        max-height: 220px;
        border-radius: 0 0 14px 14px;
        margin-bottom: 1.75rem;
    }

    .feedback-badge {
        font-size: 0.80rem;
        padding: 5px 12px;
        bottom: 10px;
        right: 10px;
    }

    .video-carousel-container {
        width: 100%;
        margin-top: 1rem;
    }

    .media-title {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
    }

    .carousel-track-wrapper {
        position: relative;
        height: 195px;
        max-width: 100%;
        margin: 0.25rem 0;
        overflow: visible;
    }

    .video-card {
        width: clamp(250px, 80vw, 340px);
        border-radius: 14px;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        z-index: 30;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .prev-arrow {
        left: 4px;
    }

    .next-arrow {
        right: 4px;
    }

    .play-btn-box {
        width: 50px;
        height: 36px;
        border-radius: 10px;
    }

    .play-btn-box svg {
        width: 16px;
        height: 16px;
    }

    .video-title-bar {
        font-size: 0.78rem;
        padding: 0.6rem 0.85rem;
    }

    .blank-page {
        padding: 3rem 1.25rem;
        height: auto !important;
        min-height: auto !important;
    }

    .page3-card {
        padding: 1.25rem;
        border-radius: 16px;
        gap: 1.2rem;
    }

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

    .page3-card-top-left {
        max-width: 100%;
        width: 100%;
        border-radius: 14px;
        overflow: hidden;
        display: block;
    }

    .page3-card-top-left .page3-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    .page3-card-right {
        padding: 1.25rem;
    }

    .page3-right-title {
        font-size: 1.35rem;
    }

    .page3-right-desc {
        font-size: 0.88rem;
        line-height: 1.5;
    }

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

    .page3-stat-card {
        padding: 1.1rem 1.25rem;
    }

    .stat-number {
        font-size: 2.1rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .pricing-page {
        padding: 3rem 1.25rem 4.5rem 1.25rem;
        height: auto !important;
        min-height: auto !important;
    }

    .pricing-container {
        margin-top: 0;
        width: 100%;
    }

    .pricing-header-container {
        margin-bottom: 1.5rem;
    }

    .pricing-title {
        font-size: 1.85rem;
    }

    .pricing-cards-container {
        flex-direction: column;
        gap: 1.75rem;
        align-items: center;
        width: 100%;
        padding: 0;
    }

    .pricing-card.main-card.center-card,
    .pricing-card.side-card.left-card,
    .pricing-card.side-card.right-card {
        width: 100%;
        max-width: 360px;
        margin: 0;
        transform: none !important;
        opacity: 1 !important;
        padding: 1.5rem 1.25rem;
    }

    .card-title {
        font-size: 1.35rem;
    }

    .card-price {
        font-size: 1.85rem;
    }

    .feature-list {
        margin-bottom: 1.5rem;
    }

    .feature-list li {
        font-size: 0.88rem;
        gap: 0.5rem;
    }

    .checkout-grid,
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .checkout-header {
        flex-direction: column;
        gap: 0.6rem;
    }

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

    .pricing-expand-card {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: calc(100vw - 16px);
        height: calc(100vh - 16px);
        border-radius: 16px;
    }
}