/* ========================================
   TASKLY BY DREAMYHOOK - PROFESSIONAL STYLESHEET
   Strictly following reference designs
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Exact from reference */
    --primary-blue: #2563eb;
    --primary-blue-hover: #1d4ed8;
    --secondary-cyan: #06b6d4;
    --accent-yellow: #fbbf24;
    --accent-orange: #f97316;
    --accent-green: #10b981;
    
    /* Light Theme - Professional palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Shadows - Professional depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-card: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #334155;
    --border-light: #475569;
    --gradient-bg: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-feature-settings: 'cv11', 'ss01';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HEADER & NAVIGATION - EXACT REFERENCE
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.2s ease;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: var(--bg-secondary);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 3px;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 1px;
}

/* Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* ========================================
   HERO SECTION - EXACT REFERENCE MATCH
   ======================================== */

.hero {
    padding: 120px 2rem 80px;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Hero Visual Layout - Exact positioning like reference */
.hero-visual {
    position: relative;
    height: 500px;
    margin: 0 auto;
    max-width: 1000px;
}

/* Sticky Note - Top Left */
.sticky-note {
    position: absolute;
    top: 0;
    left: 50px;
    background: #fef08a;
    width: 240px;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    z-index: 4;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #374151;
    font-weight: 500;
    font-style: italic;
}

.sticky-note .pin {
    position: absolute;
    top: -6px;
    right: 25px;
    width: 12px;
    height: 12px;
    background: #dc2626;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

/* Task Checkmark - Bottom Left */
.task-checkmark {
    position: absolute;
    bottom: 80px;
    left: 20px;
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: bounce 3s infinite;
    z-index: 3;
}

/* App Icon - Center */
.app-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    z-index: 2;
    border: 1px solid var(--border-color);
}

.icon-dot {
    width: 24px;
    height: 24px;
    background: var(--text-muted);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.icon-dot.active {
    background: var(--secondary-cyan);
    transform: scale(1.1);
}

/* Reminders Card - Top Right */
.reminders-card {
    position: absolute;
    top: 20px;
    right: 40px;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 280px;
    border: 1px solid var(--border-color);
    z-index: 4;
}

.reminders-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.reminder-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reminder-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.reminder-content p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.reminder-content span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.reminder-time {
    background: var(--secondary-cyan);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Today's Tasks - Bottom Center */
.todays-tasks {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 340px;
    border: 1px solid var(--border-color);
    z-index: 3;
}

.todays-tasks h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.task-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.task-item:hover {
    background: var(--bg-secondary);
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-avatar {
    flex-shrink: 0;
}

.task-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.task-content {
    flex: 1;
}

.task-content p {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.task-content span {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.progress-bar {
    width: 120px;
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-cyan), var(--primary-blue));
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Integrations Badge - Bottom Right */
.integrations-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    z-index: 3;
}

.integrations-badge h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.integration-icons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.integration-icons img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   SECTION STYLES - PROFESSIONAL
   ======================================== */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    letter-spacing: 0.02em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   SOLUTIONS SECTION - EXACT MATCH
   ======================================== */

.solutions {
    padding: 8rem 2rem;
    background: var(--bg-primary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.solutions-points {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.solution-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    color: white;
}

.solution-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Dashboard Mockup - Exact Reference Match */
.dashboard-mockup {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 0;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    max-width: 650px;
    margin-left: auto;
}

.dashboard-header {
    background: var(--bg-secondary);
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    font-size: 0.9rem;
    width: 200px;
    float: left;
    background: var(--bg-tertiary);
    height: 500px;
}

.nav-item {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    cursor: pointer;
}

.nav-item:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.nav-item.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow);
}

.badge {
    background: var(--text-muted);
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.nav-item.active .badge {
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-main {
    margin-left: 200px;
    padding: 1.5rem;
    min-height: 500px;
}

.dashboard-greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.dashboard-greeting h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.user-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.dashboard-content {
    display: grid;
    gap: 2rem;
}

.todo-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.todo-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.todo-item:hover {
    background: var(--bg-secondary);
}

.todo-item input[type="checkbox"] {
    margin-top: 0.125rem;
    accent-color: var(--primary-blue);
    width: 16px;
    height: 16px;
}

.todo-item span {
    color: var(--text-secondary);
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

.time-tracker,
.activity-widget {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.time-tracker h4,
.activity-widget h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timer-display {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-variant-numeric: tabular-nums;
}

.timer-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.timer-controls button {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-controls button:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-blue);
}

.activity-chart {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.chart-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-blue) 0deg 260deg, var(--bg-secondary) 260deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-ring::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 50%;
}

.chart-value {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    z-index: 1;
}

.activity-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.9rem;
}

.stat {
    color: var(--text-secondary);
    font-weight: 500;
}

.tasks-assigned {
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.tasks-assigned h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.task-status-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.tab {
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
    position: relative;
}

.tab:hover {
    color: var(--text-primary);
}

.tab.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

.assigned-task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.assigned-task:hover {
    border-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.task-info {
    flex: 1;
}

.task-title {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.task-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.progress-bar-small {
    width: 80px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-small {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-cyan), var(--primary-blue));
    border-radius: 2px;
    transition: width 1s ease-out;
}

.task-progress span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 30px;
}

.assignee-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 1rem;
    box-shadow: var(--shadow-sm);
}

/* ========================================
   FEATURES SECTION - PROFESSIONAL
   ======================================== */

.features {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.feature-section {
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.feature-mockup {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    margin-top: auto;
    min-height: 300px;
}

.workspace-view h4,
.schedule-view h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.workspace-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.workspace-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.workspace-item:hover {
    background: var(--bg-secondary);
}

.workspace-item.active {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow);
}

.workspace-item .item-icon {
    font-size: 1.3rem;
}

.members-preview {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.members-preview img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.25rem;
    box-shadow: var(--shadow-sm);
}

.member-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.invite-section {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.invite-section p:first-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-avatars {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.member-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.invite-section p:last-child {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 500;
}

.additional-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.feature-preview {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 1.05rem;
}

/* ========================================
   INTEGRATIONS SECTION - CLEAN GRID
   ======================================== */

.integrations {
    padding: 8rem 2rem;
    background: var(--bg-primary);
    text-align: center;
}

.app-icon-center {
    margin: 4rem auto;
    display: flex;
    justify-content: center;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto;
}

.integration-item {
    background: var(--bg-card);
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.integration-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.integration-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
}

/* ========================================
   TESTIMONIALS SECTION - PROFESSIONAL
   ======================================== */

.testimonials {
    padding: 8rem 2rem;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-style: normal;
}

.featured-testimonial {
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.play-button {
    background: #ff0000;
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   PRICING SECTION - EXACT REFERENCE
   ======================================== */

.pricing {
    padding: 8rem 2rem;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
    border: none;
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured * {
    color: white !important;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-yellow);
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.best-choice {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: inline-block;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 2rem 0;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.price-period {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-btn {
    width: 100%;
    margin: 2rem 0;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.pricing-card.featured .pricing-btn {
    background: white;
    color: var(--primary-blue);
}

.pricing-card.featured .pricing-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

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

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.learn-more:hover {
    opacity: 0.8;
}

.pricing-card.featured .learn-more {
    color: white;
}

/* ========================================
   FOOTER CTA - PROFESSIONAL
   ======================================== */

.footer-cta {
    padding: 8rem 2rem 4rem;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content .logo {
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

/* ========================================
   FOOTER - MINIMAL
   ======================================== */

.footer {
    background: var(--bg-primary);
    padding: 3rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

/* ========================================
   ANIMATIONS - SMOOTH & PROFESSIONAL
   ======================================== */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger delays for group animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 1024px) {
    .hero-container {
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .dashboard-nav {
        width: 160px;
    }
    
    .dashboard-main {
        margin-left: 160px;
    }
    
    .features-grid,
    .additional-features {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 100px 1rem 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 2rem;
    }
    
    .sticky-note {
        width: 180px;
        padding: 1rem;
        font-size: 0.85rem;
        left: 20px;
    }
    
    .reminders-card,
    .todays-tasks {
        width: 250px;
        padding: 1rem;
    }
    
    .integrations-badge {
        right: 10px;
        bottom: 10px;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .dashboard-mockup {
        max-width: 100%;
    }
    
    .dashboard-nav {
        width: 100%;
        float: none;
        height: auto;
        padding: 1rem;
    }
    
    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .integration-item {
        width: 70px;
        height: 70px;
    }
    
    .integration-item img {
        width: 36px;
        height: 36px;
    }
    
    .floating-icons {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .sticky-note {
        width: 150px;
        left: 10px;
        top: 10px;
    }
    
    .reminders-card {
        width: 200px;
        right: 10px;
        top: 10px;
    }
    
    .todays-tasks {
        width: 280px;
        bottom: 10px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */

.btn:focus,
.theme-toggle:focus,
.nav-links a:focus,
.mobile-menu-btn:focus,
.integration-item:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-icon,
    .task-checkmark {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --border-color: #000000;
        --shadow: 0 0 0 1px #000000;
    }
    
    [data-theme="dark"] {
        --border-color: #ffffff;
        --shadow: 0 0 0 1px #ffffff;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .floating-icons,
    .theme-toggle {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}