@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium SaaS Dark */
    --background: #09090b;
    --foreground: #fafafa;
    --card: #121215;
    --card-foreground: #fafafa;
    --popover: #09090b;
    --popover-foreground: #fafafa;
    --primary: #6366f1;
    --primary-foreground: #ffffff;
    --secondary: #18181b;
    --secondary-foreground: #fafafa;
    --muted: #27272a;
    --muted-foreground: #a1a1aa;
    --accent: #27272a;
    --accent-foreground: #fafafa;
    --destructive: #ef4444;
    --destructive-foreground: #fafafa;
    --border: #27272a;
    --input: #27272a;
    --ring: #6366f1;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    
    /* Spacing & Radius */
    --radius: 0.75rem;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
}

/* Navbar Design Upgrade */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon i {
    width: 18px;
    height: 18px;
    color: white;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover { color: var(--foreground); }
.nav-link.active { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 0.9375rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    opacity: 0.9;
}

.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--accent);
}

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-surface);
    pointer-events: none;
}

.card:hover {
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utilities */
.text-muted { color: var(--muted-foreground); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* Form Inputs */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-control {
    width: 100%;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    color: var(--foreground);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

/* Layout Utilities */
.main-content {
    margin-top: 4.5rem;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.badge-primary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 2rem;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Value Proposition */
.value-prop-section {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8rem;
}

/* Product Card Improvements */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-card-placeholder {
    width: 100%;
    height: 240px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Strategic Advantage */
.advantage-section {
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 6rem;
    align-items: center;
}

.advantage-card-wrapper {
    position: relative;
}

.advantage-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    filter: blur(40px);
    opacity: 0.15;
    z-index: -1;
}

.advantage-border-card {
    padding: 1px;
    background: var(--border);
}

.advantage-card {
    background: var(--card);
    border-radius: inherit;
    padding: 3rem;
}

.advantage-steps {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.advantage-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.advantage-desc {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.advantage-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-title {
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
}

/* CTA Section */
.cta-card {
    padding: 5rem;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent);
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.product-card:hover i {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.marketplace-header {
    margin-bottom: 4rem;
}

.marketplace-title {
    font-size: 3.5rem; 
    margin-bottom: 1rem;
}

/* Product Detail */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.category-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.category-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title-lg {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-desc-lg {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.use-case-list, .value-prop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.use-case-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    min-height: 480px;
}

.use-case-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.use-case-img-area {
    width: 100%;
    height: 220px;
    background: #0c0c0e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.use-case-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.use-case-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.use-case-item:hover .use-case-icon-wrapper::after {
    transform: translateX(100%);
}

.use-case-icon-lg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.use-case-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.use-case-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.use-case-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.use-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(99, 102, 241, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
}

@media (max-width: 992px) {
    .use-case-list, .value-prop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .use-case-list, .value-prop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
}

.preview-window {
    background: var(--background);
    border-radius: 1rem;
    height: 400px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.preview-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 0.5rem;
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.preview-dot-red { background: #ff5f56; }
.preview-dot-yellow { background: #ffbd2e; }
.preview-dot-green { background: #27c93f; }

.preview-body {
    flex-grow: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.preview-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.preview-title {
    font-weight: 500;
}

.preview-desc {
    font-size: 0.875rem;
}

.floating-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.floating-badge-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.floating-badge-value {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Pricing Section */
.pricing-section {
    background-color: #0c0c0e;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pricing-accent-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.pricing-accent-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.pricing-container {
    position: relative;
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 6rem;
}

.pricing-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.pricing-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: #16161a;
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.pricing-card-featured {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
    transform: translateY(-10px);
}

.pricing-card-header {
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.pricing-pill {
    display: inline-block;
    padding: 0.6rem 2.5rem;
    border-radius: 0 0 1.5rem 1.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: -1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.price-section {
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.pricing-divider {
    width: 40px;
    border: none;
    border-top: 2px solid rgba(255,255,255,0.05);
    margin: 2.5rem auto;
}

.pricing-features {
    padding: 0 2.5rem;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.feature-check-box {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 14px;
    height: 14px;
}

.pricing-card-footer {
    padding: 2.5rem 2rem 3rem;
    text-align: center;
}

.buy-now-btn {
    width: 100%;
    height: 3.5rem;
    background: transparent;
    border-radius: 3rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid;
}

/* Tier Specific Colors */
.tier-1-color { color: #3b82f6; border-color: #3b82f6; }
.tier-1-bg { background: #3b82f6; }
.tier-1-icon { color: #3b82f6; }

.tier-2-color { color: #10b981; border-color: #10b981; }
.tier-2-bg { background: #10b981; }
.tier-2-icon { color: #10b981; }

.tier-3-color { color: #6366f1; border-color: #6366f1; }
.tier-3-bg { background: #6366f1; }
.tier-3-icon { color: #6366f1; }

.tier-4-color { color: #8b5cf6; border-color: #8b5cf6; }
.tier-4-bg { background: #8b5cf6; }
.tier-4-icon { color: #8b5cf6; }

.tier-5-color { color: #f59e0b; border-color: #f59e0b; }
.tier-5-bg { background: #f59e0b; }
.tier-5-icon { color: #f59e0b; }

/* FAQ Section */
.faq-container {
    max-width: 800px;
}

.faq-title {
    margin-bottom: 3rem;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item-title {
    margin-bottom: 0.5rem;
}

.faq-item-desc {
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon i {
    width: 14px;
    height: 14px;
    color: white;
}

.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.footer-description {
    max-width: 320px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link i {
    width: 18px;
    height: 18px;
    transition: color 0.2s;
}

.social-link:hover i {
    color: var(--primary);
}

/* About Page */
.about-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
}

.about-hero-desc {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mission-section {
    border-top: 1px solid var(--border);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-desc {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-list {
    display: grid;
    gap: 1.5rem;
}

.mission-list-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mission-list-item i {
    color: var(--primary);
}

.mission-list-item span {
    font-weight: 500;
}

.mission-card-wrapper {
    position: relative;
}

.mission-card-glow {
    position: absolute;
    inset: -30px;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.1;
    z-index: -1;
}

.mission-quote-card {
    padding: 3rem;
    background: var(--secondary);
}

.mission-quote {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
    color: var(--foreground);
    position: relative;
}

.mission-quote-mark {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
}

.mission-quote-mark-start {
    top: -20px;
    left: -20px;
}

.mission-quote-mark-end {
    bottom: -40px;
    right: 0;
}

.mission-author {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.mission-author-name {
    font-weight: 700;
}

.mission-author-role {
    font-size: 0.75rem;
}

.edge-section {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.edge-header {
    margin-bottom: 5rem;
}

.edge-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.edge-desc {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.edge-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.edge-item {
    padding: 2rem;
}

.edge-item-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.edge-item-title i {
    color: var(--primary);
}

.edge-item-desc {
    line-height: 1.7;
}

.values-card {
    padding: 5rem;
    border: none;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.05), rgba(168, 85, 247, 0.05));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.value-item-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.final-cta-section {
    border-top: 1px solid var(--border);
}

.final-cta-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.final-cta-btn {
    padding: 1rem 3rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 600px;
    z-index: 2000;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-container {
    background: var(--card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cookie-glow {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0;
}

.cookie-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon-wrapper i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.cookie-title-label {
    display: none;
}

.cookie-title {
    font-size: 1rem;
    font-weight: 700;
}

.cookie-description {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--muted-foreground);
    flex: 1;
    margin: 0;
}

.cookie-controls {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 0.875rem;
    padding: 1rem;
}

.cookie-settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.cookie-settings-item:last-child {
    border-bottom: none;
}

.cookie-setting-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0;
}

.cookie-setting-desc {
    font-size: 0.6875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.cookie-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.cookie-checkbox:disabled {
    cursor: not-allowed;
}

.cookie-controls-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cookie-controls-actions {
    display: flex;
    gap: 0.625rem;
    margin-top: 0.75rem;
}

.cookie-action-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.cookie-controls-footer {
    display: none;
}


/* Checkout Page */
.checkout-page-container {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-title {
    color: var(--foreground);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
}

.checkout-price {
    font-size: 1.3em;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 30px;
}

.checkout-form p {
    margin-bottom: 15px;
}

.checkout-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--foreground);
}

.checkout-form input[type="email"] {
    width: 100%;
    padding: 10px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    color: var(--foreground);
}

.checkout-form input[type="email"]:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.checkout-cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1em;
    border-radius: 8px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkout-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    opacity: 0.9;
}

/* Contact Page */
.contact-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-hero-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
}

.contact-hero-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-section {
    padding-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-form-card {
    padding: 3rem;
}

.contact-success-wrapper {
    text-align: center;
    padding: 2rem;
}

.contact-success-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(39, 201, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-success-icon {
    width: 32px;
    height: 32px;
    color: #27c93f;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-submit-btn {
    width: 100%;
    height: 3.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon-box {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-faq-teaser {
    background: rgba(255,255,255,0.02);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-faq-card {
    padding: 2rem;
}

/* Tier Detail / Checkout Page */
.checkout-section {
    background-color: var(--background);
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.checkout-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.checkout-container-inner {
    position: relative;
    z-index: 1;
}

.checkout-header {
    margin-bottom: 3rem;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
}

.checkout-badge i {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.checkout-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.checkout-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 600px;
}

.checkout-flex-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.checkout-info-column {
    flex: 1 1 500px;
    min-width: 350px;
}

.checkout-summary-column {
    flex: 1 1 400px;
    min-width: 320px;
}

.checkout-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.checkout-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-input-group {
    margin-bottom: 1.5rem;
}

.checkout-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.checkout-input {
    width: 100%;
    height: 3.5rem;
    background: #0c0c0e;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 0 1rem;
    color: var(--foreground);
    font-size: 1rem;
}

.checkout-input-hint {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.checkout-policy-box {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.02);
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
}

.checkout-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkout-policy-text {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.checkout-policy-link {
    color: var(--foreground);
    font-weight: 600;
    text-decoration: none;
}

.checkout-submit-btn {
    height: 4rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    width: 100%;
}

.checkout-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.checkout-item-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-item-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.checkout-item-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.checkout-item-price {
    font-weight: 700;
    color: var(--foreground);
}

.checkout-breakdown {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.checkout-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.checkout-breakdown-value {
    font-weight: 600;
    color: var(--foreground);
}

.checkout-breakdown-free {
    color: #10b981;
    font-weight: 600;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkout-total-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.checkout-total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
}

.checkout-payment-box {
    background: rgba(255,255,255,0.02);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.checkout-payment-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.checkout-payment-list {
    display: grid;
    gap: 0.75rem;
}

.checkout-payment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.checkout-payment-item i {
    width: 16px;
    height: 16px;
}

.checkout-payment-item i.success {
    color: #10b981;
}

/* Legal / Policy Pages */
.legal-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.legal-container {
    max-width: 800px;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.legal-last-updated {
    margin-bottom: 3rem;
    font-size: 1rem;
}

.legal-content-grid {
    display: grid;
    gap: 3rem;
}

.legal-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--foreground);
}

.legal-text {
    line-height: 1.8;
    color: var(--muted-foreground);
}

.legal-list {
    margin-top: 1.25rem;
    padding-left: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.legal-list li {
    line-height: 1.6;
    color: var(--muted-foreground);
}

/* Access / Delivery Page */
.delivery-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.delivery-container {
    max-width: 900px;
}

.delivery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.delivery-success-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.delivery-success-icon {
    width: 40px;
    height: 40px;
    color: #27c93f;
}

.delivery-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delivery-subtitle {
    color: var(--muted-foreground);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.delivery-content-card {
    background: rgba(18, 18, 21, 0.5);
    border: 1px dashed var(--border);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.delivery-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.delivery-card-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.delivery-card-icon-box {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-card-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.delivery-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.delivery-badge {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
}

.delivery-items-grid {
    display: grid;
    gap: 2rem;
}

.delivery-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.delivery-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-item-counter {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-copy {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy:hover {
    background: var(--border) !important;
    transform: translateY(-1px);
}

.btn-copy:active {
    transform: translateY(0);
}

.delivery-code-box {
    background: #09090b;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
}

.delivery-code-content {
    margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #e4e4e7;
    white-space: pre-wrap;
    word-break: break-word;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.delivery-code-content::-webkit-scrollbar {
    width: 6px;
}

.delivery-code-content::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 10px;
}

.delivery-code-overlay {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.delivery-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.delivery-empty-icon-box {
    width: 64px;
    height: 64px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.delivery-empty-icon {
    width: 32px;
    height: 32px;
    color: var(--muted-foreground);
}

.delivery-footer-actions {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.delivery-action-buttons {
    display: flex;
    gap: 1rem;
}

.delivery-action-btn {
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s;
}

.delivery-action-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.delivery-action-btn-secondary {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--foreground);
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.pt-5 {
    padding-top: 1.25rem !important;
}

.delivery-order-info {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.delivery-order-id {
    color: var(--foreground);
    font-family: monospace;
}

/* Payment Success Page */
.success-page-section {
    background-color: #09090b;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-page-container {
    max-width: 550px;
    text-align: center;
}

.success-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}

.success-icon {
    width: 45px;
    height: 45px;
    color: #6366f1;
}

.success-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.success-message {
    font-size: 1.25rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.success-summary-card {
    background: #121215;
    border: 1px solid #27272a;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.summary-heading {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    color: #71717a;
    letter-spacing: 0.1em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.summary-label {
    color: #a1a1aa;
    font-size: 0.9375rem;
}

.summary-value {
    font-weight: 700;
    color: #ffffff;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid #27272a;
}

.total-label {
    font-weight: 800;
    color: #ffffff;
    font-size: 1rem;
}

.total-amount {
    font-weight: 800;
    color: #818cf8;
    font-size: 1.5rem;
}

.success-actions {
    display: grid;
    gap: 1rem;
}

.btn-access {
    background: #8b5cf6;
    color: #ffffff;
    font-weight: 700;
    height: 3.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-access:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.btn-invoice {
    background: #1c1c1f;
    color: #ffffff;
    border: 1px solid #27272a;
    font-weight: 600;
    height: 3.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.2s;
}

.btn-invoice:hover {
    background: #27272a;
    transform: translateY(-1px);
}

.success-footer-text {
    font-size: 0.875rem;
    color: #71717a;
    margin-top: 2.5rem;
}

/* General Layout / Helpers */
.grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.marketplace-header {
    text-align: center;
    margin-bottom: 5rem;
}

.marketplace-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.marketplace-desc {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.8;
}

.cta-card {
    text-align: center;
    padding: 6rem 3rem;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent), 
                radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.05), transparent);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.cta-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

@media (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

/* Base Template Components */
.cookie-banner-actions {
    display: flex;
    gap: 1rem;
}

.cookie-action-btn {
    flex: 1;
}

.navbar-scrolled {
    box-shadow: var(--shadow-lg);
    border-bottom-color: rgba(99, 102, 241, 0.2);
}

.nav-link.active {
    color: var(--primary);
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-2 {
    gap: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-auto {
    margin-top: auto;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.font-semibold {
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link i {
    width: 16px;
    height: 16px;
}

/* Copy Button Success State */
.btn-copy-success {
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
}

