/* =============================================
   PriPhoto（プリフォト）- Design System
   女性のためのプライベート写真買取サービス
   ============================================= */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
    /* Brand Colors */
    --color-primary: #D4508B;
    --color-primary-light: #F0A0C8;
    --color-primary-lighter: #FDE8F0;
    --color-primary-dark: #A83D6F;
    --color-primary-gradient: linear-gradient(135deg, #D4508B, #8B5CF6);
    
    /* Accent */
    --color-accent: #8B5CF6;
    --color-accent-light: #C4B5FD;
    --color-accent-dark: #6D28D9;
    
    /* Warm tones */
    --color-gold: #F59E0B;
    --color-gold-light: #FDE68A;
    --color-rose: #F43F5E;
    --color-peach: #FBBF77;
    
    /* Status */
    --color-success: #10B981;
    --color-success-light: #D1FAE5;
    --color-warning: #F59E0B;
    --color-warning-light: #FEF3C7;
    --color-error: #EF4444;
    --color-error-light: #FEE2E2;
    
    /* Backgrounds */
    --color-bg: #FFFBF7;
    --color-bg-alt: #FFF0F5;
    --color-bg-card: #FFFFFF;
    --color-bg-glass: rgba(255, 255, 255, 0.75);
    --color-bg-overlay: rgba(31, 21, 53, 0.5);
    --color-bg-dark: #1F1535;
    --color-bg-dark-alt: #2D2250;
    
    /* Text */
    --color-text: #1F1535;
    --color-text-secondary: #6B5B7B;
    --color-text-tertiary: #9B8DAB;
    --color-text-inverse: #FFFFFF;
    --color-text-link: #D4508B;
    
    /* Borders */
    --color-border: #F0E0EE;
    --color-border-light: #F8F0F6;
    --color-border-focus: #D4508B;
    
    /* Typography */
    --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-number: 'DM Sans', 'Outfit', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(212, 80, 139, 0.08);
    --shadow-md: 0 4px 12px rgba(212, 80, 139, 0.1);
    --shadow-lg: 0 8px 30px rgba(212, 80, 139, 0.12);
    --shadow-xl: 0 20px 60px rgba(212, 80, 139, 0.15);
    --shadow-glow: 0 0 40px rgba(212, 80, 139, 0.2);
    --shadow-card: 0 2px 20px rgba(31, 21, 53, 0.06);
    --shadow-card-hover: 0 8px 40px rgba(212, 80, 139, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-bg: 400;
    --z-modal: 500;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

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

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

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-24) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-3);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-8);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.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 0.5s;
}

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

.btn-primary {
    background: var(--color-primary-gradient);
    color: var(--color-text-inverse);
    box-shadow: 0 4px 20px rgba(212, 80, 139, 0.3);
}

.btn-primary:hover {
    color: var(--color-text-inverse);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 80, 139, 0.4);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-primary);
    border: 2px solid var(--color-primary-light);
}

.btn-secondary:hover {
    background: var(--color-primary-lighter);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
}

.btn-icon {
    font-size: 1.2em;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-3) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar-logo {
    width: 36px;
    height: 36px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.navbar-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
}

.navbar-name span {
    color: var(--color-primary);
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.navbar-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-gradient);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.navbar-links a:hover {
    color: var(--color-primary);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 80, 139, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-primary-lighter);
    border: 1px solid var(--color-primary-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 540px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-number);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* ===== Hero Photo Gallery ===== */
.hero-gallery {
    position: absolute;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 520px;
    pointer-events: none;
}

.hero-gallery-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-photo {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    pointer-events: auto;
}

.gallery-photo:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(212, 80, 139, 0.35);
    z-index: 10;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Photo positions - masonry style */
.g-photo-1 {
    width: 200px;
    height: 260px;
    top: 0;
    left: 20px;
    animation: galleryFloat1 8s ease-in-out infinite;
    z-index: 2;
}

.g-photo-2 {
    width: 140px;
    height: 180px;
    top: 20px;
    right: 40px;
    animation: galleryFloat2 7s ease-in-out infinite;
    z-index: 3;
}

