/* ================================
   Dark Mode Modern CSS - ClickUp Inspired
   ================================ */

:root {
    /* Dark Mode Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111827;
    --bg-tertiary: #1a1a2e;
    --bg-card: #16162a;
    --bg-elevated: #1e1e38;

    /* Accent Colors - Vibrant Gradients */
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-tertiary: #6b7280;
    --text-muted: #4b5563;

    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-strong: rgba(255, 255, 255, 0.25);

    /* Glow Effects */
    --glow-purple: 0 0 40px rgba(124, 58, 237, 0.4);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.4);
    --glow-blue: 0 0 40px rgba(59, 130, 246, 0.4);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --spacing-4xl: 8rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    /* Borders */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.25rem;
    --border-radius-2xl: 1.5rem;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --max-width: 1280px;
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================
   Typography
   ================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-size-6xl);
    background: linear-gradient(135deg, #fff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: var(--font-size-5xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--accent-pink);
}

/* ================================
   Layout Components
   ================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
    box-sizing: border-box;
}

/* ================================
   Navbar
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: var(--border-medium);
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-height);
    width: 100%;
    max-width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    flex-shrink: 1;
    min-width: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 44px;
    height: 44px;
    filter: brightness(0) saturate(100%) invert(45%) sepia(93%) saturate(4841%) hue-rotate(258deg) brightness(96%) contrast(101%) drop-shadow(0 0 8px rgba(124, 58, 237, 0.5));
    transition: all var(--transition-base);
}

.logo:hover .logo-icon {
    filter: brightness(0) saturate(100%) invert(58%) sepia(82%) saturate(6295%) hue-rotate(310deg) brightness(100%) contrast(95%) drop-shadow(0 0 12px rgba(236, 72, 153, 0.6));
}

.logo-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
}

.language-selector {
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-md);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.language-selector:hover {
    border-color: var(--accent-purple);
    background: var(--bg-card);
    color: var(--text-primary);
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-purple), 0 12px 32px rgba(124, 58, 237, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
}

.btn-outline:hover {
    border-color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: var(--font-size-lg);
}

.btn-block {
    width: 100%;
}

/* ================================
   Hero Section
   ================================ */

