:root {
    --bg-color: #0d0d0f;
    --card-bg: #161618;
    --banner-bg: linear-gradient(135deg, #6236ff 0%, #a259ff 100%);
    --primary-purple: #8257e5;
    --text-white: #ffffff;
    --text-gray: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --spacing: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background: rgba(13, 13, 15, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-purple);
}

.logo span span {
    color: var(--primary-purple);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: 0.3s;
}

/* Welcome Banner */
.welcome-banner {
    margin: 2rem 0;
    background: var(--banner-bg);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.welcome-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.welcome-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.level-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-align: center;
}

.level-badge span {
    display: block;
    font-weight: 700;
}

.level-badge small {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.welcome-banner h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.welcome-banner p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.2rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.add-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s;
}

.add-btn:hover {
    background: white;
    color: var(--primary-purple);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Services */
.services-section {
    margin-top: 3rem;
    padding-bottom: 5rem;
}

.section-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.section-title i {
    color: #ff4d4d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(130, 87, 229, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.instagram .card-icon {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border: 1px solid rgba(225, 48, 108, 0.2);
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.success {
    background: rgba(130, 87, 229, 0.15);
    color: #a855f7;
    border: 1px solid rgba(130, 87, 229, 0.3);
}

/* Auth Page */
.auth-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.auth-card .logo {
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.auth-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.auth-card p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.input-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1rem 0.8rem 3rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(130, 87, 229, 0.05);
    box-shadow: 0 0 0 4px rgba(130, 87, 229, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(130, 87, 229, 0.3);
}

.auth-footer {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Spy Input Section */
.spy-input-section {
    max-width: 600px;
    margin: 0 auto;
}

.input-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.input-card .card-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.input-card .input-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.input-card .prefix {
    position: absolute;
    left: 1.2rem;
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.2rem;
}

.input-card input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1rem 1rem 1rem 2.8rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    transition: 0.3s;
}

.input-card input:focus {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(130, 87, 229, 0.05);
}

.spy-btn {
    width: 100%;
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: 0.3s;
}

.spy-btn:hover {
    background: #9333ea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(130, 87, 229, 0.3);
}

/* Loading Simulation */
.loading-container {
    padding: 2rem 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.terminal {
    width: 100%;
    max-width: 800px;
    background: #000;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: #1a1a1a;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    height: 400px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #00ff00;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #333 #000;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #000;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: #333;
}

.phase-title {
    font-weight: 700;
    margin-top: 1rem;
    text-decoration: underline;
}

.phase-1 {
    color: #27c93f;
}

.phase-2 {
    color: #ffbd2e;
}

.phase-3 {
    color: #ffa500;
}

.phase-4 {
    color: #ff5f56;
}

.phase-5 {
    color: #ff0000;
}

.terminal-line {
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-box {
    margin-top: 2rem;
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid #ff4d4d;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    display: none;
    animation: slideUp 0.5s ease;
}

.error-box i {
    font-size: 3rem;
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.error-box h3 {
    color: #ff4d4d;
    margin-bottom: 1rem;
}

.error-box p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.warning-span {
    display: block;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lockout Section */
.input-card.blocked {
    border-color: rgba(255, 77, 77, 0.3);
    background: rgba(255, 77, 77, 0.02);
}

.card-icon.error {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-block span {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4d4d;
    font-family: monospace;
}

.time-block small {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 77, 77, 0.5);
    margin-bottom: 1.2rem;
}

.warning-text {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Help Popup */
.help-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1c1c1e;
    border: 1px solid var(--primary-purple);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.popup-content p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-actions {
    display: flex;
    gap: 1rem;
}

.popup-actions button {
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-yes {
    background: var(--primary-purple);
    color: white;
}

.btn-yes:hover {
    background: #9333ea;
}

.btn-no {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes pulse-light {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(130, 87, 229, 0.4);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(130, 87, 229, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(130, 87, 229, 0);
    }
}

@keyframes flash-light {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.btn-upsell-pulse {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: pulse-light 2s infinite, flash-light 3s infinite;
    transition: 0.3s;
}

.btn-upsell-pulse:hover {
    transform: translateY(-3px);
    background: #9333ea;
}

/* Upsell Page Styles */
.upsell-body {
    background-image: radial-gradient(circle at 50% -20%, rgba(130, 87, 229, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

.urgency-badge {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upsell-hero {
    text-align: center;
    margin: 4rem 0 3rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.status-badge.purple {
    background: rgba(130, 87, 229, 0.15);
    color: #a855f7;
    border: 1px solid rgba(130, 87, 229, 0.3);
}

.upsell-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.upsell-hero .highlight {
    color: var(--primary-purple);
}

.subheadline {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.subheadline-accent {
    font-size: 1.1rem;
    font-weight: 500;
}

.upsell-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.explanation-card,
.benefits-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 24px;
}

.explanation-card h3,
.benefits-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.explanation-card h3 i {
    color: #ffbd2e;
}

.benefits-card h3 i {
    color: #27c93f;
}

.comparison {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.comp-item.highlight {
    background: rgba(130, 87, 229, 0.1);
    border: 1px solid rgba(130, 87, 229, 0.2);
}

.comp-item.highlight .value {
    color: var(--primary-purple);
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
}

.benefits-list i {
    color: #27c93f;
    font-size: 1.1rem;
}

.proof-card {
    background: rgba(130, 87, 229, 0.05);
    border: 1px dashed rgba(130, 87, 229, 0.4);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.proof-card i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.warning-box {
    background: rgba(255, 189, 46, 0.05);
    border-left: 4px solid #ffbd2e;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-bottom: 4rem;
}

.warning-box p {
    color: #ffbd2e;
    font-weight: 600;
}

.upsell-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-cta-btn {
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    border-radius: 100px;
}

.microcopy {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Price Container */
.price-container {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin: 2rem 0;
    font-weight: 800;
}

.price-container .currency {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.price-container .price-value {
    font-size: 4rem;
    color: white;
    text-shadow: 0 0 20px rgba(130, 87, 229, 0.3);
}

/* Modal Checkout */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem 0;
}

.modal-content {
    background: #111;
    margin: auto;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 550px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.5rem;
}

.modal-header h2 i {
    color: var(--primary-purple);
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.order-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Acceleration Button */
.btn-accelerate {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-accelerate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Acceleration Page Styles */
.accelerate-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    max-width: 600px;
    margin: 4rem auto;
}

.progress-container {
    background: rgba(255, 255, 255, 0.05);
    height: 12px;
    border-radius: 100px;
    margin: 2rem 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), #a855f7);
    width: 0%;
    transition: width 0.5s ease-out;
}

.share-link-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 2rem;
    cursor: pointer;
    transition: 0.2s;
}

.share-link-box:hover {
    border-color: var(--primary-purple);
    background: rgba(130, 87, 229, 0.05);
}

.share-link-box code {
    color: var(--primary-purple);
    font-weight: 700;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c1c1e;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
    z-index: 2000;
}

.product-reinforcement {
    background: rgba(130, 87, 229, 0.05);
    border: 1px solid rgba(130, 87, 229, 0.2);
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.product-reinforcement p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-gray);
    text-align: center;
}

.product-reinforcement i {
    color: var(--primary-purple);
    margin-right: 5px;
}

.pay-btn {
    border-radius: 100px !important;
    padding: 1rem !important;
}

/* Orderbump Badges */
.badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 6px;
    margin-left: 10px;
    font-weight: 900;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.5px;
}

@keyframes tag-glow {
    0% {
        filter: brightness(1) drop-shadow(0 0 2px currentColor);
    }

    50% {
        filter: brightness(1.3) drop-shadow(0 0 8px currentColor);
    }

    100% {
        filter: brightness(1) drop-shadow(0 0 2px currentColor);
    }
}

.badge.recommended {
    background: rgba(130, 87, 229, 0.25);
    color: #a855f7;
    border: 1px solid rgba(130, 87, 229, 0.5);
    animation: tag-glow 2s infinite ease-in-out;
}

.badge.best-seller {
    background: rgba(239, 68, 68, 0.15);
    color: #ff4d4d;
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: tag-glow 1.5s infinite ease-in-out;
}

.badge.best-seller i {
    font-size: 0.75rem;
    margin-right: 2px;
}

.security-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-gray);
    opacity: 0.6;
}

/* Responsividade */
@media (max-width: 768px) {
    .upsell-hero h1 {
        font-size: 2.2rem;
    }

    .upsell-content-grid {
        grid-template-columns: 1fr;
    }

    .main-cta-btn {
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .stats-row {
        grid-template-columns: 1fr;
    }

    .welcome-banner h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}