/* ============================================================
   Pixora V2 — Premium AI Image Editor Landing
   Stylesheet
   ============================================================ */

/* ============ 1. ROOT TOKENS ============ */
:root {
    /* Brand */
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #3B82F6;
    --primary-soft: #EFF6FF;
    --primary-softer: #F5F9FF;
    --indigo: #6366F1;
    --indigo-soft: #EEF2FF;
    --violet: #8B5CF6;

    /* Accents */
    --c-blue: #3B82F6;
    --c-indigo: #6366F1;
    --c-cyan: #06B6D4;
    --c-violet: #8B5CF6;
    --c-teal: #14B8A6;
    --c-pink: #EC4899;
    --c-amber: #F59E0B;
    --c-green: #16A34A;

    /* Ink scale */
    --ink: #0A1024;
    --ink-2: #1E293B;
    --text: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* Surface */
    --bg: #FFFFFF;
    --bg-soft: #F7F9FC;
    --bg-tint: #F0F5FF;
    --border: #E2E8F0;
    --border-soft: #EDF2F7;

    /* Dark */
    --dark-1: #07091A;
    --dark-2: #0F1228;
    --dark-3: #1A1B3D;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #3B82F6 0%, #6366F1 100%);
    --grad-primary-rev: linear-gradient(135deg, #6366F1 0%, #3B82F6 100%);
    --grad-hero: linear-gradient(180deg, #F5F9FF 0%, #EDF2FF 60%, #FFFFFF 100%);
    --grad-dark: linear-gradient(160deg, #1f2130 0%, #2b2c50 50%, #2c2a4c 100% 100%);
    --grad-text: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    --grad-text-soft: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    --grad-text-light: linear-gradient(135deg, #93C5FD 0%, #C4B5FD 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 40px 100px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 20px 60px rgba(59, 130, 246, 0.30);

    /* Radius */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-pill: 999px;
}

/* ============ 2. BASE ============ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

a { text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--primary-light); color: #fff; }

/* ============ 3. UTILITIES ============ */
.section-padding {
    padding: 90px 0;
}
@media (max-width: 768px) {
    .section-padding { padding: 70px 0; }
}

.section-head {
    margin: 0 auto 50px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 6px 14px;
    background: var(--primary-soft);
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}
.eyebrow.eyebrow-dark {
    background: rgba(139, 92, 246, 0.14);
    color: #C4B5FD;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    margin-bottom: 18px;
    color: var(--ink);
    letter-spacing: -0.025em;
}
.text-white { color: #fff !important; }

.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}
.section-sub.sub-dark { color: rgba(255,255,255,0.7); }

.title-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-italic {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.01em;
    font-size: 1.08em;
}
.title-italic-light {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    background: var(--grad-text-light);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.08em;
}

/* ============ 4. BUTTONS ============ */
.btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-grad-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
}
/* .btn-grad-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #6366F1, #3B82F6);
    opacity: 0;
    transition: opacity 0.3s;
} */
.btn-grad-primary span, .btn-grad-primary i { position: relative; z-index: 1; }
.btn-grad-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(59, 130, 246, 0.5);
    color: #fff;
}
/* .btn-grad-primary:hover::before { opacity: 1; } */

.btn-dark-pill {
    background: var(--ink);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9rem;
}
.btn-dark-pill:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.btn-light-pill {
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.btn-light-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    background: var(--grad-primary);
    color: var(--primary-softer);
}

.btn-ghost-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.22);
    padding: 11px 22px;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}

.btn-outline-pill {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
    padding: 12px 24px;
}
.btn-outline-pill:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

.btn-link-text {
    color: var(--text);
    font-weight: 600;
    padding: 6px 14px;
    background: transparent;
}
.btn-link-text:hover { color: var(--primary); }