.hero {
    padding: calc(var(--navbar-height) + var(--spacing-4xl)) 0 var(--spacing-4xl);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title-centered {
    font-size: calc(var(--font-size-7xl) * 0.7);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-centered {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.hero-cta-centered {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

/* Legacy styles - kept for compatibility */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    font-size: var(--font-size-7xl);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: var(--spacing-2xl);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.trust-indicators-vertical {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.trust-item-highlight {
    background: rgba(124, 58, 237, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    font-size: var(--font-size-sm);
}

.trust-item-highlight:hover {
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.trust-item-highlight strong {
    color: var(--text-primary);
    font-weight: 700;
}

.trust-item-highlight .check-icon {
    color: var(--accent-green);
}

.check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.5));
    flex-shrink: 0;
}

/* Hero Animation */
.hero-visual {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.5rem;
    width: 100%;
    padding: var(--spacing-lg);
}

/* Left: Invoice Document - A4 Proportions (1:1.414) */
.invoice-document {
    background: linear-gradient(135deg, #1a1a2e 0%, #16162a 100%);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2.4rem;
    box-shadow: var(--shadow-xl), 0 0 30px rgba(59, 130, 246, 0.2);
    animation: float 3s ease-in-out infinite;

    /* A4 proportions: width to height ratio of 1:1.414 - 20% smaller */
    width: 288px;
    min-height: 407px;
    /* 288 × 1.414 ≈ 407px */

    flex-shrink: 0;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid rgba(124, 58, 237, 0.3);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.invoice-header-left {
    flex: 1;
}

.invoice-title {
    font-size: var(--font-size-2xl);
    font-weight: 900;
    color: var(--accent-blue);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    margin-bottom: var(--spacing-sm);
}

.invoice-number {
    font-size: var(--font-size-lg);
    font-weight: 700;
    background: linear-gradient(135deg, #f59e0b 0%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.invoice-date {
    font-size: var(--font-size-sm);
    color: #ec4899;
    font-weight: 600;
}

.invoice-vendor {
    text-align: right;
}

.vendor-name {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.invoice-items {
    margin-bottom: var(--spacing-lg);
}

.invoice-items table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-xs);
}

.invoice-items thead th {
    background: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
    padding: var(--spacing-xs);
    text-align: left;
    font-weight: 700;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.invoice-items tbody td {
    padding: var(--spacing-xs);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.invoice-totals {
    border-top: 2px solid rgba(124, 58, 237, 0.3);
    padding-top: var(--spacing-md);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.total-final {
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--text-primary);
    border-top: 2px solid rgba(124, 58, 237, 0.3);
    margin-top: var(--spacing-xs);
    padding-top: var(--spacing-sm);
}

.total-final span {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Right: Extracted Data - 120% height of invoice (10% top + 100% + 10% bottom) */
.invoice-result {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.extracted-data {
    width: 304px;
    /* Height = invoice height (407px) × 1.2 = 489px */
    min-height: 489px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: var(--spacing-lg) 0;
}

.data-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    animation: fadeInRight 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-row:nth-child(1) {
    animation-delay: 0.1s;
}

.data-row:nth-child(2) {
    animation-delay: 0.2s;
}

.data-row:nth-child(3) {
    animation-delay: 0.3s;
}

.data-row:nth-child(4) {
    animation-delay: 0.4s;
}

.data-row:nth-child(5) {
    animation-delay: 0.5s;
}

.data-row:nth-child(6) {
    animation-delay: 0.6s;
}

.data-row:nth-child(7) {
    animation-delay: 0.7s;
}

.data-row:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.data-label {
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    white-space: nowrap;
}

.data-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.data-value-multi {
    display: inline-flex;
    gap: 6px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    font-family: 'Courier New', monospace;
    flex-wrap: wrap;
}

.data-value-table {
    font-size: var(--font-size-xs);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.data-value-table table {
    border-collapse: collapse;
    font-size: inherit;
}

.data-value-table th {
    text-align: left;
    padding: 2px 6px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.data-value-table td {
    padding: 2px 6px;
    font-weight: 600;
}

/* Color-coded data rows */
.data-number {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(234, 179, 8, 0.15) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.data-number .data-label,
.data-number .data-value {
    color: #fbbf24;
}

.data-date {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(244, 114, 182, 0.15) 100%);
    border-color: rgba(236, 72, 153, 0.3);
}

.data-date .data-label,
.data-date .data-value {
    color: #f472b6;
}

.data-vendor {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(192, 132, 252, 0.15) 100%);
    border-color: rgba(168, 85, 247, 0.3);
}

.data-vendor .data-label,
.data-vendor .data-value,
.data-vendor .data-value-multi {
    color: #c084fc;
}

.data-items {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(244, 114, 182, 0.12) 100%);
    border-color: rgba(236, 72, 153, 0.3);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.data-items .data-label {
    color: #f472b6;
}

.data-items table th,
.data-items table td {
    color: #f9a8d4;
}

.data-subtotal {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.15) 0%, rgba(190, 242, 100, 0.15) 100%);
    border-color: rgba(163, 230, 53, 0.3);
}

.data-subtotal .data-label,
.data-subtotal .data-value {
    color: #bef264;
}

.data-tax {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.data-tax .data-label,
.data-tax .data-value {
    color: #34d399;
}

.data-total {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.data-total .data-label,
.data-total .data-value {
    color: #22d3ee;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.8));
    }

    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.8));
    }
}

@keyframes flowData {

    0%,
    100% {
        opacity: 0.6;
        transform: scaleX(0.9);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.3);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Arrow Between Invoice and Data */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    animation: arrowPulse 2s ease-in-out infinite;
}

.process-arrow svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
    transition: all var(--transition-base);
}

.process-arrow:hover svg {
    filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.8));
    transform: scale(1.1);
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(8px) scale(1.05);
        opacity: 0.9;
    }
}

/* ================================
   Sections
   ================================ */

section {
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-size: var(--font-size-5xl);
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   How It Works
   ================================ */

.how-it-works {
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.step {
    flex: 1;
    max-width: 360px;
    min-height: 270px;
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--glow-purple);
    border-color: var(--accent-purple);
}

.step-number {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gradient-purple);
    color: white;
    border-radius: var(--border-radius-full);
    font-weight: 800;
    font-size: var(--font-size-base);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
    z-index: 2;
}

.step-icon {
    font-size: 4.5rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5));
    /* Align with SVG icon */
    height: 4.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon.excel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon.excel-icon svg {
    width: 4.5rem;
    height: 4.5rem;
    stroke: var(--accent-green);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

.step-title {
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    /* Ensure 2 lines height for alignment */
    min-height: 3.6rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.step-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.step-formats {
    font-size: var(--font-size-sm);
    color: var(--text-tertiary);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.step-arrow {
    font-size: var(--font-size-5xl);
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    align-self: center;
}

/* ================================
   Features
   ================================ */

.features {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-2xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(124, 58, 237, 0.2);
    border-color: var(--accent-purple);
}

.feature-icon {
    font-size: 3.5rem;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
}

.feature-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

/* Coming Soon */
.coming-soon {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    opacity: 0.1;
}

.coming-soon-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.coming-soon-items {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.coming-soon-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.coming-soon-item:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.coming-soon-icon {
    font-size: var(--font-size-2xl);
}

/* ================================
   Pricing
   ================================ */

.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(124, 58, 237, 0.2);
    border-color: var(--accent-purple);
}

.pricing-card-featured {
    border-color: var(--accent-purple);
    background: var(--bg-elevated);
    box-shadow: var(--shadow-lg), var(--glow-purple);
    padding-top: calc(var(--spacing-2xl) + 14px);
    margin-top: 14px;
}

.pricing-card-featured::before {
    opacity: 0.5;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: white;
    padding: var(--spacing-xs) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.5);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.pricing-plan {
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.price-currency {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-secondary);
}

.price-amount {
    font-size: var(--font-size-5xl);
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 4px;
}

.price-period {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.pricing-invoices {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
}

.pricing-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-xl);
    min-height: 48px;
    position: relative;
    z-index: 1;
}

/* Pricing Features */
.pricing-features {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-2xl);
}

.pricing-features-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-3xl);
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 500;
}

/* Guarantee */
.pricing-guarantee {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--gradient-purple);
    color: white;
    border-radius: var(--border-radius-2xl);
    text-align: center;
    box-shadow: var(--glow-purple);
}

