@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&family=Lora:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Colors */
:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #ec4899;
}

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

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bg-animated {
    background: linear-gradient(-45deg, #0f172a, #1e1b4b, #312e81, #1e1b4b);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Dark Dropdowns */
select.input-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.75rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.input-field option {
    background: #1e1b4b;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
}

select.input-field option:hover,
select.input-field option:checked {
    background: #6366f1;
    color: #fff;
}

select.input-field optgroup {
    background: #1e1b4b;
    color: rgba(255, 255, 255, 0.6);
}

.label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.label i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary-color);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 3D Card Styles */
.card-3d-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-face {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    /* Important for effects contained within card */
}

/* Glow effect */
.glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card-3d:hover .glow::after {
    opacity: 1;
}

/* Make sure back is flipped correctly */
.card-back {
    transform: rotateY(180deg);
}

/* Only show active side (modified for simpler flip logic) */
.card-face.hidden {
    display: none !important;
}

.card-face.active {
    display: block !important;
    transform: none !important;
    /* Reset transform when active as single side */
}

/* Business Card Content */
.business-card {
    padding: 1.25rem 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
}

.business-card-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 0.75rem;
}

.card-social-icon {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    opacity: 0.85;
}

.card-social-icon i {
    font-size: 0.7rem;
    opacity: 0.7;
    flex-shrink: 0;
}

/* Background Layers */
.card-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.vignette-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
}

/* Effects Checkboxes */
.effect-checkbox {
    cursor: pointer;
    position: relative;
    display: block;
}

.effect-checkbox input {
    display: none;
}

.effect-label {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.85rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
    min-height: 4.5rem;
}

.effect-checkbox:hover .effect-label {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.effect-checkbox.active .effect-label {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.15);
}

.check-box {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.effect-checkbox.active .check-box {
    opacity: 1;
    transform: scale(1);
    background: var(--primary-color);
}

.effect-name {
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.effect-name i {
    font-size: 1rem;
    opacity: 0.8;
}

.effect-desc {
    display: block;
    font-size: 0.6rem;
    opacity: 0.5;
    line-height: 1.2;
    white-space: nowrap;
}

/* Responsive: single column on very small screens */
@media (max-width: 400px) {
    .effect-label {
        flex-direction: row;
        text-align: left;
        min-height: auto;
        padding: 0.7rem 0.75rem;
        gap: 0.5rem;
    }

    .effect-name {
        font-size: 0.75rem;
    }

    .effect-desc {
        display: none;
    }
}

/* Color Picker */
.color-picker-wrapper {
    position: relative;
    height: 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--picker-color, #6366f1);
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    gap: 0.6rem;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.color-picker-wrapper:hover {
    background: rgba(255, 255, 255, 0.08);
}

.color-swatch {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.4rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.color-picker-wrapper input[type="color"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.file-upload:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-preview {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin: 0 auto;
}

/* Utilities */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.toggle-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.toggle-btn:hover:not(.active) {
    color: white;
}

.effects-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== Navigation ========== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    padding: 0 1rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-inner {
        padding: 0 2rem;
    }
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    flex-shrink: 0;
}

.nav-logo:hover {
    opacity: 0.85;
}

.nav-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.nav-tagline {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
}

/* Center Nav Links */
.nav-center-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 1024px) {
    .nav-center-links {
        display: flex;
    }
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link-premium {
    color: #a78bfa;
}

.nav-link-premium:hover {
    color: #c4b5fd;
    background: rgba(167, 139, 250, 0.1);
}

/* Right Auth Buttons */
.nav-actions-right {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .nav-actions-right {
        display: flex;
    }
}

.nav-user-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.nav-plan-tag {
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    margin-left: 0.25rem;
    font-weight: 600;
}

/* Keep old .nav-actions-desktop hidden */
.nav-actions-desktop {
    display: none !important;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.15rem;
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-btn-ghost {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.nav-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    box-shadow: 0 2px 12px rgba(99, 102, 241, 0.3);
}

.nav-btn-primary:hover {
    box-shadow: 0 4px 18px rgba(99, 102, 241, 0.45);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.nav-hamburger:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
    .nav-hamburger {
        display: none;
    }
}

/* Mobile dropdown */
.nav-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.92);
}

.nav-mobile-menu.open {
    display: flex;
}

@media (min-width: 1024px) {

    .nav-mobile-menu,
    .nav-mobile-menu.open {
        display: none !important;
    }
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.nav-mobile-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.nav-mobile-link-primary {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-color: transparent;
    color: #fff;
}

.nav-mobile-link-primary:hover {
    opacity: 0.9;
}

/* Watermark Style */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 20;
    letter-spacing: 0.25rem;
    white-space: nowrap;
    user-select: none;
}

/* ========== Premium Feature Gating ========== */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.premium-locked {
    position: relative;
}

.premium-locked.is-free {
    pointer-events: none;
    opacity: 0.45;
}

.premium-locked.is-free::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 5;
    cursor: not-allowed;
    pointer-events: all;
}

.premium-upgrade-banner {
    display: none;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.premium-upgrade-banner.show {
    display: block;
}

.premium-upgrade-banner a {
    color: #a78bfa;
    font-weight: 600;
    text-decoration: none;
}

.premium-upgrade-banner a:hover {
    color: #c4b5fd;
}

/* ========== Premium Pricing Page ========== */
.premium-gradient-text {
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.popular {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.08);
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
    border-radius: 1.5rem 1.5rem 0 0;
}

.price-tag {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.price-tag .currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 700;
}

.price-tag .decimal {
    font-size: 1.5rem;
    font-weight: 700;
}

.savings-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 0.2rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.buy-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.buy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.buy-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.buy-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.buy-btn-locked {
    opacity: 0.7;
}

.buy-btn-locked:hover {
    opacity: 1;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.4rem 0;
}

.perk-item i {
    color: #6366f1;
    font-size: 0.85rem;
}

/* ========== Profile Page ========== */
.profile-plan-card {
    border-radius: 1rem;
    padding: 1.5rem;
}

.profile-plan-premium {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.25);
}

.profile-plan-free {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-plan-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
}

.profile-extend-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    transition: all 0.3s ease;
}

.profile-extend-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.35);
}

.profile-upgrade-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    transition: all 0.3s ease;
}

.profile-upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.3);
}

.profile-free-limits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.profile-free-limits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Profile Table */
.profile-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.profile-table thead th {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.35);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-table tbody td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.profile-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.profile-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.profile-status-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
}

.profile-status-completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.profile-status-pending {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.profile-status-cancelled {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.profile-status-failed {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}