/* ============ 5. HEADER ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink) !important;
    letter-spacing: -0.02em;
    max-width: 150px;
}
.brand-mark { width: 34px; height: 34px; display: inline-flex; }
.brand-mark svg { width: 100%; height: 100%; }

.nav-pills {
    display: flex;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-pill);
    padding: 5px;
    box-shadow: var(--shadow-xs);
    gap: 2px;
}
.nav-pill {
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 9px 18px;
    border-radius: var(--r-pill);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-pill:hover {
    color: var(--ink);
    background: rgba(59, 130, 246, 0.06);
}
.nav-pill.active {
    background: var(--ink);
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle {
    display: none;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 1.4rem;
    color: var(--ink);
    cursor: pointer;
}

/* ---- Nav user dropdown (logged-in state) ---- */
.nav-user-dropdown {
    position: relative;
}
.nav-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 14px 5px 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: border-color .2s;
}
.nav-user-btn:hover { border-color: var(--primary); }
.nav-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.nav-user-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    min-width: 200px;
    z-index: 9999;
    overflow: hidden;
}
.nav-user-menu.open { display: block; }
.num-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.num-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.num-plan { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.num-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    transition: background .15s;
}
.num-item:hover { background: var(--bg-soft); color: var(--primary); }
.num-item-danger { color: #e53e3e; }
.num-item-danger:hover { background: #fff5f5; color: #c53030; }
.num-divider { border-top: 1px solid var(--border); margin: 4px 0; }

@media (max-width: 991px) {
    .nav-pills {
        display: none;
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 10px;
        background: #fff;
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
    }
    .nav-pills.show { display: flex; }
    .nav-pill { width: 100%; padding: 12px 16px; }
    .nav-toggle { display: inline-flex; }
}

/* ============ 6. HERO ============ */
.hero {
    position: relative;
    padding: 130px 0 60px;
    overflow: hidden;
    background: var(--grad-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 70%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
}
.glow-blue {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #93C5FD, transparent 70%);
    top: -100px; left: -80px;
}
.glow-violet {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #C4B5FD, transparent 70%);
    bottom: -120px; right: -100px;
    animation: floatGlow 18s ease-in-out infinite alternate;
}
@keyframes floatGlow {
    0% { transform: translate(0,0); }
    100% { transform: translate(60px, -40px); }
}

/* Photo arch */
.photo-arch {
    position: relative;
    height: 360px;
    margin: 0 auto 40px;
    max-width: 1500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}
.photo-card {
    position: absolute;
    width: 130px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18), 0 0 0 4px rgba(255,255,255,0.85);
    background: #fff;
    transform: rotate(var(--rotate)) translateY(0);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: photoIn 1s ease-out var(--delay) both;
}
.photo-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.photo-card:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05);
    z-index: 10;
}
.pc-tag {
    position: absolute;
    bottom: 10px; left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.86);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pc-tag i { color: #FBBF24; font-size: 0.72rem; }
.pc-tag-primary {
    background: var(--grad-primary) !important;
}
.pc-tag-primary i { color: #fff; }

@keyframes photoIn {
    from { opacity: 0; transform: rotate(var(--rotate)) translateY(40px); }
    to { opacity: 1; transform: rotate(var(--rotate)) translateY(0); }
}

/* Arch positioning */
.pc-1 { left: 5%; bottom: 30px; }
.pc-2 { left: 16%; bottom: 80px; }
.pc-3 { left: 28%; bottom: 130px; }
.pc-4 {
    left: 45%;
    transform: translateX(-50%) rotate(0deg);
    bottom: 150px;
    width: 177px;
    height: 216px;
    z-index: 3;
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4), 0 0 0 4px #fff;
}
.pc-4:hover { transform: translateX(-50%) translateY(-12px) scale(1.05); }
.pc-5 { right: 28%; bottom: 130px; }
.pc-6 { right: 16%; bottom: 80px; }
.pc-7 { right: 5%; bottom: 30px; }

@media (max-width: 991px) {
    .photo-arch { height: 280px; max-width: 100%; padding: 0 10px; }
    .photo-card { width: 90px; height: 120px; }
    .pc-1, .pc-7 { display: none; }
    .pc-2 { left: 4%; bottom: 30px; }
    .pc-3 { left: 18%; bottom: 80px; }
    .pc-4 { bottom: 110px; width: 110px; height: 140px; }
    .pc-5 { right: 18%; bottom: 80px; }
    .pc-6 { right: 4%; bottom: 30px; }
    .pc-tag { font-size: 0.6rem; padding: 3px 8px; }
}
@media (max-width: 575px) {
    .photo-arch { height: 220px; }
    .photo-card { width: 70px; height: 95px; }
    .pc-2, .pc-6 { display: none; }
    .pc-3 { left: 6%; bottom: 50px; }
    .pc-4 { bottom: 90px; width: 90px; height: 115px; }
    .pc-5 { right: 6%; bottom: 50px; }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}
@media (min-width: 640px) {
    .hero-content {
        margin-top: -100px;
    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 7px 16px;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    margin-bottom: 26px;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(59,130,246,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(59,130,246,0.05); }
}

.hero-title {
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    color: var(--ink);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Upload-style CTA */
.hero-upload {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-2xl);
    padding: 12px;
    max-width: 620px;
    margin: 0 auto 50px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.10), 0 0 0 1px rgba(59, 130, 246, 0.04);
    position: relative;
}
.hero-upload::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--r-2xl);
    background: linear-gradient(135deg, rgba(59,130,246,0.4), rgba(139, 92, 246, 0.4), transparent);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}