.guarantee-title {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-2xl);
}

.guarantee-text {
    color: white;
    opacity: 0.95;
    font-size: var(--font-size-lg);
}

/* ================================
   Security
   ================================ */

.security {
    background: var(--bg-primary);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.security-card {
    background: var(--bg-card);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-2xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
}

.security-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(124, 58, 237, 0.15);
    border-color: var(--accent-purple);
}

.security-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5));
}

.security-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    font-weight: 700;
}

.security-description {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

/* ================================
   FAQ
   ================================ */

.faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-3xl) auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-card);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: none;
    border: none;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-base);
}

.faq-question:hover {
    color: var(--accent-purple);
}

.faq-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-purple);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.7;
}

/* ================================
   Final CTA
   ================================ */

.cta-final {
    background: var(--bg-primary);
    padding: var(--spacing-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-primary);
    font-size: var(--font-size-5xl);
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
}

.cta-subtitle a {
    color: var(--accent-purple);
    text-decoration: underline;
    font-weight: 600;
}

.cta-subtitle a:hover {
    color: var(--accent-pink);
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.badge-item:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.badge-icon {
    font-weight: 800;
    color: var(--accent-green);
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-title {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-purple);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
    font-size: var(--font-size-sm);
}

/* ================================
   Hamburger Menu Button (Mobile)
   ================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-base);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
    position: relative;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ================================
   Mobile Menu
   ================================ */

.mobile-menu {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xl);
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.language-selector-mobile {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-md);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.language-selector-mobile:hover {
    border-color: var(--accent-purple);
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn-mobile {
    width: 100%;
    text-align: center;
}

/* ================================
   Responsive Design
   ================================ */

/* Large tablets and small desktops - Adjust navbar spacing */
@media (max-width: 1200px) {
    .logo-text {
        font-size: var(--font-size-lg);
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }

    .language-selector {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: var(--font-size-xs);
    }

    .nav-actions {
        gap: var(--spacing-xs);
    }
}

/* Tablets - Further reduce navbar element sizes */
@media (max-width: 900px) {
    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-text {
        font-size: var(--font-size-base);
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: var(--font-size-xs);
    }

    .language-selector {
        padding: var(--spacing-xs) var(--spacing-xs);
        font-size: var(--font-size-xs);
        min-width: 70px;
    }
}

/* Small tablets - Show hamburger menu */
@media (max-width: 700px) {
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

/* Mobile phones */
@media (max-width: 430px) {
    /* Ensure content is centered on small screens */
    .container {
        padding: 0 var(--spacing-md);
    }

    .nav-content {
        padding: 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: var(--font-size-sm);
    }

    section {
        text-align: center;
    }

    .hero-title-centered,
    .hero-subtitle-centered,
    .section-title,
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-indicators-grid {
        justify-content: center;
    }

    .invoice-animation {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .hero-title-centered {
        font-size: calc(var(--font-size-5xl) * 0.7);
        margin-bottom: var(--spacing-2xl);
    }

    .trust-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        min-height: auto;
    }

    .invoice-animation {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-2xl);
    }

    .process-arrow {
        transform: rotate(90deg);
        width: 60px;
        height: 60px;
    }

    .invoice-document {
        width: 90%;
        max-width: 288px;
        height: auto;
        min-height: 407px;
    }

    .extracted-data {
        width: 90%;
        max-width: 304px;
        height: auto;
        min-height: 480px;
    }

    .hero-title {
        font-size: var(--font-size-5xl);
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-visual {
        min-height: auto;
    }

    .process-arrow {
        width: 56px;
        height: 56px;
    }

    .invoice-document {
        width: 95%;
        max-width: 256px;
        font-size: var(--font-size-sm);
        padding: var(--spacing-lg);
    }

    .extracted-data {
        width: 95%;
        max-width: 256px;
    }

    .hero-title-centered {
        font-size: calc(var(--font-size-4xl) * 0.7);
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .section-title {
        font-size: var(--font-size-4xl);
    }

    /* Center steps in How It Works section */
    .steps {
        align-items: center;
    }

    .step {
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
    }

    .step-arrow {
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-features-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-items {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-badges {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
        --spacing-4xl: 5rem;
    }

    .hero-visual {
        min-height: auto;
    }

    .invoice-animation {
        padding: var(--spacing-sm);
        gap: var(--spacing-xl);
    }

    .process-arrow {
        width: 48px;
        height: 48px;
    }

    .invoice-document {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 0.75rem;
    }

    .invoice-header {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }

    .extracted-data {
        width: 100%;
        gap: 4px;
    }

    .data-row {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
    }

    .data-label {
        font-size: 0.65rem;
    }

    .data-value {
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--font-size-base);
    }

    .hero-title-centered {
        font-size: calc(var(--font-size-3xl) * 0.7);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .cta-title {
        font-size: var(--font-size-3xl);
    }
}

/* ================================
   Utility Classes
   ================================ */

.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   Scrollbar Styling
   ================================ */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: var(--border-radius-full);
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}