.g-photo-3 {
    width: 160px;
    height: 220px;
    bottom: 30px;
    left: 0;
    animation: galleryFloat3 9s ease-in-out infinite;
    z-index: 1;
}

.g-photo-4 {
    width: 220px;
    height: 170px;
    bottom: 50px;
    right: 20px;
    animation: galleryFloat4 8.5s ease-in-out infinite;
    z-index: 4;
}

/* Price badges */
.gallery-photo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(212, 80, 139, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    font-family: var(--font-number);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Glow effect */
.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 80, 139, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Gallery animations */
@keyframes galleryFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(-2deg); }
    33% { transform: translate(8px, -12px) rotate(0deg); }
    66% { transform: translate(-5px, 8px) rotate(-1deg); }
}

@keyframes galleryFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(3deg); }
    25% { transform: translate(-10px, 8px) rotate(1deg); }
    75% { transform: translate(6px, -10px) rotate(2deg); }
}

@keyframes galleryFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(1deg); }
    40% { transform: translate(10px, -8px) rotate(-1deg); }
    70% { transform: translate(-8px, 6px) rotate(2deg); }
}

@keyframes galleryFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(-1deg); }
    30% { transform: translate(-6px, -10px) rotate(1deg); }
    60% { transform: translate(8px, 5px) rotate(-2deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Footer credit banner */
.footer-credit {
    text-align: center;
    padding-top: var(--space-5);
    margin-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--space-10) 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-item {
    text-align: center;
    padding: var(--space-5);
}

.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: var(--color-primary-lighter);
}

.trust-item:nth-child(2) .trust-icon { background: rgba(139, 92, 246, 0.1); }
.trust-item:nth-child(3) .trust-icon { background: var(--color-success-light); }
.trust-item:nth-child(4) .trust-icon { background: var(--color-warning-light); }

.trust-title {
    font-weight: 600;
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.trust-text {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--color-bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
}

.step-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all var(--transition-slow);
    border: 1px solid var(--color-border-light);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-5);
    border-radius: 50%;
    background: var(--color-primary-gradient);
    color: white;
    font-family: var(--font-number);
    font-size: var(--text-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: var(--text-sm);
}

.step-icon {
    font-size: 40px;
    margin-bottom: var(--space-4);
    display: block;
}

/* ===== Pricing ===== */
.pricing {
    background: var(--color-bg-alt);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-alt));
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary-gradient);
}

.pricing-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-primary-gradient);
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.pricing-icon {
    font-size: 40px;
    margin-bottom: var(--space-4);
}

.pricing-card h3 {
    margin-bottom: var(--space-2);
}

.pricing-card .price-range {
    font-family: var(--font-number);
    margin-bottom: var(--space-5);
}

.price-amount {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-primary);
}

.price-unit {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

.pricing-features {
    margin-bottom: var(--space-6);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-8);
    position: relative;
    z-index: 1;
}

.pricing-note p {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* ===== Privacy Section ===== */
.privacy-section {
    background: var(--color-bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 80, 139, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.privacy-section .section-header h2,
.privacy-section .section-header p {
    color: white;
}

.privacy-section .section-header p {
    opacity: 0.8;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-slow);
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.privacy-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(212, 80, 139, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: var(--space-5);
}

.privacy-card h3 {
    color: white;
    margin-bottom: var(--space-3);
    font-size: var(--text-lg);
}

.privacy-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

/* ===== Testimonials ===== */
.testimonials {
    background: var(--color-bg);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-slow);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 72px;
    font-family: Georgia, serif;
    color: var(--color-primary-lighter);
    line-height: 1;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-5);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: var(--text-sm);
}

.testimonial-name {
    font-weight: 600;
    font-size: var(--text-sm);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary-light);
}

.faq-question {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-text);
    cursor: pointer;
    transition: color var(--transition-fast);
    text-align: left;
    background: transparent;
}

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

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    color: var(--color-primary);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--color-primary);
    color: white;
    transform: rotate(45deg);
}

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

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

.faq-answer-inner {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--color-primary-gradient);
    padding: var(--space-20) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    background: var(--color-bg-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.footer h4 {
    color: white;
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.4);
}