.upload-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 18px;
    background: var(--bg-soft);
    border-radius: 26px;
    border: 1px dashed var(--border);
}
.upload-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.35);
    flex-shrink: 0;
}
.upload-text {
    flex: 1;
    text-align: left;
    min-width: 0;
}
.upload-text strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink);
    line-height: 1.3;
}
.upload-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.upload-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 12px 6px;
    flex-wrap: wrap;
}
.trust-avatars { display: flex; }
.trust-avatars img {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-stars {
    color: var(--c-amber);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.trust-stars strong { color: var(--ink); margin-left: 6px; font-size: 0.85rem; }
.trust-text {
    font-size: 0.84rem;
    color: var(--text-muted);
}
.trust-text strong { color: var(--ink); }

@media (max-width: 600px) {
    .upload-inner { flex-direction: column; padding: 16px; text-align: center; }
    .upload-text { text-align: center; }
    .upload-inner .btn { width: 100%; }
}

/* Hero logos */
.hero-logos {
    text-align: center;
    margin-top: 20px;
}
.logos-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.logos-row {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    justify-content: center;
}
.logo-item {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: opacity 0.2s;
}
.logo-item i { font-size: 1.25rem; }
.logo-item:hover { opacity: 1; }

/* ============ 7. STATS BAND ============ */
.stats-band {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.stat-cell {
    text-align: center;
    padding: 10px;
}
.stat-number {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-number .of {
    font-size: 0.55em;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ============ 8. FEATURES — BENTO GRID ============ */
.features-section { background: var(--bg); }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.bento-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}
.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.18);
}

.bento-large {
    grid-column: span 4;
    grid-row: span 2;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 24px;
    min-height: 460px;
}
.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
}
.bento-small {
    grid-column: span 2;
    grid-row: span 1;
}
.bento-wide {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    align-items: center;
    padding: 40px;
    min-height: 320px;
}

@media (max-width: 1100px) {
    .bento-grid { grid-template-columns: repeat(4, 1fr); }
    .bento-large { grid-column: span 4; grid-row: span 1; min-height: auto; }
    .bento-medium { grid-column: span 2; }
    .bento-small { grid-column: span 2; }
    .bento-wide { grid-column: span 4; }
}
@media (max-width: 700px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium, .bento-small, .bento-wide { grid-column: span 1; }
    .bento-wide { grid-template-columns: 1fr; padding: 28px; }
}

.bento-dark {
    background: linear-gradient(160deg, #0F1228 0%, #1A1B3D 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
}
.bento-gradient {
    background: linear-gradient(135deg, #3B82F6 0%, #6366F1 60%, #8B5CF6 100%);
    color: #fff;
    border: none;
}

.bento-content {
    display: flex;
    flex-direction: column;
}
.bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
    align-self: flex-start;
}
.bento-tag-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(4px);
}
.bento-tag-light i { color: #FBBF24; }

.bento-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.bento-dark .bento-title, .bento-gradient .bento-title { color: #fff; }
.bento-large .bento-title { font-size: 1.7rem; }
.bento-wide .bento-title { font-size: 1.75rem; }

.bento-text {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0;
}
.bento-text-light { color: rgba(255,255,255,0.8); }
.bento-dark .bento-text { color: rgba(255,255,255,0.65); }

.bento-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.icon-blue { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.icon-indigo { background: linear-gradient(135deg, #818CF8, #6366F1); }
.icon-cyan { background: linear-gradient(135deg, #22D3EE, #06B6D4); }
.icon-violet { background: linear-gradient(135deg, #A78BFA, #8B5CF6); }
.icon-pink { background: linear-gradient(135deg, #F472B6, #EC4899); }
.icon-teal { background: linear-gradient(135deg, #2DD4BF, #14B8A6); }

.bento-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    align-self: flex-start;
}
.bento-link:hover { gap: 10px; }
.bento-link.text-white { color: #fff; }

/* Bento-large bg-remover visual */
.bg-remover-visual {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.checker-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, #475569 25%, transparent 25%),
        linear-gradient(-45deg, #475569 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #475569 75%),
        linear-gradient(-45deg, transparent 75%, #475569 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #1E293B;
    opacity: 0.5;
}
.cutout-img {
    position: relative;
    z-index: 2;
    height: 260px;
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    filter: drop-shadow(0 16px 30px rgba(0,0,0,0.4));
}
.cutout-handles {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 280px;
    z-index: 3;
    pointer-events: none;
}
.cutout-handles .h {
    position: absolute;
    width: 14px; height: 14px;
    background: #3B82F6;
    border: 2px solid #fff;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}
.h-tl { top: -7px; left: -7px; }
.h-tr { top: -7px; right: -7px; }
.h-bl { bottom: -7px; left: -7px; }
.h-br { bottom: -7px; right: -7px; }
.cutout-chip {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    z-index: 4;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cutout-chip i { color: #16A34A; }

/* Mini visual for retouching */
.bento-mini-visual {
    background: var(--bg-soft);
    border-radius: 14px;
    padding: 16px;
    margin-top: auto;
}
.mini-slider {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}
.mini-slider span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}
.ms-bar {
    height: 6px;
    background: var(--border-soft);
    border-radius: var(--r-pill);
    overflow: hidden;
}
.ms-bar span {
    display: block;
    height: 100%;
    background: var(--grad-primary);
    border-radius: var(--r-pill);
    animation: barFill 1.5s ease-out;
}
@keyframes barFill { from { width: 0 !important; } }

/* Filter chips card */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.chip {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    color: #fff;
}
.chip-warm { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.chip-noir { background: linear-gradient(135deg, #1F2937, #4B5563); }
.chip-vivid { background: linear-gradient(135deg, #EC4899, #8B5CF6); }
.chip-pastel { background: linear-gradient(135deg, #FBCFE8, #A78BFA); }
.chip-film { background: linear-gradient(135deg, #92400E, #B45309); }
.chip-mono { background: linear-gradient(135deg, #9CA3AF, #4B5563); }

/* Eraser visual */
.eraser-visual {
    height: 100%;
    min-height: 240px;
}
.eraser-frame {
    position: relative;
    height: 100%;
    min-height: 240px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #1E293B;
}
.eraser-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eraser-stroke {
    position: absolute;
    top: 30%; left: 20%;
    width: 60%;
    height: 24px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--r-pill);
    box-shadow:
        0 0 0 2px rgba(255,255,255,0.4),
        0 0 30px rgba(255,255,255,0.6);
    animation: eraserMove 3s ease-in-out infinite alternate;
}
@keyframes eraserMove {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(80px) translateX(20px); }
}
.eraser-cursor {
    position: absolute;
    top: 30%; left: 78%;
    width: 36px; height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    animation: eraserMove 3s ease-in-out infinite alternate;
}

/* ============ 9. HOW IT WORKS (DARK) ============ */
.how-section {
    position: relative;
    background: var(--grad-dark);
    overflow: hidden;
    color: #fff;
}
.how-bg { position: absolute; inset: 0; pointer-events: none; }
.how-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 40% 70%, white, transparent),
        radial-gradient(2px 2px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 60% 20%, white, transparent),
        radial-gradient(2px 2px at 80% 40%, white, transparent),
        radial-gradient(1px 1px at 90% 80%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent),
        radial-gradient(2px 2px at 75% 15%, white, transparent),
        radial-gradient(1px 1px at 33% 55%, white, transparent),
        radial-gradient(1px 1px at 67% 75%, white, transparent);
    background-size: 800px 800px;
    opacity: 0.4;
    animation: starShift 60s linear infinite;
}
@keyframes starShift {
    from { background-position: 0 0; }
    to { background-position: 800px 800px; }
}
.how-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}
.how-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #6366F1, transparent);
    top: -150px; left: -120px;
}
.how-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #8B5CF6, transparent);
    bottom: -150px; right: -120px;
}

.steps-stack {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 30px;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.step-row.reverse { grid-template-columns: 1.1fr 1fr; }
.step-row.reverse .step-info { order: 2; }
.step-row.reverse .step-visual { order: 1; }
@media (max-width: 991px) {
    .step-row, .step-row.reverse { grid-template-columns: 1fr; gap: 40px; }
    .step-row.reverse .step-info { order: 1; }
    .step-row.reverse .step-visual { order: 2; }
    .steps-stack { gap: 70px; }
}

.step-info { padding: 0 10px; }
.step-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.step-num {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #A5B4FC;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.step-dot {
    width: 6px; height: 6px;
    background: #6366F1;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.step-heading {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 18px;
}

.step-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.step-list i {
    width: 22px; height: 22px;
    background: rgba(99, 102, 241, 0.25);
    color: #A5B4FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* UI mockup cards */
.step-visual { position: relative; }
.ui-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}
.ui-card:hover { transform: rotate(0deg); }
.reverse .ui-card { /*transform: rotate(1deg);*/ }
.reverse .ui-card:hover { transform: rotate(0deg); }

.ui-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ui-dots {
    display: inline-flex;
    gap: 6px;
}
.ui-dots i {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.ui-dots i:nth-child(1) { background: #FB7185; }
.ui-dots i:nth-child(2) { background: #FBBF24; }
.ui-dots i:nth-child(3) { background: #34D399; }

.ui-title {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.ui-body {
    padding: 24px;
    background: rgba(15, 23, 42, 0.4);
}

/* Step 1: Upload mock */
.drop-zone {
    background: rgba(99, 102, 241, 0.08);
    border: 2px dashed rgba(99, 102, 241, 0.4);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
}
.drop-zone i {
    font-size: 2.4rem;
    color: #A5B4FC;
    margin-bottom: 14px;
    display: block;
}
.drop-zone strong {
    display: block;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    margin-bottom: 4px;
}
.drop-zone span {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 14px;
}
.up-progress {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--r-pill);
    overflow: hidden;
    margin-bottom: 8px;
}
.up-progress span {
    display: block;
    height: 100%;
    width: 72%;
    background: var(--grad-primary);
    border-radius: var(--r-pill);
    animation: uploadProgress 3s ease-in-out infinite;
}
@keyframes uploadProgress {
    0%, 100% { width: 0; }
    50% { width: 78%; }
}
.drop-zone small {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
}
.upload-sources {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.upload-sources button {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 90px;
}

/* Step 2: Tools mock */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.tool-tile {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 14px 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.tool-tile i { display: block; font-size: 1.3rem; margin-bottom: 6px; color: #A5B4FC; }
.tool-tile span { font-size: 0.74rem; font-weight: 500; }
.tool-tile.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}
.tool-tile.active i { color: #fff; }

.opt-label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 10px;
}
.opt-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.opt-thumb {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.opt-thumb.active {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}
.opt-1 { background: linear-gradient(135deg, #FBBF24, #EF4444); }
.opt-2 { background: linear-gradient(135deg, #3B82F6, #6366F1); }
.opt-3 { background: linear-gradient(135deg, #14B8A6, #06B6D4); }
.opt-4 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }

/* Step 3: Export mock */
.export-preview {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 140px;
}
.export-preview img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.exp-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.exp-row > span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    font-weight: 500;
}
.exp-pills { display: flex; gap: 6px; }
.exp-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}
.exp-pill.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}
.exp-download {
    margin-top: 14px;
    width: 100%;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.how-cta {
    text-align: center;
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.how-cta .btn { padding: 14px 32px; font-size: 1rem; }
.cta-fine {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============ 10. SHOWCASE / COMPARE SLIDER ============ */
.showcase-section { background: var(--bg); }

.compare-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.compare {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #1E293B;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.18);
    user-select: none;
    cursor: ew-resize;
}
.compare-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.compare-after {
    filter: saturate(1.3) contrast(1.08) brightness(1.05);
}
.compare-before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    transition: width 0.05s linear;
}
.compare-before-wrap .compare-before {
    width: calc(100vw);
    max-width: 1100px;
    height: 100%;
    filter: saturate(0.5) brightness(0.85) contrast(0.9);
}
.compare-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.handle-line {
    position: absolute;
    inset: 0;
    background: #fff;
}
.handle-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 0 4px rgba(255,255,255,0.2);
    cursor: ew-resize;
    pointer-events: auto;
}
.handle-circle i {
    color: var(--ink);
    font-size: 1.1rem;
    margin: 0 -2px;
}

.compare-label {
    position: absolute;
    top: 20px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.label-before { left: 20px; }
.label-after { right: 20px; background: rgba(59, 130, 246, 0.9); }

.compare-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 30px 40px;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    max-width: 800px;
    margin: -40px auto 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}
.cb-item { text-align: center; flex: 1; min-width: 120px; }
.cb-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.cb-label {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-top: 6px;
}
.cb-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
@media (max-width: 575px) {
    .cb-divider { display: none; }
}

/* ============ 11. TESTIMONIALS ============ */
.testimonials-section { background: var(--bg-soft); }

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.15);
}
.testimonial-card.t-feature {
    background: linear-gradient(160deg, #EFF6FF 0%, #FFFFFF 100%);
    border-color: rgba(59, 130, 246, 0.2);
}
.testimonial-card.t-dark {
    background: linear-gradient(160deg, #0F1228 0%, #1A1B3D 100%);
    color: #fff;
    border-color: transparent;
}
.testimonial-card.t-dark .t-quote { color: rgba(255,255,255,0.9); }
.testimonial-card.t-dark .t-person strong { color: #fff; }
.testimonial-card.t-dark .t-person span { color: rgba(255,255,255,0.6); }

.t-stars {
    color: var(--c-amber);
    font-size: 1rem;
    margin-bottom: 18px;
}
.t-stars i { margin-right: 1px; }

.t-quote {
    font-size: 1.02rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.65;
    flex: 1;
}
.t-quote strong { color: var(--ink); }

.t-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}
.t-dark .t-person { border-top-color: rgba(255,255,255,0.1); }
.t-person img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.t-person strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 600;
}
.t-person span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============ 12. COMPARISON TABLE ============ */
.compare-table-section { background: var(--bg); }

.comparison-card {
    max-width: 920px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comp-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    align-items: center;
}
.comp-row:not(.comp-head) {
    border-top: 1px solid var(--border-soft);
}
.comp-row > div {
    padding: 22px 28px;
    font-size: 0.96rem;
}

.comp-head {
    background: var(--bg-soft);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
}
.comp-head > div { padding: 18px 28px; }
.comp-cell-pixora {
    background: linear-gradient(180deg, #EFF6FF 0%, transparent 100%);
    text-align: center;
}
.comp-brand {
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    letter-spacing: -0.02em;
    text-transform: none;
    font-weight: 700;
}
.comp-cell-other { text-align: center; }

.comp-cell-label {
    color: var(--text);
    font-weight: 500;
}
.comp-cell-pixora.highlight {
    background: linear-gradient(180deg, #EFF6FF 0%, #F5F9FF 100%);
    color: var(--ink);
    text-align: center;
    border-left: 2px solid rgba(59, 130, 246, 0.15);
    border-right: 2px solid rgba(59, 130, 246, 0.15);
}
.comp-cell-pixora.highlight i { color: var(--primary); margin-right: 6px; }
.comp-cell-pixora.highlight strong { font-family: 'Sora', sans-serif; }
.comp-cell-other { color: var(--text-muted); }
.comp-cell-other i { color: #EF4444; margin-right: 6px; }

@media (max-width: 768px) {
    .comp-row {
        grid-template-columns: 1fr 1fr;
    }
    .comp-row > div { padding: 14px 16px; font-size: 0.88rem; }
    .comp-cell-label {
        grid-column: 1 / -1;
        background: var(--bg-soft);
        font-weight: 700;
        color: var(--ink);
        padding: 12px 16px !important;
    }
    .comp-row.comp-head .comp-cell-label { display: none; }
}

/* ============ 13. PRICING ============ */
.pricing-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}
.pricing-bg { position: absolute; inset: 0; pointer-events: none; }
.pricing-blob {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    top: 0; left: 50%;
    transform: translateX(-50%);
    filter: blur(60px);
}

.billing-toggle {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 4px;
    border-radius: var(--r-pill);
    margin-top: 24px;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}
.bt-btn {
    background: transparent;
    border: none;
    padding: 9px 22px;
    border-radius: var(--r-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}
.bt-btn.active {
    background: var(--ink);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.save-pill {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-pill);
}
.bt-btn.active .save-pill { background: #34D399; color: #052E16; }

.price-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-xl);
    padding: 40px 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-card.popular {
    background: linear-gradient(180deg, #fff 0%, #F5F9FF 100%);
    border: 2px solid var(--primary-light);
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.18);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
@media (max-width: 991px) {
    .price-card.popular { transform: scale(1); }
    .price-card.popular:hover { transform: translateY(-4px); }
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--r-pill);
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.plan-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}
.plan-tagline {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0 0 22px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}
.plan-price .currency {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink);
}
.plan-price .amount {
    font-family: 'Sora', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
}
.plan-price .period {
    color: var(--text-muted);
    font-size: 0.92rem;
}
.plan-billed {
    color: var(--text-light);
    font-size: 0.82rem;
    margin: 0 0 24px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    border-top: 1px solid var(--border-soft);
    padding-top: 22px;
}
.plan-features li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}
.plan-features li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.plan-features li.muted { color: var(--text-light); }
.plan-features li.muted i { color: var(--text-light); }

.pricing-foot {
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ============ 14. FAQ ============ */
.faq-section { background: var(--bg); }
.faq-section .section-title { text-align: left; }
.faq-section .section-sub { text-align: left; margin-left: 0; }

.faq-support-card {
    margin-top: 30px;
    background: var(--bg-soft);
    border-radius: var(--r-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.fsc-avatars { display: flex; flex-shrink: 0; }
.fsc-avatars img {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
}
.fsc-avatars img:first-child { margin-left: 0; }
.faq-support-card strong {
    display: block;
    font-family: 'Sora', sans-serif;
    color: var(--ink);
    font-size: 0.95rem;
}
.faq-support-card span {
    font-size: 0.83rem;
    color: var(--text-muted);
}

.faq-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: var(--r-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.25);
}

.faq-accordion .accordion-button {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.02rem;
    padding: 22px 24px;
    background: #fff;
    box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary);
}
.faq-accordion .accordion-button::after {
    background-color: var(--primary-soft);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3e%3cpath fill-rule='evenodd' d='M8 5a.5.5 0 0 1 .5.5v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0v-2h-2a.5.5 0 0 1 0-1h2v-2A.5.5 0 0 1 8 5'/%3e%3c/svg%3e");
    background-position: center;
    background-size: 16px;
    width: 28px; height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8'/%3e%3c/svg%3e");
    background-color: var(--primary);
    transform: rotate(0);
}
.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ============ 15. CTA SECTION (DARK) ============ */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.cta-card {
    position: relative;
    background: var(--grad-dark);
    border-radius: var(--r-2xl);
    padding: 80px 40px;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.3);
}

.cta-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-glow-1 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.5), transparent 60%);
    top: -200px; left: -100px;
    filter: blur(100px);
}
.cta-glow-2 {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5), transparent 60%);
    bottom: -200px; right: -100px;
    filter: blur(100px);
}
.cta-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, white, transparent),
        radial-gradient(2px 2px at 30% 50%, white, transparent),
        radial-gradient(1px 1px at 50% 30%, white, transparent),
        radial-gradient(2px 2px at 70% 70%, white, transparent),
        radial-gradient(1px 1px at 90% 40%, white, transparent),
        radial-gradient(2px 2px at 25% 80%, white, transparent);
    opacity: 0.4;
}

.cta-card > *:not(.cta-bg):not(.cta-floats) { position: relative; z-index: 2; }

/* Floating portrait images in CTA */
.cta-floats {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.cta-float {
    position: absolute;
    width: 70px; height: 90px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0,0,0,0.4);
    opacity: 0.55;
    border: 2px solid rgba(255,255,255,0.15);
}
.cta-float img { width: 100%; height: 100%; object-fit: cover; }
.cf-1 { top: 60px; left: 6%; transform: rotate(-12deg); animation: floatRot 8s ease-in-out infinite; }
.cf-2 { bottom: 70px; left: 12%; transform: rotate(10deg); animation: floatRot 10s ease-in-out infinite -2s; }
.cf-3 { top: 60px; right: 6%; transform: rotate(14deg); animation: floatRot 9s ease-in-out infinite -4s; }
.cf-4 { bottom: 70px; right: 12%; transform: rotate(-10deg); animation: floatRot 11s ease-in-out infinite -6s; }
@keyframes floatRot {
    0%, 100% { transform: rotate(var(--r, -12deg)) translateY(0); }
    50% { transform: rotate(var(--r, -12deg)) translateY(-12px); }
}
@media (max-width: 768px) {
    .cta-floats { display: none; }
}

.cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #C7D2FE;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 7px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}
.cta-pill i { color: #FBBF24; }

.cta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}
.cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.cta-actions .btn { padding: 14px 30px; font-size: 1rem; }

.cta-tags {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.cta-tags span { display: inline-flex; align-items: center; gap: 6px; }
.cta-tags i { color: #34D399; }

/* ============ 16. FOOTER ============ */
.site-footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-soft);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 340px;
    margin-bottom: 28px;
}

.newsletter { max-width: 340px; }
.news-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}
.news-input {
    display: flex;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-pill);
    padding: 4px 4px 4px 18px;
    transition: all 0.2s;
}
.news-input:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.news-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--ink);
    min-width: 0;
}
.news-input input::placeholder { color: var(--text-light); }
.news-input button {
    background: var(--grad-primary);
    color: #fff;
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.news-input button:hover { transform: translateX(2px); }

.footer-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a {
    color: var(--text-muted);
    font-size: 0.94rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--primary); }
.footer-contact li {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.footer-contact i {
    color: var(--primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.hire-tag {
    background: #DCFCE7;
    color: #16A34A;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-pill);
}

.footer-bottom {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}
.copyright { margin: 0; color: var(--text-muted); font-size: 0.88rem; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s;
}
.socials a:hover {
    background: var(--grad-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(59,130,246,0.4);
}

/* Giant footer brand text */
.footer-brand-giant {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(5rem, 18vw, 16rem);
    text-align: center;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    margin: 40px 0 -40px;
    line-height: 0.9;
    user-select: none;
    pointer-events: none;
}

/* ============ Inner Pages ============ */
.page-title-area {
    background: var(--primary-soft);
    background-size: cover;
    padding: 160px 0 80px;
  }
  .page-title-area h1 {
    text-align: center;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--ink);
  }

/* ============ 17. AOS overrides ============ */
[data-aos] { transition-duration: 0.7s !important; }
