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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #06d6a0;
    --dark: #0f0f23;
    --dark-light: #1a1a2e;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

.cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(45deg, #0f0f23, #1a1a2e, #16213e);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

.twinkling {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 50px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 100px 100px, rgba(255,255,255,0.6), transparent);
    background-size: 300px 300px;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes sparkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

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

.view-toggle {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.logo-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: -5px;
    letter-spacing: 3px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite alternate;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    animation: glow 3s ease-in-out infinite alternate;
}

.neon-text {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    animation: flicker 1.5s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn.primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
}

.btn.secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(20px);
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.services-grid {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 2rem;
    color: var(--accent);
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    gap: 1rem;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.service-item h3 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
    line-height: 1.4;
}

.item-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.schedule-tag {
    background: linear-gradient(45deg, var(--accent), #20b2aa);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-schedule 2s ease-in-out infinite alternate;
}

.service-tag {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse-schedule {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(6, 214, 160, 0.3); }
    100% { transform: scale(1.05); box-shadow: 0 0 20px rgba(6, 214, 160, 0.5); }
}

.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-text {
    color: var(--text-muted);
    margin-top: 1rem;
}

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

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

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

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

@keyframes glow {
    0% { -webkit-text-stroke-color: var(--accent); }
    100% { -webkit-text-stroke-color: var(--secondary); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.dashboard-view {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.dashboard-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fbbf24, var(--accent), var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.summary-card.total-income::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.summary-card.total-expenses::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.summary-card.balance::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.total-income .summary-icon {
    background: linear-gradient(45deg, #10b981, #059669);
}

.total-expenses .summary-icon {
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.balance .summary-icon {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
}

.summary-content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

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

.financial-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.financial-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--glass-border);
}

.section-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.section-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
}

.section-total {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.financial-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.financial-item {
    display: grid;
    grid-template-columns: 1fr 150px auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.financial-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.item-name {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.item-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s ease-out;
    position: relative;
}

.income-bar .bar-fill {
    background: linear-gradient(90deg, #10b981, #059669);
}

.future-bar .bar-fill {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.expense-bar .bar-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.probability-bar .bar-fill {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.item-amount {
    font-weight: 700;
    color: var(--text);
    font-size: 1rem;
    text-align: right;
    min-width: 60px;
}

.financial-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.insight-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.insight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.insight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.timeline-view {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-section {
    margin-bottom: 4rem;
}

.timeline-period {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.timeline-day, .timeline-week {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.timeline-day:hover, .timeline-week:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.day-header, .week-header {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-header h4, .week-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.day-count, .week-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.day-items, .week-items {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    gap: 1rem;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.timeline-item[data-category="medios"] {
    border-left-color: #f59e0b;
}

.timeline-item[data-category="producciones"] {
    border-left-color: #ef4444;
}

.timeline-item[data-category="diseno"] {
    border-left-color: #8b5cf6;
}

.timeline-item[data-category="sociales"] {
    border-left-color: #06d6a0;
}

.timeline-item[data-category="editorial"] {
    border-left-color: #3b82f6;
}

.timeline-item[data-category="otros"] {
    border-left-color: #ec4899;
}

.timeline-item[data-category="videos"] {
    border-left-color: #10b981;
}

.timeline-item[data-category="grupos"] {
    border-left-color: #f97316;
}

.timeline-item[data-category="batalla"] {
    border-left-color: #dc2626;
}

.timeline-item[data-category="acciones"] {
    border-left-color: #6366f1;
}

.timeline-item[data-category="inversiones"] {
    border-left-color: #fbbf24;
}

.item-category {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text);
    margin-left: 1rem;
    line-height: 1.4;
}

.automation-view {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.automation-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.automation-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.automation-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

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

.automation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

.automation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
}

.automation-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.automation-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.automation-examples {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.automation-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

.automation-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

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

.automation-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.flow-step {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.automation-flow i {
    color: var(--accent);
    font-size: 0.8rem;
}

.automation-tools {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tool-tag {
    background: var(--dark-light);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-2px);
}

.automation-summary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.automation-summary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-tags {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .nav-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .view-toggle {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .timeline-container {
        padding: 2rem 1rem;
    }
    
    .timeline-title {
        font-size: 1.8rem;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-name {
        margin-left: 0;
    }
    
    .day-header, .week-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .automation-grid {
        grid-template-columns: 1fr;
    }
    
    .automation-container {
        padding: 2rem 1rem;
    }
    
    .automation-title {
        font-size: 1.8rem;
    }
    
    .automation-flow {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .automation-flow i {
        transform: rotate(90deg);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-controls {
        flex-wrap: wrap;
    }
    
    .dashboard-container {
        padding: 2rem 1rem;
    }
    
    .dashboard-title {
        font-size: 1.8rem;
    }
    
    .financial-summary {
        grid-template-columns: 1fr;
    }
    
    .financial-sections {
        grid-template-columns: 1fr;
    }
    
    .financial-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .item-bar {
        order: 3;
    }
    
    .item-amount {
        text-align: center;
        font-size: 1.2rem;
        color: var(--accent);
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-controls {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .view-toggle {
        width: 100%;
        justify-content: center;
    }
}