.footer-legal a:hover {
    color: var(--color-primary-light);
}

/* ===== Login Page ===== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 80, 139, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.login-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.login-card {
    width: 100%;
    max-width: 440px;
    background: var(--color-bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.5s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.login-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.login-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
}

.login-logo-text span {
    color: var(--color-primary);
}

.login-header h2 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.login-header p {
    font-size: var(--text-sm);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 80, 139, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-tertiary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.form-forgot {
    color: var(--color-primary);
    font-weight: 500;
}

.form-forgot:hover {
    text-decoration: underline;
}

.login-submit {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    margin-bottom: var(--space-5);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.login-register {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.login-register a {
    color: var(--color-primary);
    font-weight: 600;
}

.login-error {
    background: var(--color-error-light);
    color: var(--color-error);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
    display: none;
    animation: shake 0.4s ease;
}

.login-error.show {
    display: block;
}

.login-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* ===== Dashboard ===== */
.dashboard {
    display: flex;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 260px;
    background: var(--color-bg-dark);
    color: white;
    padding: var(--space-6);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-5);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.sidebar-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-lg);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
    margin-bottom: var(--space-1);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.sidebar-nav a .nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sidebar-user {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    right: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-user-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-user-name {
    font-size: var(--text-sm);
    font-weight: 600;
}

.sidebar-user-email {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.4);
}

.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: var(--space-8);
    background: var(--color-bg);
}

.dashboard-header {
    margin-bottom: var(--space-8);
}

.dashboard-header h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.dashboard-header p {
    font-size: var(--text-base);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.dash-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.dash-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.dash-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dash-card-icon.pink { background: var(--color-primary-lighter); }
.dash-card-icon.green { background: var(--color-success-light); }
.dash-card-icon.purple { background: rgba(139, 92, 246, 0.1); }

.dash-card-change {
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.dash-card-change.up {
    background: var(--color-success-light);
    color: var(--color-success);
}

.dash-card-value {
    font-family: var(--font-number);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.dash-card-label {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* Dashboard tables */
.dash-table-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    margin-bottom: var(--space-6);
}

.dash-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
}

.dash-table-header h3 {
    font-size: var(--text-lg);
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-tertiary);
    border-bottom: 2px solid var(--color-border-light);
}

.dash-table td {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-border-light);
}

.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.status-badge.completed {
    background: var(--color-success-light);
    color: var(--color-success);
}

.status-badge.pending {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

.status-badge.reviewing {
    background: rgba(139, 92, 246, 0.1);
    color: var(--color-accent);
}

/* ===== Upload Page ===== */
.upload-zone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-16);
    text-align: center;
    transition: all var(--transition-base);
    cursor: pointer;
    background: var(--color-bg);
}

.upload-zone:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-lighter);
}

.upload-zone.drag-over {
    border-color: var(--color-primary);
    background: var(--color-primary-lighter);
    transform: scale(1.01);
}

.upload-icon {
    font-size: 56px;
    margin-bottom: var(--space-4);
    color: var(--color-primary-light);
}

.upload-zone h3 {
    margin-bottom: var(--space-2);
}

