html {
    scroll-behavior: smooth;
}

:root {
    /* Liquid Glass Color Palette - Soft & Premium */
    --primary-blue: #bde0fe;
    --primary-pink: #ffc8dd;
    --accent-blue: #a2d2ff;
    --accent-pink: #ffafcc;
    --bg-main: #fcfdfe;
    --text-dark: #0f172a;
    --text-muted: #64748b;

    /* Advanced Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    --glass-blur: 25px;
}

/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.85) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-overlay.active .lightbox-wrapper {
    transform: scale(1) translateY(0);
}

.lightbox-content {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-btn {
    background: #fff !important;
    color: var(--text-dark) !important;
    padding: 1.2rem 3.5rem !important;
    font-size: 1.2rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.lightbox-btn:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3) !important;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    background: #fff;
    color: var(--text-dark);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-btn {
        padding: 1rem 2.5rem !important;
        font-size: 1rem !important;
        width: 100%;
    }

    .lightbox-content {
        max-height: 60vh;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Liquid Animated Background Assets */
.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f1f5f9 100%);
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.4;
    animation: liquid-move 30s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    top: -200px;
    right: -150px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue));
}

.blob-2 {
    bottom: -200px;
    left: -150px;
    background: linear-gradient(45deg, var(--primary-pink), var(--accent-pink));
    animation-delay: -10s;
}

@keyframes liquid-move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(100px, 50px) scale(1.1) rotate(20deg);
    }

    66% {
        transform: translate(-50px, 150px) scale(0.9) rotate(-15deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

/* Base Components */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: var(--glass-shadow);
}

/* Navigation - Floating Liquid Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    margin-top: 2rem;
    position: sticky;
    top: 2rem;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-dark), var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: var(--accent-pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Hero Section - The WOW factor */
.hero {
    padding: 8rem 0 4rem;
    /* Reduced from 10rem 6rem */
    text-align: center;
}

.badge-trust {
    background: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-bottom: 2.5rem;
    border: 1px solid #ecfdf5;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1.2;
    /* Breathable spacing between lines */
    margin-bottom: 2rem;
    letter-spacing: -4px;
    font-weight: 900;
    color: var(--text-dark);
}

.hero h1 span {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
}

/* Scrolling Before/After */
.gallery-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.2);
}

.scroll-container {
    overflow: hidden;
    padding: 2rem 0;
}

.scroll-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: slide-left 50s linear infinite;
}

.scroll-track.reverse {
    animation: slide-right 50s linear infinite;
}

@keyframes slide-left {
    to {
        transform: translateX(-50%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.comparison-card {
    width: 500px;
    padding: 1.2rem;
    background: #fff;
    border-radius: 35px;
    box-shadow: var(--glass-shadow);
    display: flex;
    gap: 1.2rem;
}

.compare-item {
    flex: 1;
    position: relative;
}

.compare-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 24px;
}

.label-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Process Steps */
.process-section {
    padding: 8rem 0;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    padding: 3rem 2rem;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Main Pose Gallery */
.gallery-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.pose-card {
    padding: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-bg);
}

.pose-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.pose-card .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.pose-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    margin-bottom: 0;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pose-card:hover img {
    transform: scale(1.1);
}

.pose-meta {
    padding: 0.5rem;
}

.pose-price {
    display: none;
    /* Removed as per user request */
}

/* Ratio Selection Styles */
.selection-item label {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* Fixed height for consistency */
    gap: 10px;
}

.ratio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 4px;
    opacity: 0.4;
    transition: all 0.3s;
}

.ratio-box.vertical {
    width: 22px;
    height: 35px;
}

.ratio-box.square {
    width: 30px;
    height: 30px;
}

.ratio-box.horizontal {
    width: 40px;
    height: 22px;
}

.selection-item input:checked+label .ratio-box {
    opacity: 1;
    border-width: 3px;
    transform: scale(1.1);
}

/* Action Buttons */
.btn-primary {
    background: var(--text-dark);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    background: #000;
}

.login-btn-desktop {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink)) !important;
    color: var(--text-dark) !important;
    border: none !important;
}

.login-btn-desktop:hover {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue)) !important;
    transform: translateY(-5px) scale(1.05) !important;
}

/* Credit Badge */
.credit-badge {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid var(--glass-border);
}

/* Auth Pages */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 3.5rem;
    text-align: center;
}

.auth-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    letter-spacing: -1px;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    padding-left: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Nav Container */
.mobile-nav-container {
    position: relative;
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-container {
        display: block;
    }
}

/* Mobile Menu Toggle Styling */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: top right;
    z-index: 2000;
}

.mobile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-links a:hover {
    background: var(--bg-main);
    transform: translateX(5px);
}

.mobile-credit-link {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink)) !important;
    color: var(--text-dark) !important;
    border: none !important;
}

.mobile-login-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-pink)) !important;
    color: var(--text-dark) !important;
    border: none !important;
}

/* Hamburger Sync Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}


/* Utils */
.logout-link {
    margin-left: 1rem;
    color: #ef4444 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.add-credits-btn {
    margin-left: 8px;
    background: var(--accent-blue);
    color: #fff !important;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    vertical-align: middle;
    transition: transform 0.3s;
}