.upload-zone p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.upload-formats {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    50% { transform: translateX(8px); }
    75% { transform: translateX(-4px); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animation utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Wave Divider ===== */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    position: relative;
    z-index: 1;
    margin-top: -1px;
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-float {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps::before {
        display: none;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards .pricing-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .navbar-links {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
        flex-direction: column-reverse;
    }
    
    .hero-gallery {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 0;
        margin-bottom: var(--space-6);
        pointer-events: auto;
    }
    
    .hero-gallery-inner {
        display: flex;
        gap: var(--space-4);
        align-items: center;
        overflow-x: auto;
        padding: var(--space-6) var(--space-4);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-gallery-inner::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-photo {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
    
    .g-photo-1 { width: 150px; height: 200px; }
    .g-photo-2 { width: 120px; height: 150px; }
    .g-photo-3 { width: 130px; height: 180px; }
    .g-photo-4 { width: 170px; height: 130px; }
    
    .gallery-glow { display: none; }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards .pricing-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .login-card {
        padding: var(--space-6);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   LOGIN PAGE
   ============================================= */

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    padding: var(--space-6);
}

.login-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--color-border-light);
}

.login-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.login-header h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.login-header p {
    font-size: var(--text-sm);
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.login-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.login-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
}

.login-logo-text span {
    color: var(--color-primary);
}

.login-error {
    display: none;
    padding: var(--space-3) var(--space-4);
    background: var(--color-error-light);
    color: var(--color-error);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    margin-bottom: var(--space-5);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.login-error.show {
    display: block;
}

.login-submit {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    margin-top: var(--space-2);
}

.login-divider {
    text-align: center;
    margin: var(--space-6) 0;
    position: relative;
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: var(--color-border);
}

.login-divider::before { left: 0; }
.login-divider::after { right: 0; }

.login-register {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.login-register a {
    color: var(--color-primary);
    font-weight: 600;
}

.login-register a:hover {
    text-decoration: underline;
}

.login-security {
    text-align: center;
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--color-border-light);
}

/* =============================================
   FORM COMPONENTS
   ============================================= */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 80, 139, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-tertiary);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    font-size: var(--text-sm);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
    color: var(--color-text-secondary);
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.form-forgot {
    color: var(--color-primary);
    font-weight: 500;
}

.form-forgot:hover {
    text-decoration: underline;
}

/* =============================================
   DASHBOARD LAYOUT
   ============================================= */

.dashboard {
    display: flex;
    min-height: 100vh;
    background: var(--color-bg);
}

/* Sidebar */
.dashboard-sidebar {
    width: 260px;
    background: var(--color-bg-card);
    border-right: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: var(--z-sticky);
    overflow-y: auto;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border-light);
}

.sidebar-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--color-primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.sidebar-brand-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
}

.sidebar-nav {
    flex: 1;
    padding: var(--space-4) 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
    color: var(--color-primary);
    background: var(--color-primary-lighter);
}

.sidebar-nav a.active {
    color: var(--color-primary);
    background: var(--color-primary-lighter);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

.nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.sidebar-user {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--color-border-light);
}

.sidebar-user-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.sidebar-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    flex-shrink: 0;
}

.sidebar-user-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
}

.sidebar-user-email {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* Main Content */
.dashboard-main {
    flex: 1;
    margin-left: 260px;
    padding: var(--space-8);
}

.dashboard-header {
    margin-bottom: var(--space-8);
}

.dashboard-header h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-2);
}

.dashboard-header p {
    font-size: var(--text-base);
}

/* Stats Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.dash-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-slow);
}

.dash-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.dash-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.dash-card-icon.pink { background: var(--color-primary-lighter); }
.dash-card-icon.green { background: var(--color-success-light); }
.dash-card-icon.purple { background: rgba(139, 92, 246, 0.1); }

.dash-card-change {
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.dash-card-change.up {
    color: var(--color-success);
    background: var(--color-success-light);
}

.dash-card-value {
    font-family: var(--font-number);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: var(--space-1);
}

.dash-card-label {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* Table Card */
.dash-table-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    margin-bottom: var(--space-6);
}

.dash-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
}

.dash-table-header h3 {
    font-size: var(--text-lg);
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
}

.dash-table th {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--color-border-light);
}

.dash-table td {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.dash-table tr:hover {
    background: var(--color-bg-alt);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.status-badge.completed {
    color: var(--color-success);
    background: var(--color-success-light);
}

.status-badge.reviewing {
    color: var(--color-warning);
    background: var(--color-warning-light);
}

.status-badge.pending {
    color: var(--color-text-tertiary);
    background: var(--color-bg-alt);
}

/* =============================================
   UPLOAD ZONE
   ============================================= */

.upload-zone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-16) var(--space-8);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    background: var(--color-bg);
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--color-primary);
    background: var(--color-primary-lighter);
}

.upload-icon {
    font-size: 48px;
    margin-bottom: var(--space-4);
}

.upload-zone h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.upload-zone p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.upload-formats {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}