.add-credits-btn:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .comparison-card {
        width: 340px;
        padding: 1rem;
    }

    .compare-item img {
        height: 200px;
    }

    .container {
        padding: 0 1rem;
        /* Reduced padding to prevent overflow and bridge gaps */
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.4;
    }

    .gallery-title {
        font-size: 2.2rem;
        flex-wrap: wrap;
        justify-content: center !important;
        text-align: center;
        gap: 0.5rem;
    }

    .navbar {
        padding: 0.7rem 1.2rem;
        margin: 0.5rem auto;
        /* Clean margins */
        position: sticky;
        top: 0.5rem;
        border-radius: 20px;
        width: 100%;
        /* Fill container width */
        max-width: 100%;
    }

    .hero {
        padding: 3rem 0 2rem;
        /* Significantly reduced for mobile */
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .pose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0;
        /* Remove padding to center accurately within container */
        width: 100%;
        margin: 0 auto;
        justify-items: stretch;
        /* Stretch to fill column width */
    }

    .pose-card {
        padding: 0.6rem;
        border-radius: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .image-container {
        width: 100%;
        aspect-ratio: 4 / 5 !important;
        border-radius: 18px;
        overflow: hidden;
        display: block;
        background: rgba(0, 0, 0, 0.03);
        /* Placeholder space */
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .pose-meta {
        padding: 1rem 0.5rem 0.5rem !important;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .pose-meta h3 {
        font-size: 0.85rem !important;
        margin-bottom: 0.3rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cta-mini {
        padding: 0.6rem !important;
        font-size: 0.8rem !important;
        border-radius: 12px !important;
        margin-top: auto;
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        width: 280px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* Elite Glass Footer */
.footer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-top: 1px solid var(--glass-border);
    padding: 6rem 0 3rem;
    margin-top: 8rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent-pink);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--text-dark);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
        text-align: center;
        margin-top: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}

.footer-bottom {
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Comparison Section Styles - Elite Liquid Glass */
.comparison-section {
    padding: 10rem 0;
    position: relative;
    z-index: 10;
}

.comparison-table {
    overflow: hidden;
    padding: 0 !important;
    border: 1px solid var(--glass-border);
    border-radius: 48px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: background 0.3s;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.3);
}

.table-row:last-child {
    border-bottom: none;
}

.table-head {
    background: rgba(15, 23, 42, 0.02);
    font-weight: 800;
}

.table-cell {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    color: var(--text-dark);
}

.table-cell:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.03);
}

/* Feature Column - Minimalist */
.table-cell:first-child {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Traditional Column - Subtly Muted */
.col-bad {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.col-bad .status-label {
    color: #ef4444;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* AI Column - Premium Liquid Glow */
.col-good {
    background: rgba(189, 224, 254, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

.col-good .status-label {
    color: #10b981;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.col-good::after {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 1px solid rgba(162, 210, 255, 0.3);
    border-right: 1px solid rgba(162, 210, 255, 0.3);
    pointer-events: none;
}

.table-head .col-bad {
    background: rgba(239, 68, 68, 0.05);
    color: #b91c1c;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.table-head .col-bad::before {
    content: "✕";
    background: #ef4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
}

.table-head .col-good {
    background: rgba(16, 185, 129, 0.05);
    color: #065f46;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.table-head .col-good::before {
    content: "✓";
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
}

@media (max-width: 992px) {
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        border-right: none;
        padding: 2rem;
        text-align: center;
    }

    .table-head {
        display: none;
    }

    .table-cell:first-child {
        background: var(--text-dark);
        color: white;
        padding: 1rem;
    }
}

/* Scrolling Before/After - Enhanced Liquid */
.scrolling-ba-section {
    padding: 10rem 0;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.scroll-container.full-width {
    width: 100%;
    position: relative;
    margin: 0;
}

.ba-scroll-card {
    flex: 0 0 520px;
    padding: 1.2rem;
    margin-right: 3rem;
    border-radius: 40px;
    /* Big rounded corners like screenshot */
}

.ba-scroll-card .pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.ba-scroll-card .img-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ba-scroll-card .img-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-scroll-card:hover img {
    transform: scale(1.1);
}

.label-circle {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.5px;
    line-height: 1;
}

.label-circle.ai {
    background: var(--text-dark);
    color: #fff;
    left: auto;
    right: 12px;
    width: auto;
    height: auto;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.scroll-track.reverse {
    animation: scroll-right 40s linear infinite;
}

.scroll-container:hover .scroll-track {
    animation-play-state: paused;
}

/* Before/After Showcase - Elite Horizontal */
.ba-showcase-section {
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.ba-horizontal-scroll {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 2rem 1rem 4rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

.ba-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.ba-horizontal-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.ba-horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.ba-premium-card {
    flex: 0 0 700px;
    padding: 1.5rem;
    scroll-snap-align: center;
    transition: all 0.4s ease;
}

.ba-premium-card:hover {
    transform: translateY(-10px);
}

.ba-card-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ba-image-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.ba-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ba-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.ba-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dark);
}

.ba-info {
    padding: 0.5rem;
}

.ba-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.ba-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .ba-premium-card {
        flex: 0 0 85vw;
    }

    .ba-image-pair {
        grid-template-columns: 1fr;
    }
}